]> git.sesse.net Git - ffmpeg/commitdiff
message typo fixes
authorDiego Biurrun <diego@biurrun.de>
Thu, 5 Oct 2006 18:15:17 +0000 (18:15 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 5 Oct 2006 18:15:17 +0000 (18:15 +0000)
Originally committed as revision 6564 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpegaudiodec.c

index b7fe2e9219c418a113b22de371ad673eadec7754..84cd42569c341a7736a4ec7f7cc303f343a24638 100644 (file)
@@ -2534,7 +2534,7 @@ retry:
     if(ff_mpa_check_header(header) < 0){
         buf++;
 //        buf_size--;
-        av_log(avctx, AV_LOG_ERROR, "header missing skiping one byte\n");
+        av_log(avctx, AV_LOG_ERROR, "Header missing skipping one byte.\n");
         goto retry;
     }
 
@@ -2574,7 +2574,7 @@ retry:
     if(out_size>=0)
         *data_size = out_size;
     else
-        av_log(avctx, AV_LOG_DEBUG, "Error while decoding mpeg audio frame\n"); //FIXME return -1 / but also return the number of bytes consumed
+        av_log(avctx, AV_LOG_DEBUG, "Error while decoding MPEG audio frame.\n"); //FIXME return -1 / but also return the number of bytes consumed
     s->frame_size = 0;
     return buf_size;
 }