Commit 470b47fe authored by Clément Stenac's avatar Clément Stenac

String fixes in src (Refs:#438)

parent 4dfd839a
...@@ -173,7 +173,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input ) ...@@ -173,7 +173,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
if( p_input->i_nb_filters >= AOUT_MAX_FILTERS ) if( p_input->i_nb_filters >= AOUT_MAX_FILTERS )
{ {
msg_Dbg( p_aout, "max filter reached (%d)", AOUT_MAX_FILTERS ); msg_Dbg( p_aout, "max filters reached (%d)", AOUT_MAX_FILTERS );
break; break;
} }
...@@ -235,7 +235,8 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input ) ...@@ -235,7 +235,8 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
{ {
aout_FormatPrepare( &p_filter->input ); aout_FormatPrepare( &p_filter->input );
aout_FormatPrepare( &p_filter->output ); aout_FormatPrepare( &p_filter->output );
p_filter->p_module = module_Need( p_filter, "audio filter", p_filter->p_module = module_Need( p_filter,
"audio filter",
psz_parser, VLC_TRUE ); psz_parser, VLC_TRUE );
} }
/* try visual filters */ /* try visual filters */
...@@ -245,7 +246,8 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input ) ...@@ -245,7 +246,8 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
sizeof(audio_sample_format_t) ); sizeof(audio_sample_format_t) );
memcpy( &p_filter->output, &chain_output_format, memcpy( &p_filter->output, &chain_output_format,
sizeof(audio_sample_format_t) ); sizeof(audio_sample_format_t) );
p_filter->p_module = module_Need( p_filter, "visualization", p_filter->p_module = module_Need( p_filter,
"visualization",
psz_parser, VLC_TRUE ); psz_parser, VLC_TRUE );
} }
} }
...@@ -460,8 +462,8 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -460,8 +462,8 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
mdate() - p_buffer->start_date ); mdate() - p_buffer->start_date );
if( p_input->p_input_thread ) if( p_input->p_input_thread )
{ {
stats_UpdateInteger( p_input->p_input_thread, STATS_LOST_ABUFFERS, 1, stats_UpdateInteger( p_input->p_input_thread, STATS_LOST_ABUFFERS,
NULL ); 1, NULL );
} }
aout_BufferFree( p_buffer ); aout_BufferFree( p_buffer );
p_input->i_resampling_type = AOUT_RESAMPLING_NONE; p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
...@@ -502,8 +504,8 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -502,8 +504,8 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
aout_BufferFree( p_buffer ); aout_BufferFree( p_buffer );
if( p_input->p_input_thread ) if( p_input->p_input_thread )
{ {
stats_UpdateInteger( p_input->p_input_thread, STATS_LOST_ABUFFERS, 1, stats_UpdateInteger( p_input->p_input_thread, STATS_LOST_ABUFFERS,
NULL ); 1, NULL );
} }
return 0; return 0;
} }
......
...@@ -158,7 +158,8 @@ int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps, ...@@ -158,7 +158,8 @@ int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,
} }
config_PutInt( p_object, "volume", i_volume ); config_PutInt( p_object, "volume", i_volume );
var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER ); var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );
var_SetInteger( p_object->p_libvlc, "saved-volume" , (audio_volume_t) i_volume ); var_SetInteger( p_object->p_libvlc, "saved-volume" ,
(audio_volume_t) i_volume );
if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume; if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume;
if ( p_aout == NULL ) return 0; if ( p_aout == NULL ) return 0;
...@@ -166,7 +167,8 @@ int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps, ...@@ -166,7 +167,8 @@ int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,
vlc_mutex_lock( &p_aout->mixer_lock ); vlc_mutex_lock( &p_aout->mixer_lock );
if ( !p_aout->mixer.b_error ) if ( !p_aout->mixer.b_error )
{ {
i_result = p_aout->output.pf_volume_set( p_aout, (audio_volume_t) i_volume ); i_result = p_aout->output.pf_volume_set( p_aout,
(audio_volume_t) i_volume );
} }
vlc_mutex_unlock( &p_aout->mixer_lock ); vlc_mutex_unlock( &p_aout->mixer_lock );
......
...@@ -46,7 +46,7 @@ int aout_MixerNew( aout_instance_t * p_aout ) ...@@ -46,7 +46,7 @@ int aout_MixerNew( aout_instance_t * p_aout )
p_aout->mixer.p_module = module_Need( p_aout, "audio mixer", NULL, 0 ); p_aout->mixer.p_module = module_Need( p_aout, "audio mixer", NULL, 0 );
if ( p_aout->mixer.p_module == NULL ) if ( p_aout->mixer.p_module == NULL )
{ {
msg_Err( p_aout, "no suitable aout mixer" ); msg_Err( p_aout, "no suitable audio mixer" );
return -1; return -1;
} }
p_aout->mixer.b_error = 0; p_aout->mixer.b_error = 0;
......
...@@ -57,7 +57,7 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -57,7 +57,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
p_aout->output.p_module = module_Need( p_aout, "audio output", "$aout", 0); p_aout->output.p_module = module_Need( p_aout, "audio output", "$aout", 0);
if ( p_aout->output.p_module == NULL ) if ( p_aout->output.p_module == NULL )
{ {
msg_Err( p_aout, "no suitable aout module" ); msg_Err( p_aout, "no suitable audio output module" );
vlc_mutex_unlock( &p_aout->output_fifo_lock ); vlc_mutex_unlock( &p_aout->output_fifo_lock );
return -1; return -1;
} }
...@@ -195,7 +195,7 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -195,7 +195,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
&p_aout->mixer.mixer, &p_aout->mixer.mixer,
&p_aout->output.output ) < 0 ) &p_aout->output.output ) < 0 )
{ {
msg_Err( p_aout, "couldn't set an output pipeline" ); msg_Err( p_aout, "couldn't create audio output pipeline" );
module_Unneed( p_aout, p_aout->output.p_module ); module_Unneed( p_aout, p_aout->output.p_module );
return -1; return -1;
} }
......
...@@ -199,7 +199,8 @@ mediacontrol_display_text( mediacontrol_Instance *self, ...@@ -199,7 +199,8 @@ mediacontrol_display_text( mediacontrol_Instance *self,
mtime_t i_duration = 0; mtime_t i_duration = 0;
mtime_t i_now = mdate(); mtime_t i_now = mdate();
i_duration = 1000 * mediacontrol_unit_convert( self->p_playlist->p_input, i_duration = 1000 * mediacontrol_unit_convert(
self->p_playlist->p_input,
end->key, end->key,
mediacontrol_MediaTime, mediacontrol_MediaTime,
end->value ); end->value );
......
...@@ -123,7 +123,8 @@ mediacontrol_get_media_position( mediacontrol_Instance *self, ...@@ -123,7 +123,8 @@ mediacontrol_get_media_position( mediacontrol_Instance *self,
if( an_origin != mediacontrol_AbsolutePosition ) if( an_origin != mediacontrol_AbsolutePosition )
{ {
/* Relative or ModuloPosition make no sense */ /* Relative or ModuloPosition make no sense */
RAISE( mediacontrol_PositionOriginNotSupported, "Only absolute position is valid." ); RAISE( mediacontrol_PositionOriginNotSupported,
"Only absolute position is valid." );
return NULL; return NULL;
} }
...@@ -364,7 +365,8 @@ mediacontrol_get_stream_information( mediacontrol_Instance *self, ...@@ -364,7 +365,8 @@ mediacontrol_get_stream_information( mediacontrol_Instance *self,
input_thread_t *p_input = self->p_playlist->p_input; input_thread_t *p_input = self->p_playlist->p_input;
vlc_value_t val; vlc_value_t val;
retval = ( mediacontrol_StreamInformation* )malloc( sizeof( mediacontrol_StreamInformation ) ); retval = ( mediacontrol_StreamInformation* )
malloc( sizeof( mediacontrol_StreamInformation ) );
if( ! retval ) if( ! retval )
{ {
RAISE( mediacontrol_InternalException, "Out of memory" ); RAISE( mediacontrol_InternalException, "Out of memory" );
......
...@@ -96,7 +96,8 @@ vlc_int64_t mediacontrol_unit_convert( input_thread_t *p_input, ...@@ -96,7 +96,8 @@ vlc_int64_t mediacontrol_unit_convert( input_thread_t *p_input,
{ {
double f_fps; double f_fps;
if( demux2_Control( p_input->input.p_demux, DEMUX_GET_FPS, &f_fps ) || f_fps < 0.1 ) if( demux2_Control( p_input->input.p_demux, DEMUX_GET_FPS, &f_fps ) ||
f_fps < 0.1 )
return 0; return 0;
if( to == mediacontrol_ByteCount ) if( to == mediacontrol_ByteCount )
......
...@@ -533,7 +533,8 @@ static void NotifyPlaylist( input_thread_t *p_input ) ...@@ -533,7 +533,8 @@ static void NotifyPlaylist( input_thread_t *p_input )
FIND_PARENT ); FIND_PARENT );
if( p_playlist ) if( p_playlist )
{ {
var_SetInteger( p_playlist, "item-change", p_input->input.p_item->i_id ); var_SetInteger( p_playlist, "item-change",
p_input->input.p_item->i_id );
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
} }
} }
......
...@@ -76,7 +76,8 @@ demux_t *__demux2_New( vlc_object_t *p_obj, ...@@ -76,7 +76,8 @@ demux_t *__demux2_New( vlc_object_t *p_obj,
if( s && *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) ) if( s && *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) )
{ {
/* XXX: add only file without any problem here and with strong detection. /* XXX: add only file without any problem here and with strong detection.
* - no .mp3, .a52, ... (aac is added as it works only by file ext anyway * - no .mp3, .a52, ... (aac is added as it works only by file ext
* anyway
* - wav can't be added 'cause of a52 and dts in them as raw audio * - wav can't be added 'cause of a52 and dts in them as raw audio
*/ */
static struct { char *ext; char *demux; } exttodemux[] = static struct { char *ext; char *demux; } exttodemux[] =
......
...@@ -179,7 +179,7 @@ es_out_t *input_EsOutNew( input_thread_t *p_input ) ...@@ -179,7 +179,7 @@ es_out_t *input_EsOutNew( input_thread_t *p_input )
if( p_sys->ppsz_audio_language ) if( p_sys->ppsz_audio_language )
{ {
for( i = 0; p_sys->ppsz_audio_language[i]; i++ ) for( i = 0; p_sys->ppsz_audio_language[i]; i++ )
msg_Dbg( p_input, "select audio in language[%d] %s", msg_Dbg( p_input, "selected audio language[%d] %s",
i, p_sys->ppsz_audio_language[i] ); i, p_sys->ppsz_audio_language[i] );
} }
if( val.psz_string ) free( val.psz_string ); if( val.psz_string ) free( val.psz_string );
...@@ -189,7 +189,7 @@ es_out_t *input_EsOutNew( input_thread_t *p_input ) ...@@ -189,7 +189,7 @@ es_out_t *input_EsOutNew( input_thread_t *p_input )
if( p_sys->ppsz_sub_language ) if( p_sys->ppsz_sub_language )
{ {
for( i = 0; p_sys->ppsz_sub_language[i]; i++ ) for( i = 0; p_sys->ppsz_sub_language[i]; i++ )
msg_Dbg( p_input, "select subtitle in language[%d] %s", msg_Dbg( p_input, "selected subtitle language[%d] %s",
i, p_sys->ppsz_sub_language[i] ); i, p_sys->ppsz_sub_language[i] );
} }
if( val.psz_string ) free( val.psz_string ); if( val.psz_string ) free( val.psz_string );
...@@ -368,8 +368,10 @@ static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es, ...@@ -368,8 +368,10 @@ static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es,
{ {
if( es->psz_language && *es->psz_language ) if( es->psz_language && *es->psz_language )
{ {
text.psz_string = malloc( strlen( es->fmt.psz_description) + strlen( es->psz_language ) + 10 ); text.psz_string = malloc( strlen( es->fmt.psz_description) +
sprintf( text.psz_string, "%s - [%s]", es->fmt.psz_description, es->psz_language ); strlen( es->psz_language ) + 10 );
sprintf( text.psz_string, "%s - [%s]", es->fmt.psz_description,
es->psz_language );
} }
else text.psz_string = strdup( es->fmt.psz_description ); else text.psz_string = strdup( es->fmt.psz_description );
} }
...@@ -378,7 +380,8 @@ static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es, ...@@ -378,7 +380,8 @@ static void EsOutESVarUpdate( es_out_t *out, es_out_id_t *es,
if( es->psz_language && *es->psz_language ) if( es->psz_language && *es->psz_language )
{ {
char *temp; char *temp;
text.psz_string = malloc( strlen( _("Track %i") )+ strlen( es->psz_language ) + 30 ); text.psz_string = malloc( strlen( _("Track %i") )+
strlen( es->psz_language ) + 30 );
asprintf( &temp, _("Track %i"), val.i_int ); asprintf( &temp, _("Track %i"), val.i_int );
sprintf( text.psz_string, "%s - [%s]", temp, es->psz_language ); sprintf( text.psz_string, "%s - [%s]", temp, es->psz_language );
free( temp ); free( temp );
......
...@@ -207,7 +207,8 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item, ...@@ -207,7 +207,8 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
} }
else if( !strncmp( psz_start, "time=", 5 ) ) else if( !strncmp( psz_start, "time=", 5 ) )
{ {
p_seekpoint->i_time_offset = atoll(psz_start + 5) * 1000000; p_seekpoint->i_time_offset = atoll(psz_start + 5) *
1000000;
} }
psz_start = psz_end + 1; psz_start = psz_end + 1;
} }
...@@ -1654,7 +1655,8 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type, ...@@ -1654,7 +1655,8 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type,
input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE ); input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE );
es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR ); es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR );
access2_Control( p_access, ACCESS_SET_SEEKPOINT, i_seekpoint ); access2_Control( p_access, ACCESS_SET_SEEKPOINT,
i_seekpoint );
stream_AccessReset( p_input->input.p_stream ); stream_AccessReset( p_input->input.p_stream );
} }
} }
...@@ -2043,7 +2045,7 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2043,7 +2045,7 @@ static int InputSourceInit( input_thread_t *p_input,
{ {
psz_demux = psz_var_demux; psz_demux = psz_var_demux;
msg_Dbg( p_input, "Enforce demux ` %s'", psz_demux ); msg_Dbg( p_input, "enforced demux ` %s'", psz_demux );
} }
else if( psz_var_demux ) else if( psz_var_demux )
{ {
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
/** /**
* The possible extentions for subtitle files we support * The possible extentions for subtitle files we support
*/ */
static const char * sub_exts[] = { "utf", "utf8", "utf-8", "sub", "srt", "smi", "txt", "ssa", "idx", NULL}; static const char * sub_exts[] = { "utf", "utf8", "utf-8", "sub", "srt", "smi", "txt", "ssa", "idx", NULL };
/* extensions from unsupported types */ /* extensions from unsupported types */
/* rt, aqt, jss, js, ass */ /* rt, aqt, jss, js, ass */
...@@ -343,8 +343,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, ...@@ -343,8 +343,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
tmp_subdirs = paths_to_list( f_dir, psz_path ); tmp_subdirs = paths_to_list( f_dir, psz_path );
subdirs = tmp_subdirs; subdirs = tmp_subdirs;
for( j = -1; (j == -1) || ( (j >= 0) && (subdirs != NULL) && (*subdirs != NULL) ); for( j = -1; (j == -1) || ( (j >= 0) && (subdirs != NULL) &&
j++) (*subdirs != NULL) ); j++)
{ {
const char *psz_dir = j < 0 ? f_dir : *subdirs; const char *psz_dir = j < 0 ? f_dir : *subdirs;
char **ppsz_dir_content; char **ppsz_dir_content;
...@@ -364,7 +364,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, ...@@ -364,7 +364,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
msg_Dbg( p_this, "looking for a subtitle file in %s", psz_dir ); msg_Dbg( p_this, "looking for a subtitle file in %s", psz_dir );
for( a = 0; a < i_dir_content; a++ ) for( a = 0; a < i_dir_content; a++ )
{ {
char *psz_name = vlc_fix_readdir_charset( p_this, ppsz_dir_content[a] ); char *psz_name = vlc_fix_readdir_charset( p_this,
ppsz_dir_content[a] );
int i_prio = 0; int i_prio = 0;
if( psz_name == NULL ) if( psz_name == NULL )
...@@ -408,12 +409,16 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, ...@@ -408,12 +409,16 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
char psz_path[strlen( psz_dir ) + strlen( psz_name ) + 1]; char psz_path[strlen( psz_dir ) + strlen( psz_name ) + 1];
sprintf( psz_path, "%s%s", psz_dir, psz_name ); sprintf( psz_path, "%s%s", psz_dir, psz_name );
msg_Dbg( p_this, "autodetected subtitle: %s with priority %d", psz_path, i_prio ); msg_Dbg( p_this,
"autodetected subtitle: %s with priority %d",
psz_path, i_prio );
/* FIXME: a portable wrapper for stat() or access() would be more suited */ /* FIXME: a portable wrapper for stat() or access() would be more suited */
if( ( f = utf8_fopen( psz_path, "rt" ) ) ) if( ( f = utf8_fopen( psz_path, "rt" ) ) )
{ {
fclose( f ); fclose( f );
msg_Dbg( p_this, "autodetected subtitle: %s with priority %d", psz_path, i_prio ); msg_Dbg( p_this,
"autodetected subtitle: %s with priority %d",
psz_path, i_prio );
result[i_sub_count].priority = i_prio; result[i_sub_count].priority = i_prio;
result[i_sub_count].psz_fname = psz_path; result[i_sub_count].psz_fname = psz_path;
result[i_sub_count].psz_ext = strdup(tmp_fname_ext); result[i_sub_count].psz_ext = strdup(tmp_fname_ext);
...@@ -456,7 +461,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, ...@@ -456,7 +461,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
for( i = 0; i < i_sub_count; i++ ) for( i = 0; i < i_sub_count; i++ )
{ {
if( result[i].psz_fname && result[j].psz_fname && if( result[i].psz_fname && result[j].psz_fname &&
!strncasecmp( result[j].psz_fname, result[i].psz_fname, sizeof( result[j].psz_fname) - 4 ) && !strncasecmp( result[j].psz_fname, result[i].psz_fname,
sizeof( result[j].psz_fname) - 4 ) &&
!strcasecmp( result[i].psz_ext, "idx" ) ) !strcasecmp( result[i].psz_ext, "idx" ) )
break; break;
} }
......
...@@ -513,8 +513,6 @@ static void intf_InteractionInit( playlist_t *p_playlist ) ...@@ -513,8 +513,6 @@ static void intf_InteractionInit( playlist_t *p_playlist )
{ {
interaction_t *p_interaction; interaction_t *p_interaction;
msg_Dbg( p_playlist, "initializing interaction system" );
p_interaction = vlc_object_create( VLC_OBJECT( p_playlist ), p_interaction = vlc_object_create( VLC_OBJECT( p_playlist ),
sizeof( interaction_t ) ); sizeof( interaction_t ) );
if( !p_interaction ) if( !p_interaction )
...@@ -544,7 +542,7 @@ static void intf_InteractionSearchInterface( interaction_t *p_interaction ) ...@@ -544,7 +542,7 @@ static void intf_InteractionSearchInterface( interaction_t *p_interaction )
p_list = vlc_list_find( p_interaction, VLC_OBJECT_INTF, FIND_ANYWHERE ); p_list = vlc_list_find( p_interaction, VLC_OBJECT_INTF, FIND_ANYWHERE );
if( !p_list ) if( !p_list )
{ {
msg_Err( p_interaction, "Unable to create module list" ); msg_Err( p_interaction, "unable to create module list" );
return; return;
} }
......
...@@ -119,7 +119,7 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module, ...@@ -119,7 +119,7 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module,
if( p_intf->p_module == NULL ) if( p_intf->p_module == NULL )
{ {
msg_Err( p_intf, "no suitable intf module" ); msg_Err( p_intf, "no suitable interface module" );
vlc_object_destroy( p_intf ); vlc_object_destroy( p_intf );
return NULL; return NULL;
} }
...@@ -160,7 +160,7 @@ int intf_RunThread( intf_thread_t *p_intf ) ...@@ -160,7 +160,7 @@ int intf_RunThread( intf_thread_t *p_intf )
{ {
/* This is the primary intf */ /* This is the primary intf */
/* Run a manager thread, launch the interface, kill the manager */ /* Run a manager thread, launch the interface, kill the manager */
if( vlc_thread_create( p_intf, "manager", Manager, if( vlc_thread_create( p_intf, "manage", Manager,
VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) ) VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
{ {
msg_Err( p_intf, "cannot spawn manager thread" ); msg_Err( p_intf, "cannot spawn manager thread" );
...@@ -189,7 +189,9 @@ int intf_RunThread( intf_thread_t *p_intf ) ...@@ -189,7 +189,9 @@ int intf_RunThread( intf_thread_t *p_intf )
/* Run the interface in a separate thread */ /* Run the interface in a separate thread */
if( !strcmp( p_intf->p_module->psz_object_name, "macosx" ) ) if( !strcmp( p_intf->p_module->psz_object_name, "macosx" ) )
{ {
msg_Err( p_intf, "You cannot run the MacOS X module as an extrainterface. Please read the README.MacOSX.rtf file"); msg_Err( p_intf, "You cannot run the MacOS X module as an "
"extra interface. Please read the "
"README.MacOSX.rtf file");
return VLC_EGENERIC; return VLC_EGENERIC;
} }
if( vlc_thread_create( p_intf, "interface", RunInterface, if( vlc_thread_create( p_intf, "interface", RunInterface,
......
...@@ -122,7 +122,7 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type ) ...@@ -122,7 +122,7 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
break; break;
case VLC_OBJECT_DIALOGS: case VLC_OBJECT_DIALOGS:
i_size = sizeof(intf_thread_t); i_size = sizeof(intf_thread_t);
psz_type = "dialogs provider"; psz_type = "dialogs";
break; break;
case VLC_OBJECT_PLAYLIST: case VLC_OBJECT_PLAYLIST:
i_size = sizeof(playlist_t); i_size = sizeof(playlist_t);
...@@ -170,7 +170,7 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type ) ...@@ -170,7 +170,7 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
break; break;
case VLC_OBJECT_SPU: case VLC_OBJECT_SPU:
i_size = sizeof(spu_t); i_size = sizeof(spu_t);
psz_type = "subpicture unit"; psz_type = "subpicture";
break; break;
case VLC_OBJECT_AOUT: case VLC_OBJECT_AOUT:
i_size = sizeof(aout_instance_t); i_size = sizeof(aout_instance_t);
...@@ -206,11 +206,11 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type ) ...@@ -206,11 +206,11 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
break; break;
case VLC_OBJECT_OPENGL: case VLC_OBJECT_OPENGL:
i_size = sizeof( vout_thread_t ); i_size = sizeof( vout_thread_t );
psz_type = "opengl provider"; psz_type = "opengl";
break; break;
case VLC_OBJECT_ANNOUNCE: case VLC_OBJECT_ANNOUNCE:
i_size = sizeof( announce_handler_t ); i_size = sizeof( announce_handler_t );
psz_type = "announce handler"; psz_type = "announce";
break; break;
case VLC_OBJECT_OSDMENU: case VLC_OBJECT_OSDMENU:
i_size = sizeof( osd_menu_t ); i_size = sizeof( osd_menu_t );
......
...@@ -505,7 +505,7 @@ static int stats_CounterUpdate( stats_handler_t *p_handler, ...@@ -505,7 +505,7 @@ static int stats_CounterUpdate( stats_handler_t *p_handler,
p_counter->i_type != VLC_VAR_INTEGER && p_counter->i_type != VLC_VAR_INTEGER &&
p_counter->i_compute_type != STATS_LAST ) p_counter->i_compute_type != STATS_LAST )
{ {
msg_Err( p_handler, "Unable to compute MIN or MAX for this type"); msg_Err( p_handler, "unable to compute MIN or MAX for this type");
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
...@@ -82,7 +82,7 @@ vlm_t *__vlm_New ( vlc_object_t *p_this ) ...@@ -82,7 +82,7 @@ vlm_t *__vlm_New ( vlc_object_t *p_this )
if( !(p_vlm = vlc_object_find( p_this, VLC_OBJECT_VLM, FIND_ANYWHERE )) ) if( !(p_vlm = vlc_object_find( p_this, VLC_OBJECT_VLM, FIND_ANYWHERE )) )
{ {
msg_Info( p_this, "creating vlm" ); msg_Info( p_this, "creating VLM" );
if( ( p_vlm = vlc_object_create( p_this, VLC_OBJECT_VLM ) ) == NULL ) if( ( p_vlm = vlc_object_create( p_this, VLC_OBJECT_VLM ) ) == NULL )
{ {
vlc_mutex_unlock( lockval.p_address ); vlc_mutex_unlock( lockval.p_address );
...@@ -117,13 +117,13 @@ vlm_t *__vlm_New ( vlc_object_t *p_this ) ...@@ -117,13 +117,13 @@ vlm_t *__vlm_New ( vlc_object_t *p_this )
vlm_message_t *p_message = NULL; vlm_message_t *p_message = NULL;
char *psz_buffer = NULL; char *psz_buffer = NULL;
msg_Dbg( p_this, "loading vlm conf ..." ); msg_Dbg( p_this, "loading VLM configuration" );
asprintf(&psz_buffer, "load %s", psz_vlmconf ); asprintf(&psz_buffer, "load %s", psz_vlmconf );
if( psz_buffer ) if( psz_buffer )
{ {
msg_Dbg( p_this, psz_buffer); msg_Dbg( p_this, psz_buffer);
if( vlm_ExecuteCommand( p_vlm, psz_buffer, &p_message ) ){ if( vlm_ExecuteCommand( p_vlm, psz_buffer, &p_message ) ){
msg_Warn( p_this, "error while loading the vlm conf file" ); msg_Warn( p_this, "error while loading the configuration file" );
} }
vlm_MessageDelete(p_message); vlm_MessageDelete(p_message);
free(psz_buffer); free(psz_buffer);
......
...@@ -97,7 +97,7 @@ static int ACL_Resolve( vlc_object_t *p_this, uint8_t *p_bytes, ...@@ -97,7 +97,7 @@ static int ACL_Resolve( vlc_object_t *p_this, uint8_t *p_bytes,
#endif #endif
default: default:
msg_Err( p_this, "IMPOSSIBLE: unknown address family!" ); msg_Err( p_this, "unknown address family" );
vlc_freeaddrinfo( res ); vlc_freeaddrinfo( res );
return -1; return -1;
} }
...@@ -283,7 +283,7 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path ) ...@@ -283,7 +283,7 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
{ {
if( ferror( file ) ) if( ferror( file ) )
{ {
msg_Err( p_acl->p_owner, "Error reading %s : %s\n", psz_path, msg_Err( p_acl->p_owner, "error reading %s : %s\n", psz_path,
strerror( errno ) ); strerror( errno ) );
goto error; goto error;
} }
...@@ -303,14 +303,14 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path ) ...@@ -303,14 +303,14 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
ptr = strchr( psz_ip, '\n' ); ptr = strchr( psz_ip, '\n' );
if( ptr == NULL ) if( ptr == NULL )
{ {
msg_Warn( p_acl->p_owner, "Skipping overly long line in %s\n", msg_Warn( p_acl->p_owner, "skipping overly long line in %s\n",
psz_path); psz_path);
do do
{ {
fgets( line, sizeof( line ), file ); fgets( line, sizeof( line ), file );
if( ferror( file ) || feof( file ) ) if( ferror( file ) || feof( file ) )
{ {
msg_Err( p_acl->p_owner, "Error reading %s : %s\n", msg_Err( p_acl->p_owner, "error reading %s : %s\n",
psz_path, strerror( errno ) ); psz_path, strerror( errno ) );
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment