summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-10 18:42:09 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-10 18:42:09 +0000
commit7ce6892373c812e9fff7af2f8107e6ee3d0567b0 (patch)
treea6271df5a1ed1996c7017f5105cc15d6793f628c /libavformat/mov.c
parent06de58d2a862f1a8f536527d1f659170a62ba978 (diff)
misc spelling fixes
Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index a67604b0e0..2c46523373 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -665,9 +665,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
(c->fc->video_codec_id ? codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id
: st->codec->codec_tag != MKTAG('j', 'p', 'e', 'g'))
){
- /* multiple fourcc, we skip jpeg, this isnt correct, we should export it as
- seperate AVStream but this needs a few changes in the mov demuxer, patch
- welcome */
+ /* Multiple fourcc, we skip JPEG. This is not correct, we should
+ * export it as a separate AVStream but this needs a few changes
+ * in the MOV demuxer, patch welcome. */
url_fskip(pb, size - (url_ftell(pb) - start_pos));
continue;
}