[FFmpeg-soc] [soc]: r963 - rv40/rv40data.h

kostya subversion at mplayerhq.hu
Sat Aug 18 18:58:03 CEST 2007


Author: kostya
Date: Sat Aug 18 18:58:02 2007
New Revision: 963

Log:
Forgot to add dither tables for filter

Modified:
   rv40/rv40data.h

Modified: rv40/rv40data.h
==============================================================================
--- rv40/rv40data.h	(original)
+++ rv40/rv40data.h	Sat Aug 18 18:58:02 2007
@@ -177,4 +177,19 @@ static const uint16_t rv40_mb_max_sizes[
  */
 static const uint8_t rv40_mb_bits_sizes[6] = { 6, 7, 9, 11, 13, 14 };
 
+/**
+ * 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
+};
+
 #endif /* RV40DATA_H */



More information about the FFmpeg-soc mailing list