]> git.sesse.net Git - vlc/commitdiff
* "synch" -> "sync" (gniihiihiimineeeeerveuh)
authorSam Hocevar <sam@videolan.org>
Thu, 21 Sep 2006 15:51:31 +0000 (15:51 +0000)
committerSam Hocevar <sam@videolan.org>
Thu, 21 Sep 2006 15:51:31 +0000 (15:51 +0000)
src/input/decoder.c
src/input/input.c

index b2c11b831b1d249f849e6ff9f2aa2a41d52ba562..f5c2e7c43fbf8738fb5d23c3a92218ccebd98fb1 100644 (file)
@@ -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;
             }
         }
index 26c85aa325a7bdcb33dee35c30ad545bc7fe9658..2bc4de8bf57e80faa8f0cc17a910b9cb9f16df55 100644 (file)
@@ -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 );