diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-01-31 12:27:28 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-02-04 13:40:20 +0100 |
commit | bdc76f467f5caaa15b3bd11cbe6c52cc8f2f45b1 (patch) | |
tree | bd2d15177f5ffc9681d609be283826eaa721b041 /libavcodec/codec.h | |
parent | d02340b9e3e72f401cddbeb3bcc3cb584902b886 (diff) | |
download | ffmpeg-bdc76f467f5caaa15b3bd11cbe6c52cc8f2f45b1.tar.gz |
lavu/frame: deprecate reordered_opaque
It is only used in libavcodec, where it's been superseded by
AV_CODEC_CAP_COPY_OPAQUE.
Diffstat (limited to 'libavcodec/codec.h')
-rw-r--r-- | libavcodec/codec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/codec.h b/libavcodec/codec.h index 77a1a3f5a2..67f9120b44 100644 --- a/libavcodec/codec.h +++ b/libavcodec/codec.h @@ -169,9 +169,9 @@ #define AV_CODEC_CAP_HYBRID (1 << 19) /** - * This codec takes the reordered_opaque field from input AVFrames - * and returns it in the corresponding field in AVCodecContext after - * encoding. + * This encoder can reorder user opaque values from input AVFrames and return + * them with corresponding output packets. + * @see AV_CODEC_FLAG_COPY_OPAQUE */ #define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE (1 << 20) |