diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2009-11-05 02:04:21 +0000 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2009-11-05 02:04:21 +0000 |
commit | 87e76ae0bddc725f513bcd4797b10de6cf8bb69c (patch) | |
tree | 12bad230e0f0832d6db8fbca900dc3e4add7a520 /libavformat | |
parent | a8e1cbaf18bc291f3ceb230582e2d84076e3a1fd (diff) | |
download | ffmpeg-87e76ae0bddc725f513bcd4797b10de6cf8bb69c.tar.gz |
Corrects two typos
Originally committed as revision 20455 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mtv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mtv.c b/libavformat/mtv.c index 0c35b8121e..8d08b792f1 100644 --- a/libavformat/mtv.c +++ b/libavformat/mtv.c @@ -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; } |