Browse Source

sgidec: simplify return path

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol 12 years ago
parent
commit
5efa5103b0
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      libavcodec/sgidec.c

+ 4
- 6
libavcodec/sgidec.c View File

@@ -223,13 +223,11 @@ static int decode_frame(AVCodecContext *avctx,
} else {
ret = read_uncompressed_sgi(out_buf, s);
}

if (ret == 0) {
*got_frame = 1;
return avpkt->size;
} else {
if (ret)
return ret;
}

*got_frame = 1;
return avpkt->size;
}

AVCodec ff_sgi_decoder = {


Loading…
Cancel
Save