aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/video_enc_params.h
Commit message (Collapse)AuthorAgeFilesLines
* mpegvideo: use the AVVideoEncParams API for exporting QP tablesAnton Khirnov2021-01-011-0/+8
| | | | | | | | | | Do it only when requested with the AV_CODEC_EXPORT_DATA_VIDEO_ENC_PARAMS flag. Drop previous code using the long-deprecated AV_FRAME_DATA_QP_TABLE* API. Temporarily disable fate-filter-pp, fate-filter-pp7, fate-filter-spp. They will be reenabled once these filters are converted in following commits.
* avutil/video_enc_params: fix code commentleozhang2020-08-201-1/+1
| | | | | Reviewed-by: Zhao Zhili <zhilizhao@tencent.com> Signed-off-by: leozhang <leozhang@qiyi.com>
* h264dec: support exporting QP tables through the AVVideoEncParams APIAnton Khirnov2020-05-251-0/+13
|
* vp9dec: support exporting QP tables through the AVVideoEncParams APIAnton Khirnov2020-05-121-0/+15
|
* libavutil: add API for exporting video frame quantizersJuan De León2020-05-121-0/+135
This is intended to replace the deprecated the AV_FRAME_DATA_QP_TABLE* API and extend it to a wider range of codecs. In the future, it may also be extended to support other encoding parameters such as motion vectors. Additional changes by Anton Khirnov <anton@khirnov.net> with suggestions by Lynne <dev@lynne.ee>. Signed-off-by: Juan De León <juandl@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Anton Khirnov <anton@khirnov.net>