]> git.sesse.net Git - vlc/blobdiff - src/input/decoder.c
* "synch" -> "sync" (gniihiihiimineeeeerveuh)
[vlc] / src / input / decoder.c
index 24499fa793848c485022930b272bb099e207f8b9..f5c2e7c43fbf8738fb5d23c3a92218ccebd98fb1 100644 (file)
@@ -134,7 +134,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input,
                  "VLC probably does not support this sound or video format.",
                  (char*)&p_dec->fmt_in.i_codec );
         intf_UserFatal( p_dec, VLC_FALSE, _("No suitable decoder module "
-            "for format"), _("VLC probably does not support the ā€œ%4.4sā€ "
+            "for format"), _("VLC probably does not support the \"%4.4s\" "
             "audio or video format. Unfortunately there is no way for you "
             "to fix this."), (char*)&p_dec->fmt_in.i_codec );
 
@@ -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;
             }
         }