]> git.sesse.net Git - vlc/commitdiff
More cleanup
authorClément Stenac <zorglub@videolan.org>
Sun, 24 Dec 2006 14:18:21 +0000 (14:18 +0000)
committerClément Stenac <zorglub@videolan.org>
Sun, 24 Dec 2006 14:18:21 +0000 (14:18 +0000)
25 files changed:
modules/access/dvb/en50221.c
modules/access/dvb/linux_dvb.c
modules/codec/ffmpeg/audio.c
modules/control/gestures.c
modules/control/hotkeys.c
modules/control/http/util.c
modules/control/motion.c
modules/control/rc.c
modules/control/telnet.c
modules/demux/asf/libasf.c
modules/demux/avi/libavi.c
modules/demux/mp4/libmp4.c
modules/demux/ts.c
modules/misc/dummy/aout.c
modules/misc/dummy/decoder.c
modules/misc/dummy/encoder.c
modules/misc/dummy/input.c
modules/misc/dummy/interface.c
modules/misc/dummy/renderer.c
modules/misc/dummy/vout.c
modules/misc/logger.c
modules/mux/mpeg/csa.c
modules/packetizer/mpeg4audio.c
modules/stream_out/standard.c
modules/video_filter/motiondetect.c

index 304bec8690a3f2e44ceef0a21238bf7af6d4e080..9c3f7ee6f8029226864cde7055af0a9f01191dda 100644 (file)
@@ -2310,7 +2310,8 @@ void E_(en50221_End)( access_t * p_access )
 
 static char *dvbsi_to_utf8( char *psz_instring, size_t i_length )
 {
-    char *psz_encoding, *psz_stringstart, *psz_outstring, *psz_tmp;
+    const char *psz_encoding;
+    char *psz_stringstart, *psz_outstring, *psz_tmp;
     char psz_encbuf[12];
     size_t i_in, i_out;
     vlc_iconv_t iconv_handle;
index 8fdf44d56a9505ca095b09d5d76edd36fc9dea88..81fc0cebc8f0b4739464ec69113d6aaef3f71d0f 100644 (file)
@@ -118,8 +118,8 @@ int E_(FrontendOpen)( access_t *p_access )
 
     if( b_probe )
     {
-        char * psz_expected = NULL;
-        char * psz_real;
+        const char * psz_expected = NULL;
+        const char * psz_real;
 
         if( FrontendInfo( p_access ) < 0 )
         {
index 0dfb361d4b84bd99ecdd7fc0f854a546a34aba3e..0153a0c741266216cf0ce0a8929a15044abb062d 100644 (file)
@@ -166,7 +166,7 @@ int E_(InitAudioDec)( decoder_t *p_dec, AVCodecContext *p_context,
  * SplitBuffer: Needed because aout really doesn't like big audio chunk and
  * wma produces easily > 30000 samples...
  *****************************************************************************/
-aout_buffer_t *SplitBuffer( decoder_t *p_dec )
+static aout_buffer_t *SplitBuffer( decoder_t *p_dec )
 {
     decoder_sys_t *p_sys = p_dec->p_sys;
     int i_samples = __MIN( p_sys->i_samples, 4096 );
index 260186f9434d8d75f0e035c31d16f1b068752cd9..0eade43698873eeba2b46c2535d9e18a28eeff26 100644 (file)
@@ -83,8 +83,9 @@ static void RunIntf        ( intf_thread_t *p_intf );
 #define BUTTON_LONGTEXT N_( \
     "Trigger button for mouse gestures." )
 
-static char *button_list[] = { "left", "middle", "right" };
-static char *button_list_text[] = { N_("Left"), N_("Middle"), N_("Right") };
+static const char *button_list[] = { "left", "middle", "right" };
+static const char *button_list_text[] =
+                                   { N_("Left"), N_("Middle"), N_("Right") };
 
 vlc_module_begin();
     set_shortname( _("Gestures"));
index b14f253fa98022e3d4c350ee7a9f6cb76fcaa2b8..4d10ed7c302be32da961527a79a764ed54107fe8 100644 (file)
@@ -658,7 +658,8 @@ static void Run( intf_thread_t *p_intf )
                 i_delay -= 50000;    /* 50 ms */
                 var_SetTime( p_input, "spu-delay", i_delay );
                 ClearChannels( p_intf, p_vout );
-                vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
+                vout_OSDMessage( p_intf, DEFAULT_CHAN,
+                                 _( "Subtitle delay %i ms" ),
                                  (int)(i_delay/1000) );
             }
             else if( i_action == ACTIONID_SUBDELAY_UP )
@@ -667,7 +668,8 @@ static void Run( intf_thread_t *p_intf )
                 i_delay += 50000;    /* 50 ms */
                 var_SetTime( p_input, "spu-delay", i_delay );
                 ClearChannels( p_intf, p_vout );
-                vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
+                vout_OSDMessage( p_intf, DEFAULT_CHAN,
+                                _( "Subtitle delay %i ms" ),
                                  (int)(i_delay/1000) );
             }
             else if( i_action == ACTIONID_AUDIODELAY_DOWN )
@@ -676,7 +678,8 @@ static void Run( intf_thread_t *p_intf )
                 i_delay -= 50000;    /* 50 ms */
                 var_SetTime( p_input, "audio-delay", i_delay );
                 ClearChannels( p_intf, p_vout );
-                vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
+                vout_OSDMessage( p_intf, DEFAULT_CHAN,
+                                _( "Audio delay %i ms" ),
                                  (int)(i_delay/1000) );
             }
             else if( i_action == ACTIONID_AUDIODELAY_UP )
@@ -685,7 +688,8 @@ static void Run( intf_thread_t *p_intf )
                 i_delay += 50000;    /* 50 ms */
                 var_SetTime( p_input, "audio-delay", i_delay );
                 ClearChannels( p_intf, p_vout );
-                vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
+                vout_OSDMessage( p_intf, DEFAULT_CHAN,
+                                _( "Audio delay %i ms" ),
                                  (int)(i_delay/1000) );
             }
             else if( i_action == ACTIONID_PLAY )
