[FFmpeg-cvslog] r11181 - trunk/libavcodec/rv34data.h

kostya subversion
Fri Dec 7 06:47:24 CET 2007


Author: kostya
Date: Fri Dec  7 06:47:24 2007
New Revision: 11181

Log:
Replace table with its H.263 counterpart

Modified:
   trunk/libavcodec/rv34data.h

Modified: trunk/libavcodec/rv34data.h
==============================================================================
--- trunk/libavcodec/rv34data.h	(original)
+++ trunk/libavcodec/rv34data.h	Fri Dec  7 06:47:24 2007
@@ -123,13 +123,15 @@ static const uint8_t rv34_quant_to_vlc_s
 
 /**
  * table for obtaining the quantizer difference
- * @todo Replace it with modified_quant_tab from h263data.h.
+ * @todo Use with modified_quant_tab from h263data.h.
  */
-static const int8_t rv34_dquant_tab[] = {
-  0,  0,  2,  1, -1,  1, -1,  1, -1,  1, -1,  1, -1,  1, -1,  1,
- -1,  1, -1,  1, -1,  1, -2,  2, -2,  2, -2,  2, -2,  2, -2,  2,
- -2,  2, -2,  2, -2,  2, -2,  2, -2,  2, -3,  3, -3,  3, -3,  3,
- -3,  3, -3,  3, -3,  3, -3,  3, -3,  3, -3,  2, -3,  1, -3, -5
+static const uint8_t rv34_dquant_tab[2][32]={
+//  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
+{
+    0, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9,10,11,12,13,14,15,16,17,18,18,19,20,21,22,23,24,25,26,27,28
+},{
+    0, 2, 3, 4, 5, 6, 7, 8, 9,10,11,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,31,31,26
+}
 };
 
 /**




More information about the ffmpeg-cvslog mailing list