mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vc1, mss2: Check for any negative return value from ff_vc1_parse_frame_header
This is required if we return other error codes than explicitly -1, which so far has been the only other possible return value besides 0. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
ccb148e478
commit
ec7d002e55
@ -388,7 +388,7 @@ static int decode_wmv9(AVCodecContext *avctx, const uint8_t *buf, int buf_size,
|
||||
|
||||
s->loop_filter = avctx->skip_loop_filter < AVDISCARD_ALL;
|
||||
|
||||
if (ff_vc1_parse_frame_header(v, &s->gb) == -1) {
|
||||
if (ff_vc1_parse_frame_header(v, &s->gb) < 0) {
|
||||
av_log(v->s.avctx, AV_LOG_ERROR, "header error\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
@ -5464,11 +5464,11 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
|
||||
// do parse frame header
|
||||
v->pic_header_flag = 0;
|
||||
if (v->profile < PROFILE_ADVANCED) {
|
||||
if (ff_vc1_parse_frame_header(v, &s->gb) == -1) {
|
||||
if (ff_vc1_parse_frame_header(v, &s->gb) < 0) {
|
||||
goto err;
|
||||
}
|
||||
} else {
|
||||
if (ff_vc1_parse_frame_header_adv(v, &s->gb) == -1) {
|
||||
if (ff_vc1_parse_frame_header_adv(v, &s->gb) < 0) {
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user