You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/cfhd: Set dimensions unconditionally
Fixes Ticket5215 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -438,6 +438,11 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ret = ff_set_dimensions(avctx, s->coded_width, s->coded_height);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
frame.f->width =
|
||||||
|
frame.f->height = 0;
|
||||||
|
|
||||||
if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
|
if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user