summaryrefslogtreecommitdiffstats
path: root/libavformat
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
parent06de58d2a862f1a8f536527d1f659170a62ba978 (diff)
downloadffmpeg-streaming-7ce6892373c812e9fff7af2f8107e6ee3d0567b0.zip
ffmpeg-streaming-7ce6892373c812e9fff7af2f8107e6ee3d0567b0.tar.gz
misc spelling fixes
Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c6
-rw-r--r--libavformat/nutenc.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index a67604b..2c46523 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;
}
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c
index 0ec4b1f..ae1bbb5 100644
--- a/libavformat/nutenc.c
+++ b/libavformat/nutenc.c
@@ -69,7 +69,7 @@ static int find_expected_header(AVCodecContext *c, int size, int key_frame, uint
header |= 1<<16; //no crc
AV_WB32(out, header);
if(size <= 0)
- return 2; //we guess theres no crc, if there is one the user clearly doesnt care about overhead
+ return 2; //we guess there is no crc, if there is one the user clearly does not care about overhead
if(bitrate_index == 30)
return -1; //something is wrong ...
@@ -78,8 +78,8 @@ static int find_expected_header(AVCodecContext *c, int size, int key_frame, uint
header |= (bitrate_index&1)<<9;
return 2; //FIXME actually put the needed ones in build_elision_headers()
- return 3; //we guess that the private bit isnt set
-//FIXME the above asumtations should be checked, if these turn out false too often something should be done
+ return 3; //we guess that the private bit is not set
+//FIXME the above assumptions should be checked, if these turn out false too often something should be done
}
return 0;
}
OpenPOWER on IntegriCloud