diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 14:33:24 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 14:38:09 +0100 |
commit | 64308941d4043388a16c2d2fd51c792cfdcc2734 (patch) | |
tree | d487be33dd200306ec07e2927749c1a89d690afb /libavcodec/mpegvideo.h | |
parent | 70c0ae915d51b0f846f690e0895f18b95f038d9a (diff) | |
download | ffmpeg-streaming-64308941d4043388a16c2d2fd51c792cfdcc2734.zip ffmpeg-streaming-64308941d4043388a16c2d2fd51c792cfdcc2734.tar.gz |
mpegvideo: Fix exported qp table offest
Found-by: wm4
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 8cc5039..40fd295 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -813,6 +813,8 @@ void ff_print_debug_info2(AVCodecContext *avctx, Picture *p, AVFrame *pict, uint int *low_delay, int mb_width, int mb_height, int mb_stride, int quarter_sample); +int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type); + void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix); void ff_release_unused_pictures(MpegEncContext *s, int remove_current); int ff_find_unused_picture(MpegEncContext *s, int shared); |