changeset 20696:16fdf17a03d4

better wording for "workarounding"
author kraymer
date Sun, 05 Nov 2006 16:49:09 +0000
parents c44d7b2316e6
children 520a41b09719
files help/help_mp-en.h libmpdemux/demux_avi.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/help/help_mp-en.h	Sun Nov 05 16:36:02 2006 +0000
+++ b/help/help_mp-en.h	Sun Nov 05 16:49:09 2006 +0000
@@ -566,7 +566,7 @@
 #define MSGTR_TooManyVideoInBuffer "\nToo many video packets in the buffer: (%d in %d bytes).\n"
 #define MSGTR_MaybeNI "Maybe you are playing a non-interleaved stream/file or the codec failed?\n" \
 		      "For AVI files, try to force non-interleaved mode with the -ni option.\n"
-#define MSGTR_WorkaroundingnBlockAlignHeaderBug "AVI: Workarounding CBR-MP3 nBlockAlign header bug!\n"
+#define MSGTR_WorkAroundBlockAlignHeaderBug "AVI: Working around CBR-MP3 nBlockAlign header bug!\n"
 #define MSGTR_SwitchToNi "\nBadly interleaved AVI file detected - switching to -ni mode...\n"
 #define MSGTR_InvalidAudioStreamNosound "AVI: invalid audio stream ID: %d - ignoring (nosound)\n"
 #define MSGTR_InvalidAudioStreamUsingDefault "AVI: invalid video stream ID: %d - ignoring (using default)\n"
--- a/libmpdemux/demux_avi.c	Sun Nov 05 16:36:02 2006 +0000
+++ b/libmpdemux/demux_avi.c	Sun Nov 05 16:49:09 2006 +0000
@@ -54,7 +54,7 @@
 	    // workaround old mencoder's bug:
 	    if(sh->audio.dwSampleSize==1 && sh->audio.dwScale==1 &&
 	       (sh->wf->nBlockAlign==1152 || sh->wf->nBlockAlign==576)){
-		mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_WorkaroundingnBlockAlignHeaderBug);
+		mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MSGTR_WorkAroundBlockAlignHeaderBug);
 		priv->audio_block_size=1;
 	    }
 	  }