diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-25 04:12:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-25 14:33:38 +0200 |
commit | 00f3bb2ef2bb25fc41b7a905376f00d104f70185 (patch) | |
tree | c8be6f271621dc155566c90d49a8d356580d1918 /libavcodec/mpegvideo.h | |
parent | cf401cd12b79a309eaf8d73c5a3ea72ae9836c26 (diff) | |
download | ffmpeg-00f3bb2ef2bb25fc41b7a905376f00d104f70185.tar.gz |
avcodec/mpegvideo: Factor ff_mpv_reallocate_putbitbuffer() out
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 9c366bb7e5..a042dc11c6 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -766,6 +766,7 @@ void ff_mpv_encode_init_x86(MpegEncContext *s); int ff_mpv_encode_end(AVCodecContext *avctx); int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet); +int ff_mpv_reallocate_putbitbuffer(MpegEncContext *s, size_t threshold, size_t size_increase); void ff_clean_intra_table_entries(MpegEncContext *s); void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h); |