summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-12-10 03:14:41 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-12-10 03:16:58 +0100
commit0e575c24d62a3d9f51bca04d22c234e3857b86a9 (patch)
treed47e6926167d98c821f685ef2111d745044f66d6 /libavcodec/ffv1.h
parent2bdda9a15c048a63630eec4918510c5fec05e437 (diff)
ffv1.4: use 2 coefficients for calculating the Y plane in the RCT
0-0.7% improved compression Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r--libavcodec/ffv1.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h
index 2c3e6e4c98..9d8329f00f 100644
--- a/libavcodec/ffv1.h
+++ b/libavcodec/ffv1.h
@@ -130,7 +130,8 @@ typedef struct FFV1Context {
int slice_y;
int slice_reset_contexts;
int slice_coding_mode;
- int slice_rct_y_coef;
+ int slice_rct_by_coef;
+ int slice_rct_ry_coef;
} FFV1Context;
int ffv1_common_init(AVCodecContext *avctx);