diff options
author | Janne Grunau <janne-libav@jannau.net> | 2011-10-05 09:29:38 +0200 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-11-30 20:54:59 +0000 |
commit | bb8a6e03cc641035b3fd4dc7c8c77f2dc92b41d5 (patch) | |
tree | 5d8346a0fc81094148d85efeba351daf3662fb5c /libavcodec/rv40data.h | |
parent | c3f9ebf74371b63fba0e7491e61904bbd165cd0f (diff) | |
download | ffmpeg-bb8a6e03cc641035b3fd4dc7c8c77f2dc92b41d5.tar.gz |
rv40: move loop filter to rv34dsp context
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/rv40data.h')
-rw-r--r-- | libavcodec/rv40data.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/rv40data.h b/libavcodec/rv40data.h index 1b6e8c31b1..42328af5a8 100644 --- a/libavcodec/rv40data.h +++ b/libavcodec/rv40data.h @@ -68,20 +68,6 @@ static const uint8_t rv40_luma_dc_quant[2][32] = { * @name Coefficients used by the RV40 loop filter * @{ */ -/** - * dither values for deblocking filter - left/top values - */ -static const uint8_t rv40_dither_l[16] = { - 0x40, 0x50, 0x20, 0x60, 0x30, 0x50, 0x40, 0x30, - 0x50, 0x40, 0x50, 0x30, 0x60, 0x20, 0x50, 0x40 -}; -/** - * dither values for deblocking filter - right/bottom values - */ -static const uint8_t rv40_dither_r[16] = { - 0x40, 0x30, 0x60, 0x20, 0x50, 0x30, 0x30, 0x40, - 0x40, 0x40, 0x50, 0x30, 0x20, 0x60, 0x30, 0x40 -}; /** alpha parameter for RV40 loop filter - almost the same as in JVT-A003r1 */ static const uint8_t rv40_alpha_tab[32] = { |