diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-07 14:09:20 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-07 14:09:20 +0000 |
commit | e42dba481f6e552539ed8ce1a164024f68667943 (patch) | |
tree | 1bd9fca6580e24eb697a145eab31d487a7645ba9 /libavformat | |
parent | 911406f2c476c8e8fcd0fdf997f071f925cd4a32 (diff) | |
download | ffmpeg-e42dba481f6e552539ed8ce1a164024f68667943.tar.gz |
typos/grammar
Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 4 | ||||
-rw-r--r-- | libavformat/http.c | 4 | ||||
-rw-r--r-- | libavformat/mtv.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index eb8c4e1534..1d811f324f 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -204,7 +204,7 @@ typedef struct AVInputFormat { int (*read_probe)(AVProbeData *); /** read the format header and initialize the AVFormatContext structure. Return 0 if OK. 'ap' if non NULL contains - additionnal paramters. Only used in raw format right + additional paramters. Only used in raw format right now. 'av_new_stream' should be called to create new streams. */ int (*read_header)(struct AVFormatContext *, AVFormatParameters *ap); @@ -526,7 +526,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr, * @param filename filename to open. * @param fmt if non NULL, force the file format to use * @param buf_size optional buffer size (zero if default is OK) - * @param ap additionnal parameters needed when opening the file (NULL if default) + * @param ap additional parameters needed when opening the file (NULL if default) * @return 0 if OK. AVERROR_xxx otherwise. */ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, diff --git a/libavformat/http.c b/libavformat/http.c index e057d6efe9..b28a56f7ea 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -24,8 +24,8 @@ #include "base64.h" -/* XXX: POST protocol is not completly implemented because ffmpeg use - only a subset of it */ +/* XXX: POST protocol is not completely implemented because ffmpeg uses + only a subset of it. */ //#define DEBUG diff --git a/libavformat/mtv.c b/libavformat/mtv.c index 7a68ea97f3..55800867e8 100644 --- a/libavformat/mtv.c +++ b/libavformat/mtv.c @@ -89,7 +89,7 @@ static int mtv_read_header(AVFormatContext *s, AVFormatParameters *ap) /* FIXME Add sanity check here */ - /* first packet is allways audio*/ + /* first packet is always audio*/ mtv->audio_packet_count = 1; |