summaryrefslogtreecommitdiff
path: root/libavcodec/vp3data.h
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2005-03-01 06:14:45 +0000
committerMike Melanson <mike@multimedia.cx>2005-03-01 06:14:45 +0000
commita54ea19a5278f462460f0f22d58c6b9d9030b254 (patch)
tree14173af67311349dd1a737af07fcc57b754b9329 /libavcodec/vp3data.h
parent9c7fb60816035a8921e770155cffb11757be7a23 (diff)
VP3 post-processing loop filter; disabled until the correct final step
is determined Originally committed as revision 3996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3data.h')
-rw-r--r--libavcodec/vp3data.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavcodec/vp3data.h b/libavcodec/vp3data.h
index 1dd511fa0f..85a2337167 100644
--- a/libavcodec/vp3data.h
+++ b/libavcodec/vp3data.h
@@ -61,6 +61,17 @@ static const uint32_t vp31_ac_scale_factor[64] =
21, 19, 18, 17, 15, 13, 12, 10
};
+static const uint32_t vp31_filter_limit_values[64] =
+{ 30, 25, 20, 20, 15, 15, 14, 14,
+ 13, 13, 12, 12, 11, 11, 10, 10,
+ 9, 9, 8, 8, 7, 7, 7, 7,
+ 6, 6, 6, 6, 5, 5, 5, 5,
+ 4, 4, 4, 4, 3, 3, 3, 3,
+ 2, 2, 2, 2, 2, 2, 2, 2,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0
+};
+
/* table used to convert natural order <-> zigzag order */
static const int dezigzag_index[64] =
{ 0, 1, 8, 16, 9, 2, 3, 10,