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 | 3b086317277e3f3b61c0343930d8e2570b278bd6 (patch) | |
tree | 764d206a94e5daad4c326b4abc78e109f98e2bd7 /libavcodec/h261dec.c | |
parent | 8255535c5f2da4e1363fae1f942b9ed28ce7552b (diff) | |
download | ffmpeg-3b086317277e3f3b61c0343930d8e2570b278bd6.tar.gz |
h26[13]dec: stop using deprecated avcodec_set_dimensions
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r-- | libavcodec/h261dec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 479da77958..4842fa0dd3 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -29,6 +29,7 @@ #include "mpegvideo.h" #include "h263.h" #include "h261.h" +#include "internal.h" #define H261_MBA_VLC_BITS 9 #define H261_MTYPE_VLC_BITS 6 @@ -607,7 +608,9 @@ retry: s->parse_context = pc; } if (!s->context_initialized) { - avcodec_set_dimensions(avctx, s->width, s->height); + ret = ff_set_dimensions(avctx, s->width, s->height); + if (ret < 0) + return ret; goto retry; } |