sgidec: simplify return path

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-07-26 21:09:06 +00:00
parent e8023dbaf0
commit 5efa5103b0
1 changed files with 4 additions and 6 deletions

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 = {