diff options
author | Juan De León <juandl-at-google.com@ffmpeg.org> | 2020-02-29 13:21:56 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-05-12 09:37:47 +0200 |
commit | 991d41769290bcb01894fe35677d43ee06f1d00b (patch) | |
tree | 3ee4fc6c4e487ad994d05336e277d70b7950f5df /libavutil/Makefile | |
parent | d8de9d46f290c6626e1246ba8e7b4a1219894d07 (diff) | |
download | ffmpeg-991d41769290bcb01894fe35677d43ee06f1d00b.tar.gz |
libavutil: add API for exporting video frame quantizers
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>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 966eec41aa..9b08372eb2 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -80,6 +80,7 @@ HEADERS = adler32.h \ tree.h \ twofish.h \ version.h \ + video_enc_params.h \ xtea.h \ tea.h \ tx.h \ @@ -167,7 +168,9 @@ OBJS = adler32.o \ tx.o \ tx_float.o \ tx_double.o \ - tx_int32.o + tx_int32.o \ + video_enc_params.o \ + OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o OBJS-$(CONFIG_D3D11VA) += hwcontext_d3d11va.o |