[FFmpeg-soc] [soc]: r5597 - in indeo5: ivi_common.c ivi_common.h

kostya subversion at mplayerhq.hu
Wed Jan 27 16:58:06 CET 2010


Author: kostya
Date: Wed Jan 27 16:58:06 2010
New Revision: 5597

Log:
rename variable since 'pOut' is not a pretty name

Modified:
   indeo5/ivi_common.c
   indeo5/ivi_common.h

Modified: indeo5/ivi_common.c
==============================================================================
--- indeo5/ivi_common.c	Wed Jan 27 16:28:20 2010	(r5596)
+++ indeo5/ivi_common.c	Wed Jan 27 16:58:06 2010	(r5597)
@@ -49,7 +49,7 @@ static uint16_t inv_bits(uint16_t val, i
     return res;
 }
 
-int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *pOut,
+int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc,
                                  const int flag)
 {
     int         pos, i, j, codes_per_row, prefix, last_row;
@@ -80,7 +80,7 @@ int ff_ivi_create_huff_from_desc(const I
     }//for i
 
     /* number of codewords = pos */
-    return init_vlc(pOut, IVI_VLC_BITS, pos, bits, 1, 1, codewords, 2, 2,
+    return init_vlc(vlc, IVI_VLC_BITS, pos, bits, 1, 1, codewords, 2, 2,
                     (flag & 1) | INIT_VLC_LE);
 }
 

Modified: indeo5/ivi_common.h
==============================================================================
--- indeo5/ivi_common.h	Wed Jan 27 16:28:20 2010	(r5596)
+++ indeo5/ivi_common.h	Wed Jan 27 16:58:06 2010	(r5597)
@@ -198,11 +198,11 @@ static inline int ivi_pic_config_cmp(IVI
  *  and converts it into the FFmpeg VLC table.
  *
  *  @param cb   [in]  pointer to codebook descriptor
- *  @param pOut [out] where to place the generated VLC table
+ *  @param vlc  [out] where to place the generated VLC table
  *  @param flag [in]  flag: 1 - for static or 0 for dynamic tables
  *  @return     result code: 0 - OK, -1 = error (invalid codebook descriptor)
  */
-int  ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *pOut, int flag);
+int  ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag);
 
 /**
  *  Decodes a huffman codebook descriptor from the bitstream.


More information about the FFmpeg-soc mailing list