mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-18 05:11:09 +00:00
sgidec: simplify return path
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
e8023dbaf0
commit
5efa5103b0
@ -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…
Reference in New Issue
Block a user