diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-16 17:22:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-16 17:22:09 +0000 |
commit | 5d81d6417567d4194c8ec218aaf88f665e3ac195 (patch) | |
tree | 5df0bc27770a901481d40c4fe2a381affb31d8a7 | |
parent | c49e23e2a4e238fd527295513985dfc40cb9b487 (diff) | |
download | ffmpeg-5d81d6417567d4194c8ec218aaf88f665e3ac195.tar.gz |
cosmetics: comment typo fixes
Originally committed as revision 11232 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 | ||||
-rw-r--r-- | libavformat/avformat.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 2231c1e33a..263a66d68e 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4153,7 +4153,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ if(h->deblocking_filter == 1 && h0->max_contexts > 1) { if(s->avctx->flags2 & CODEC_FLAG2_FAST) { /* Cheat slightly for speed: - Dont bother to deblock across slices */ + Do not bother to deblock across slices. */ h->deblocking_filter = 2; } else { h0->max_contexts = 1; diff --git a/libavformat/avformat.h b/libavformat/avformat.h index bc6f3f1179..ad8dc7d6aa 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -198,9 +198,9 @@ typedef struct AVInputFormat { /** size of private data so that it can be allocated in the wrapper */ int priv_data_size; /** - * tell if a given file has a chance of being parsed by this format. - * The buffer provided is guranteed to be AVPROBE_PADDING_SIZE bytes big - * so you dont have to check for that unless you need more. + * Tell if a given file has a chance of being parsed by this format. + * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes + * big so you do not have to check for that unless you need more. */ int (*read_probe)(AVProbeData *); /** read the format header and initialize the AVFormatContext @@ -571,7 +571,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, AVFormatParameters *ap); /** * Allocate an AVFormatContext. - * can be freed with av_free() but dont forget to free everything you + * Can be freed with av_free() but do not forget to free everything you * explicitly allocated as well! */ AVFormatContext *av_alloc_format_context(void); |