[FFmpeg-soc] [soc]: r1474 - in rv40: rv34.c rv34vlc.h

kostya subversion at mplayerhq.hu
Fri Nov 30 06:22:10 CET 2007


Author: kostya
Date: Fri Nov 30 06:22:10 2007
New Revision: 1474

Log:
Use consistent names

Modified:
   rv40/rv34.c
   rv40/rv34vlc.h

Modified: rv40/rv34.c
==============================================================================
--- rv40/rv34.c	(original)
+++ rv40/rv34.c	Fri Nov 30 06:22:10 2007
@@ -96,8 +96,8 @@ static void rv34_init_tables()
     for(i = 0; i < NUM_INTRA_TABLES; i++){
         for(j = 0; j < 2; j++){
             rv34_gen_vlc(rv34_table_intra_cbppat      [i][j], CBPPAT_VLC_SIZE,   &intra_vlcs[i].cbppattern[j],     NULL);
-            rv34_gen_vlc(rv34_table_intra_secondpatvlc[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL);
-            rv34_gen_vlc(rv34_table_intra_thirdpatvlc [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j],  NULL);
+            rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL);
+            rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j],  NULL);
             for(k = 0; k < 4; k++)
                 rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2],  CBP_VLC_SIZE,      &intra_vlcs[i].cbp[j][k],         rv34_cbp_code);
         }

Modified: rv40/rv34vlc.h
==============================================================================
--- rv40/rv34vlc.h	(original)
+++ rv40/rv34vlc.h	Fri Nov 30 06:22:10 2007
@@ -2070,7 +2070,7 @@ static const uint8_t rv34_table_intra_fi
 };
 
 
-static const uint8_t rv34_table_intra_secondpatvlc[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
+static const uint8_t rv34_table_intra_secondpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
   {
     {
        0,  5, 10,  3,  6, 10,  7,  8,  9,  4,  6, 10,  6,  7,  9,  8,
@@ -2173,7 +2173,7 @@ static const uint8_t rv34_table_intra_se
   },
 };
 
-static const uint8_t rv34_table_intra_thirdpatvlc[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
+static const uint8_t rv34_table_intra_thirdpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
   {
     {
        0,  5, 10,  3,  6, 10,  7,  8, 10,  4,  7, 10,  6,  7, 10,  8,



More information about the FFmpeg-soc mailing list