@@ -788,7 +792,6 @@ static int ActionKeyCB( vlc_object_t *p_this, char const *psz_var,
 static void PlayBookmark( intf_thread_t *p_intf, int i_num )
 {
     vlc_value_t val;
-    int i;
     char psz_bookmark_name[11];
     playlist_t *p_playlist = pl_Yield( p_intf );
 
@@ -848,7 +851,7 @@ static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout,
     if( time.i_time > 0 )
     {
         secstotimestr( psz_duration, time.i_time / 1000000 );
-        vout_OSDMessage( p_input, POSITION_TEXT_CHAN, "%s / %s",
+        vout_OSDMessage( p_input, POSITION_TEXT_CHAN, (char *) "%s / %s",
                          psz_time, psz_duration );
     }
     else if( i_seconds > 0 )
@@ -880,7 +883,7 @@ static void DisplayVolume( intf_thread_t *p_intf, vout_thread_t *p_vout,
     }
     else
     {
-        vout_OSDMessage( p_vout, VOLUME_TEXT_CHAN, "Volume %d%%",
+        vout_OSDMessage( p_vout, VOLUME_TEXT_CHAN, _( "Volume %d%%" ),
                          i_vol*400/AOUT_VOLUME_MAX );
     }
 }
index 8b53022f5f6b0a24fa0e1e03c3b33b24479c020c..7eebbfd1de6daecaee39e31b913dc14651ec8909 100644 (file)
@@ -206,7 +206,7 @@ int E_(ParseDirectory)( intf_thread_t *p_intf, char *psz_root,
             continue;
 
         sprintf( dir, "%s%c%s", psz_dir, sep, psz_filename );
-        free( psz_filename );
+        free( (char*) psz_filename );
 
         if( E_(ParseDirectory)( p_intf, psz_root, dir ) )
         {
index eb8f5d2f974e3a99e68fdb58b5b258ce72996f62..98f53edcfe0c604a5edd6779cf02f62fc117b2ab 100644 (file)
@@ -150,7 +150,7 @@ static void RunIntf( intf_thread_t *p_intf )
 #define LOW_THRESHOLD 80
 #define HIGH_THRESHOLD 100
         vout_thread_t *p_vout;
-        char *psz_filter, *psz_type;
+        const char *psz_filter, *psz_type;
         vlc_bool_t b_change = VLC_FALSE;
 
         /* Wait a bit, get orientation, change filter if necessary */
index 4897d4c8cc8bc50f441d2fcdd5c29d63da1ea349..7d419d2589c949aca4085c9fee4204428dd35ea2 100644 (file)
@@ -1181,7 +1181,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
              || !strcmp( psz_cmd, "vtrack" )
              || !strcmp( psz_cmd, "strack" ) )
     {
-        char *psz_variable;
+        const char *psz_variable;
         vlc_value_t val_name;
         int i_error;
 
@@ -1475,7 +1475,7 @@ static int Other( vlc_object_t *p_this, char const *psz_cmd,
             "mosaic-offsets\0" "mosaic-keep-aspect-ratio\0"
             "logo-file\0" "logo-x\0" "logo-y\0" "logo-position\0"
             "logo-transparency\0";
-        const char *psz_name;
+        const char *psz_name = NULL;
 
         if( newval.psz_string )
         for( psz_name = vars; *psz_name; psz_name += strlen( psz_name ) + 1 )
index 50e660a5aaa013d3b4f8bddc613a31da138a3406..3dcbc8cff57253327252e3db96f5ffeb689a9209 100644 (file)
@@ -269,7 +269,8 @@ static void Run( intf_thread_t *p_intf )
             cl->fd = fd;
             cl->buffer_write = NULL;
             cl->p_buffer_write = cl->buffer_write;
-            Write_message( cl, NULL, "Password: \xff\xfb\x01", WRITE_MODE_PWD );
+            Write_message( cl, NULL,
+                           _( "Password: \xff\xfb\x01" ), WRITE_MODE_PWD );
 
             TAB_APPEND( p_sys->i_clients, p_sys->clients, cl );
         }
@@ -376,7 +377,7 @@ static void Run( intf_thread_t *p_intf )
 
                 if( cl->p_buffer_read - cl->buffer_read == 999 )
                 {
-                    Write_message( cl, NULL, "Line too long\r\n",
+                    Write_message( cl, NULL, _( "Line too long\r\n" ),
                                    cl->i_mode + 2 );
                 }
 
@@ -406,14 +407,14 @@ static void Run( intf_thread_t *p_intf )
                 *cl->p_buffer_read = '\0';
                 if( strcmp( psz_password, cl->buffer_read ) == 0 )
                 {
-                    Write_message( cl, NULL, "\xff\xfc\x01\r\nWelcome, "
-                                   "Master\r\n> ", WRITE_MODE_CMD );
+                    Write_message( cl, NULL, _( "\xff\xfc\x01\r\nWelcome, "
+                                   "Master\r\n> " ), WRITE_MODE_CMD );
                 }
                 else
                 {
                     /* wrong password */
                     Write_message( cl, NULL,
-                                   "\r\nWrong password.\r\nPassword: ",
+                                   _( "\r\nWrong password.\r\nPassword: " ),
                                    WRITE_MODE_PWD );
                 }
             }
index c9244984c0e47446f557bff6d3b781d1f84aa673..ce4630ae77f172f550c095a236bf2cc569b6cf5f 100644 (file)
@@ -1363,7 +1363,7 @@ static void ASF_FreeObject( stream_t *s, asf_object_t *p_obj )
 static const struct
 {
     const guid_t *p_id;
-    char *psz_name;
+    const char *psz_name;
 } ASF_ObjectDumpDebugInfo[] =
 {
     { &asf_object_header_guid, "Header" },
index aef8c8b007c1381c5fc0b53d53ec6a6b35f428c0..b8c234cd62c697ae2645615dc884e136e822aeca 100644 (file)
@@ -566,7 +566,7 @@ static void AVI_ChunkFree_indx( avi_chunk_t *p_chk )
 static struct
 {
     vlc_fourcc_t i_fourcc;
-    char *psz_type;
+    const char *psz_type;
 } AVI_strz_type[] =
 {
     { AVIFOURCC_IARL, "archive location" },
index 49a38c0e26beaa9774f4fd134b3203da0d62e8ca..4f9c44af35908224fb8743ec2b00472b6a3a8fd0 100644 (file)
@@ -82,7 +82,7 @@
 
 
 #define MP4_READBOX_ENTER( MP4_Box_data_TYPE_t ) \
-    uint64_t  i_read = p_box->i_size; \
+    int64_t  i_read = p_box->i_size; \
     uint8_t *p_peek, *p_buff; \
     int i_actually_read; \
     if( !( p_peek = p_buff = malloc( i_read ) ) ) \
@@ -90,7 +90,7 @@
         return( 0 ); \
     } \
     i_actually_read = stream_Read( p_stream, p_peek, i_read ); \
-    if( i_actually_read < 0 || (uint64_t)i_actually_read < i_read )\
+    if( i_actually_read < 0 || (int64_t)i_actually_read < i_read )\
     { \
         free( p_buff ); \
         return( 0 ); \
@@ -2055,7 +2055,7 @@ static int MP4_ReadBox_drms( stream_t *p_stream, MP4_Box_t *p_box )
         }
         if( i_ret )
         {
-            char *psz_error;
+            const char *psz_error;
 
             switch( i_ret )
             {
index 1902dcad539ba7ff97933290c8f49d4a8b33255f..f3d768fca751d8b7784e9b9dbd376b99dff784e3 100644 (file)
@@ -388,7 +388,7 @@ static int Open( vlc_object_t *p_this )
     int          i_packet_size;
 
     ts_pid_t    *pat;
-    char        *psz_mode;
+    const char  *psz_mode;
     vlc_bool_t   b_append;
     vlc_bool_t   b_topfield = VLC_FALSE;
 
index d8f12abe0880f73926b0ea3db7b72a801563fe94..ec738dbc34141a18cc802f9029c2fed638362080 100644 (file)
@@ -30,6 +30,8 @@
 #include <vlc/vlc.h>
 #include <vlc_aout.h>
 
+#include "dummy.h"
+
 #define FRAME_SIZE 2048
 #define A52_FRAME_NB 1536
 
index b01b38bde6cfcc7d0da9178200bc0ce4000f9977..8f31c72829f7e2ae73e7ef8c2603fa17015cc53e 100644 (file)
@@ -48,6 +48,8 @@
 
 #include <stdio.h> /* sprintf() */
 
+#include "dummy.h"
+
 /*****************************************************************************
  * decoder_sys_t : theora decoder descriptor
  *****************************************************************************/
index a9f8738977c4e09abd908a7f1f7fab285259c5b5..fc93fd11360bda0ade0e8fab99515103bfcd39ef 100644 (file)
@@ -26,6 +26,7 @@
  *****************************************************************************/
 #include <vlc/vlc.h>
 #include <vlc_codec.h>
+#include "dummy.h"
 
 /*****************************************************************************
  * Local prototypes
index c9a2c3bc255c108e8d5fd3fc1afb69f568c4b7cb..a2ee8c58096d5d41e0943ee536c57df43f0b5a8c 100644 (file)
@@ -33,6 +33,8 @@
 #include <vlc_demux.h>
 #include <vlc_playlist.h>
 
+#include "dummy.h"
+
 /*****************************************************************************
  * Access functions.
  *****************************************************************************/
index 08740ca4816efda18f3e564f277fb4c06ef238f6..abf759763ee120697c6893043d258b5dfa446618 100644 (file)
@@ -30,6 +30,8 @@
 #include <vlc/vlc.h>
 #include <vlc_interface.h>
 
+#include "dummy.h"
+
 /*****************************************************************************
  * Open: initialize dummy interface
  *****************************************************************************/
index 9a4c2cf38cbe6c0847abd96e0c256f73cba33559..7e5802995cf045f6698ec1c44ecd62426a2d5e1f 100644 (file)
@@ -26,6 +26,8 @@
 #include <vlc_block.h>
 #include <vlc_filter.h>
 
+#include "dummy.h"
+
 static int RenderText( filter_t *, subpicture_region_t *,
                        subpicture_region_t * );
 
index d00e8fc199b9bb145f1b49869f123a3dfd73c757..1c20e40c2631c033e0df9225b91ae6727c7a3308 100644 (file)
@@ -34,6 +34,8 @@
 #define DUMMY_HEIGHT 16
 #define DUMMY_MAX_DIRECTBUFFERS 10
 
+#include "dummy.h"
+
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
index d9431d51a9dfccb3c810a97135cd560503072647..f9697e1934d5700bfbf752999b73e9068e60582e 100644 (file)
@@ -105,12 +105,12 @@ static void DoRRD( intf_thread_t *p_intf );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-static char *mode_list[] = { "text", "html"
+static const char *mode_list[] = { "text", "html"
 #ifdef HAVE_SYSLOG_H
 ,"syslog"
 #endif
 };
-static char *mode_list_text[] = { N_("Text"), "HTML"
+static const char *mode_list_text[] = { N_("Text"), "HTML"
 #ifdef HAVE_SYSLOG_H
 , "syslog"
 #endif
index 11fde62450bd9cc60a4dc9b169b70abe7e011c54..1206281d61baf4a6272f335ba30346b95735623b 100644 (file)
@@ -59,7 +59,7 @@ static void csa_BlockCypher( uint8_t kk[57], uint8_t bd[8], uint8_t ib[8] );
 /*****************************************************************************
  * csa_New:
  *****************************************************************************/
-csa_t *csa_New()
+csa_t *csa_New( void )
 {
     csa_t *c = malloc( sizeof( csa_t ) );
     memset( c, 0, sizeof( csa_t ) );
index f9a7343cd0f14b0049843e72547fed2418155c2a..f1128f72e1e77fcc96fd8afa87027150c75d37f4 100644 (file)
@@ -68,7 +68,8 @@ struct decoder_sys_t
     audio_date_t end_date;
     mtime_t i_pts;
 
-    int i_frame_size, i_raw_blocks;
+    int i_frame_size;
+    unsigned int i_raw_blocks;
     unsigned int i_channels;
     unsigned int i_rate, i_frame_length, i_header_size;
 };
index c805146ed69efa9e85f40bb1545ebbf82c8eff53..c9288812601b88e5b9b7aa84073a394f0ef90b63 100644 (file)
@@ -158,7 +158,7 @@ static int Open( vlc_object_t *p_this )
     if( psz_url && strrchr( psz_url, '.' ) )
     {
         /* by extension */
-        static struct { char *ext; char *mux; } exttomux[] =
+        static struct { const char *ext; const char *mux; } exttomux[] =
         {
             { "avi", "avi" },
             { "ogg", "ogg" },
index 26f4edd53f48be726f67b928c07a24e42263a109..183356c055c068bf1a7631e45969d33a8b08a20c 100644 (file)
@@ -137,7 +137,6 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_inpic )
     const uint8_t *p_inpix_u = p_inpic->p[U_PLANE].p_pixels;
     const uint8_t *p_inpix_v = p_inpic->p[V_PLANE].p_pixels;
     const int i_src_pitch_u = p_inpic->p[U_PLANE].i_pitch;
-    const int i_src_visible_u = p_inpic->p[U_PLANE].i_visible_pitch;
     const int i_num_lines_u = p_inpic->p[U_PLANE].i_visible_lines;
 
     uint8_t *p_oldpix;
@@ -257,7 +256,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_inpic )
                         p_buf2[(2*line+1)*i_src_pitch+2*col+1] += diff;
                         break;
 
-                    case2:
+                    case 2:
                         p_buf2[line*i_src_pitch+2*col] += diff;
                         p_buf2[line*i_src_pitch+2*col+1] += diff;
                         break;