diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:42:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:42:09 +0000 |
commit | 7ce6892373c812e9fff7af2f8107e6ee3d0567b0 (patch) | |
tree | a6271df5a1ed1996c7017f5105cc15d6793f628c /libavformat | |
parent | 06de58d2a862f1a8f536527d1f659170a62ba978 (diff) | |
download | ffmpeg-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.c | 6 | ||||
-rw-r--r-- | libavformat/nutenc.c | 6 |
2 files changed, 6 insertions, 6 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; } diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 0ec4b1fb33..ae1bbb59a8 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; } |