[FFmpeg-cvslog] r20455 - trunk/libavformat/mtv.c

reynaldo subversion
Thu Nov 5 03:04:21 CET 2009


Author: reynaldo
Date: Thu Nov  5 03:04:21 2009
New Revision: 20455

Log:
Corrects two typos

Modified:
   trunk/libavformat/mtv.c

Modified: trunk/libavformat/mtv.c
==============================================================================
--- trunk/libavformat/mtv.c	Thu Nov  5 02:59:07 2009	(r20454)
+++ trunk/libavformat/mtv.c	Thu Nov  5 03:04:21 2009	(r20455)
@@ -40,7 +40,7 @@ typedef struct MTVDemuxContext {
     unsigned int file_size;         ///< filesize, not always right
     unsigned int segments;          ///< number of 512 byte segments
     unsigned int audio_identifier;  ///< 'MP3' on all files I have seen
-    unsigned int audio_br;          ///< bitrate of audio chanel (mp3)
+    unsigned int audio_br;          ///< bitrate of audio channel (mp3)
     unsigned int img_colorfmt;      ///< frame colorfmt rgb 565/555
     unsigned int img_bpp;           ///< frame bits per pixel
     unsigned int img_width;         //
@@ -71,7 +71,7 @@ static int mtv_probe(AVProbeData *p)
     }
 
     if(p->buf[51] != 16)
-        return AVPROBE_SCORE_MAX/4; // But we are going to assume 16bbp anyway ..
+        return AVPROBE_SCORE_MAX/4; // But we are going to assume 16bpp anyway ..
 
     return AVPROBE_SCORE_MAX;
 }



More information about the ffmpeg-cvslog mailing list