Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/FreeRDP-old.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Moreau <marcandre.moreau@gmail.com>2011-06-22 08:26:31 +0400
committerMarc-André Moreau <marcandre.moreau@gmail.com>2011-06-22 08:26:31 +0400
commitffa3785b7a065cb36c3648c5c1f7a62864ba14a2 (patch)
tree98444fe3f2adfb3c5f8f3fbc0b6b93632ff220c4
parent605ec47335f1b3b2d61a2d1c253a1579dc852d05 (diff)
libfreerdp-rfx: fix rfx_decode_rgb after merge
-rw-r--r--libfreerdp-rfx/rfx_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libfreerdp-rfx/rfx_decode.c b/libfreerdp-rfx/rfx_decode.c
index 2e3180c..aff61ef 100644
--- a/libfreerdp-rfx/rfx_decode.c
+++ b/libfreerdp-rfx/rfx_decode.c
@@ -134,7 +134,6 @@ rfx_decode_rgb(RFX_CONTEXT * context,
{
PROFILER_ENTER(context->prof_rfx_decode_rgb);
- dst = rgb_buffer;
rfx_decode_component(context, y_quants, y_data, y_size, context->y_r_buffer); /* YData */
rfx_decode_component(context, cb_quants, cb_data, cb_size, context->cb_g_buffer); /* CbData */
rfx_decode_component(context, cr_quants, cr_data, cr_size, context->cr_b_buffer); /* CrData */
@@ -149,5 +148,6 @@ rfx_decode_rgb(RFX_CONTEXT * context,
PROFILER_EXIT(context->prof_rfx_decode_format_RGB);
PROFILER_EXIT(context->prof_rfx_decode_rgb);
+
return rgb_buffer;
}