diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-12-05 06:34:02 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-07 16:35:06 +0100 |
commit | 380232fac3a6ca6f661f3d14e31308d3059c5c72 (patch) | |
tree | 33b287c53299d321b4282ae2c1bd1cbda06a2f19 /libavcodec/snowenc.c | |
parent | 92dad6687f59a6e599834218626e524eb8a5bdae (diff) | |
download | ffmpeg-380232fac3a6ca6f661f3d14e31308d3059c5c72.tar.gz |
snow: fix build after 594d4d5df3c70404168701dd5c90b7e6e5587793
Diffstat (limited to 'libavcodec/snowenc.c')
-rw-r--r-- | libavcodec/snowenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c index e60cb65297..f93c53f145 100644 --- a/libavcodec/snowenc.c +++ b/libavcodec/snowenc.c @@ -23,6 +23,7 @@ #include "libavutil/opt.h" #include "avcodec.h" #include "dsputil.h" +#include "internal.h" #include "dwt.h" #include "snow.h" @@ -239,7 +240,7 @@ static av_cold int encode_init(AVCodecContext *avctx) ff_set_cmp(&s->dsp, s->dsp.me_cmp, s->avctx->me_cmp); ff_set_cmp(&s->dsp, s->dsp.me_sub_cmp, s->avctx->me_sub_cmp); - s->ff_get_buffer(s->avctx, &s->input_picture); + ff_get_buffer(s->avctx, &s->input_picture); if(s->avctx->me_method == ME_ITER){ int i; |