diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-05 16:57:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-05 20:48:06 +0200 |
commit | 4dee4a4470cd28132cc9c96e00a6cc1080a4b27f (patch) | |
tree | fda056aa276be7189255e804a13db38db5c187d2 /libavcodec/mpegvideo.h | |
parent | 0b890425e3547cd1818cbe24cadfbcf1b6c93e9a (diff) | |
download | ffmpeg-4dee4a4470cd28132cc9c96e00a6cc1080a4b27f.tar.gz |
avcodec/mpegvideo: Factor ff_mpv_decode_init() out
Reviewed-by: Benoit Fouet <benoit.fouet@free.fr>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index fa20665f89..87fe87ff99 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -726,6 +726,7 @@ int ff_mpv_common_frame_size_change(MpegEncContext *s); void ff_mpv_common_end(MpegEncContext *s); void ff_mpv_decode_defaults(MpegEncContext *s); +void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx); void ff_mpv_decode_mb(MpegEncContext *s, int16_t block[12][64]); void ff_mpv_report_decode_progress(MpegEncContext *s); |