summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-15 16:15:47 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-15 16:15:47 +0000
commitbd1071363648638a1a2d958edb70e8ca83ec4138 (patch)
treef8de9e326f2587a1216b3378c7ac0c559ec2fe32 /libavformat
parentbee972eeaddbcd92d8bc4823bd676fe19fa0e96f (diff)
typo fixes
Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/nutdec.c2
-rw-r--r--libavformat/rtpdec.c2
-rw-r--r--libavformat/utils.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 4026c65495..186e308a72 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -111,7 +111,7 @@ static uint64_t find_any_startcode(ByteIOContext *bc, int64_t pos){
uint64_t state=0;
if(pos >= 0)
- url_fseek(bc, pos, SEEK_SET); //note, this may fail if the stream is not seekable, but that should not matter, as in this case we simply start where we are currently
+ url_fseek(bc, pos, SEEK_SET); //note, this may fail if the stream is not seekable, but that should not matter, as in this case we simply start where we currently are
while(!url_feof(bc)){
state= (state<<8) | get_byte(bc);
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index 7bdfca30a5..20e162e948 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -318,7 +318,7 @@ static int rtp_parse_mp4_au(RTPDemuxContext *s, const uint8_t *buf)
if (infos == NULL)
return -1;
- /* decode the first 2 bytes where are stored the AUHeader sections
+ /* decode the first 2 bytes where the AUHeader sections are stored
length in bits */
au_headers_length = AV_RB16(buf);
diff --git a/libavformat/utils.c b/libavformat/utils.c
index b37db35b88..4620e2cbaf 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1990,7 +1990,7 @@ int av_find_stream_info(AVFormatContext *ic)
count++;
}
- // close codecs which where opened in try_decode_frame()
+ // close codecs which were opened in try_decode_frame()
for(i=0;i<ic->nb_streams;i++) {
st = ic->streams[i];
if(st->codec->codec)