Commit fd0b8c6a authored by Paul B Mahol's avatar Paul B Mahol

sanm: silence warnings

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 9e63c30d
...@@ -996,16 +996,18 @@ static int decode_4(SANMVideoContext *ctx) ...@@ -996,16 +996,18 @@ static int decode_4(SANMVideoContext *ctx)
static int decode_5(SANMVideoContext *ctx) static int decode_5(SANMVideoContext *ctx)
{ {
#if HAVE_BIGENDIAN
uint16_t *frm; uint16_t *frm;
int npixels; int npixels;
#endif
uint8_t *dst = (uint8_t*)ctx->frm0; uint8_t *dst = (uint8_t*)ctx->frm0;
if (rle_decode(ctx, dst, ctx->buf_size)) if (rle_decode(ctx, dst, ctx->buf_size))
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
#if HAVE_BIGENDIAN
npixels = ctx->npixels; npixels = ctx->npixels;
frm = ctx->frm0; frm = ctx->frm0;
#if HAVE_BIGENDIAN
while (npixels--) while (npixels--)
*frm++ = av_bswap16(*frm); *frm++ = av_bswap16(*frm);
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment