diff options
author | James Almer <jamrial@gmail.com> | 2017-08-30 14:43:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-08-30 14:44:27 -0300 |
commit | 2b7da70a70fef364f9a42e69b6d34133b3d089f8 (patch) | |
tree | d3e01e09ad57ec22154848e50abb42e86c592a65 /libpostproc/postprocess_internal.h | |
parent | f7d4c60ac47547f69ddc96e7bed682f54436cd1a (diff) | |
download | ffmpeg-2b7da70a70fef364f9a42e69b6d34133b3d089f8.tar.gz |
postproc: remove usage of deprecated QP_STORE_T define
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libpostproc/postprocess_internal.h')
-rw-r--r-- | libpostproc/postprocess_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index d128dfbe2f..765fdeb14a 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -149,9 +149,9 @@ typedef struct PPContext{ DECLARE_ALIGNED(32, uint64_t, mmxDcOffset)[64]; DECLARE_ALIGNED(32, uint64_t, mmxDcThreshold)[64]; - QP_STORE_T *stdQPTable; ///< used to fix MPEG2 style qscale - QP_STORE_T *nonBQPTable; - QP_STORE_T *forcedQPTable; + int8_t *stdQPTable; ///< used to fix MPEG2 style qscale + int8_t *nonBQPTable; + int8_t *forcedQPTable; int QP; int nonBQP; |