diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 10:02:26 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-31 20:14:15 +0100 |
commit | 317d6a150392c96238d5e124524b12ba340f36e6 (patch) | |
tree | 3a7463d5079b3a55d23b8fd098257feaaddfe77d /libavcodec/indeo3.c | |
parent | 3b086317277e3f3b61c0343930d8e2570b278bd6 (diff) | |
download | ffmpeg-317d6a150392c96238d5e124524b12ba340f36e6.tar.gz |
indeo3: stop using deprecated avcodec_set_dimensions
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 7cc870d5a0..a9c02b2889 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -944,7 +944,7 @@ static int decode_frame_headers(Indeo3DecodeContext *ctx, AVCodecContext *avctx, free_frame_buffers(ctx); if ((res = allocate_frame_buffers(ctx, avctx)) < 0) return res; - avcodec_set_dimensions(avctx, width, height); + ff_set_dimensions(avctx, width, height); } y_offset = bytestream2_get_le32(&gb); |