From 68cb6a3aff01d9da486f1dc004780d2e7f9a4401 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Thu, 21 Sep 2006 15:51:31 +0000 Subject: [PATCH] * "synch" -> "sync" (gniihiihiimineeeeerveuh) --- src/input/decoder.c | 4 ++-- src/input/input.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/input/decoder.c b/src/input/decoder.c index b2c11b831b..f5c2e7c43f 100644 --- a/src/input/decoder.c +++ b/src/input/decoder.c @@ -589,13 +589,13 @@ static int DecoderDecode( decoder_t *p_dec, block_t *p_block ) if( p_dec->p_owner->p_sout->i_out_pace_nocontrol > 0 && p_dec->p_owner->p_input->b_out_pace_control ) { - msg_Dbg( p_dec, "switching to synch mode" ); + msg_Dbg( p_dec, "switching to sync mode" ); p_dec->p_owner->p_input->b_out_pace_control = VLC_FALSE; } else if( p_dec->p_owner->p_sout->i_out_pace_nocontrol <= 0 && !p_dec->p_owner->p_input->b_out_pace_control ) { - msg_Dbg( p_dec, "switching to asynch mode" ); + msg_Dbg( p_dec, "switching to async mode" ); p_dec->p_owner->p_input->b_out_pace_control = VLC_TRUE; } } diff --git a/src/input/input.c b/src/input/input.c index 26c85aa325..2bc4de8bf5 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -1008,7 +1008,7 @@ static int Init( input_thread_t * p_input, vlc_bool_t b_quick ) } msg_Dbg( p_input, "starting in %s mode", - p_input->b_out_pace_control ? "asynch" : "synch" ); + p_input->b_out_pace_control ? "async" : "sync" ); } } @@ -1270,7 +1270,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type, } if( f_pos < 0.0 ) f_pos = 0.0; if( f_pos > 1.0 ) f_pos = 1.0; - /* Reset the decoders states and clock synch (before calling the demuxer */ + /* Reset the decoders states and clock sync (before calling the demuxer */ es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR ); input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE ); if( demux2_Control( p_input->input.p_demux, DEMUX_SET_POSITION, @@ -1308,7 +1308,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type, } if( i_time < 0 ) i_time = 0; - /* Reset the decoders states and clock synch (before calling the demuxer */ + /* Reset the decoders states and clock sync (before calling the demuxer */ es_out_Control( p_input->p_es_out, ES_OUT_RESET_PCR ); input_EsOutDiscontinuity( p_input->p_es_out, VLC_FALSE ); -- 2.39.2