diff options
author | wm4 <nfxjfg@googlemail.com> | 2018-03-01 15:50:56 +0100 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2018-03-18 12:36:24 +0100 |
commit | 36855abc0eb96d5caa992304f3417a0f8a62960c (patch) | |
tree | cf8662ac6546176d37267ecc120c2e9812401f94 /libavutil/frame.h | |
parent | f19b0c6aeea212a3c2e05d4cebb856d1d774def7 (diff) | |
download | ffmpeg-36855abc0eb96d5caa992304f3417a0f8a62960c.tar.gz |
lavu/frame: fix inconsistent qp_table_buf deprecation
Everything related to the QP data is deprecated, with qp_table_buf being
an inconsistent exception. Some parts were under the deprecation guards,
some not. It probably didn't even compile.
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r-- | libavutil/frame.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index 59cee8ceab..ddbac3156d 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -529,6 +529,7 @@ typedef struct AVFrame { attribute_deprecated int qscale_type; + attribute_deprecated AVBufferRef *qp_table_buf; #endif /** |