From: Ondrej Holy Date: Wed, 22 Aug 2018 11:11:28 +0000 (+0200) Subject: channels/rdpgfx: Format code by astyle X-Git-Tag: 2.0.0-rc4~110^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36a68b4eaeb4eca667edeeca89be0b0eca7200cb;p=platform%2Fupstream%2Ffreerdp.git channels/rdpgfx: Format code by astyle Run ./scripts/format_code.sh before the following changes. --- diff --git a/channels/rdpgfx/client/rdpgfx_codec.c b/channels/rdpgfx/client/rdpgfx_codec.c index a88c7d0..5d667a7 100644 --- a/channels/rdpgfx/client/rdpgfx_codec.c +++ b/channels/rdpgfx/client/rdpgfx_codec.c @@ -139,8 +139,8 @@ static UINT rdpgfx_decode_AVC420(RDPGFX_PLUGIN* gfx, RDPGFX_SURFACE_COMMAND* cmd wStream* s; RDPGFX_AVC420_BITMAP_STREAM h264; RdpgfxClientContext* context = (RdpgfxClientContext*) gfx->iface.pInterface; - s = Stream_New(cmd->data, cmd->length); + if (!s) { WLog_ERR(TAG, "Stream_New failed!"); @@ -184,8 +184,8 @@ static UINT rdpgfx_decode_AVC444(RDPGFX_PLUGIN* gfx, RDPGFX_SURFACE_COMMAND* cmd wStream* s; RDPGFX_AVC444_BITMAP_STREAM h264 = { 0 }; RdpgfxClientContext* context = (RdpgfxClientContext*) gfx->iface.pInterface; - s = Stream_New(cmd->data, cmd->length); + if (!s) { WLog_ERR(TAG, "Stream_New failed!"); @@ -197,6 +197,7 @@ static UINT rdpgfx_decode_AVC444(RDPGFX_PLUGIN* gfx, RDPGFX_SURFACE_COMMAND* cmd error = ERROR_INVALID_DATA; goto fail; } + Stream_Read_UINT32(s, tmp); h264.cbAvc420EncodedBitstream1 = tmp & 0x3FFFFFFFUL; h264.LC = (tmp >> 30UL) & 0x03UL;