[FFmpeg-cvslog] r22091 - in trunk/libavcodec: ivi_common.c ivi_common.h

kostya subversion
Sat Feb 27 13:12:56 CET 2010


Author: kostya
Date: Sat Feb 27 13:12:56 2010
New Revision: 22091

Log:
Make it clear that ff_ivi_init_static_vlc() does not need arguments

Modified:
   trunk/libavcodec/ivi_common.c
   trunk/libavcodec/ivi_common.h

Modified: trunk/libavcodec/ivi_common.c
==============================================================================
--- trunk/libavcodec/ivi_common.c	Sat Feb 27 11:16:45 2010	(r22090)
+++ trunk/libavcodec/ivi_common.c	Sat Feb 27 13:12:56 2010	(r22091)
@@ -89,7 +89,7 @@ int ff_ivi_create_huff_from_desc(const I
                     (flag ? INIT_VLC_USE_NEW_STATIC : 0) | INIT_VLC_LE);
 }
 
-void ff_ivi_init_static_vlc()
+void ff_ivi_init_static_vlc(void)
 {
     int i;
     static VLC_TYPE table_data[8192 * 16][2];

Modified: trunk/libavcodec/ivi_common.h
==============================================================================
--- trunk/libavcodec/ivi_common.h	Sat Feb 27 11:16:45 2010	(r22090)
+++ trunk/libavcodec/ivi_common.h	Sat Feb 27 13:12:56 2010	(r22091)
@@ -205,7 +205,7 @@ int  ff_ivi_create_huff_from_desc(const 
 /**
  * Initializes static codes used for macroblock and block decoding.
  */
-void ff_ivi_init_static_vlc();
+void ff_ivi_init_static_vlc(void);
 
 /**
  *  Decodes a huffman codebook descriptor from the bitstream.



More information about the ffmpeg-cvslog mailing list