[FFmpeg-cvslog] r11232 - in trunk: libavcodec/h264.c libavformat/avformat.h
diego
subversion
Sun Dec 16 18:22:10 CET 2007
Author: diego
Date: Sun Dec 16 18:22:09 2007
New Revision: 11232
Log:
cosmetics: comment typo fixes
Modified:
trunk/libavcodec/h264.c
trunk/libavformat/avformat.h
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c (original)
+++ trunk/libavcodec/h264.c Sun Dec 16 18:22:09 2007
@@ -4153,7 +4153,7 @@ static int decode_slice_header(H264Conte
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;
Modified: trunk/libavformat/avformat.h
==============================================================================
--- trunk/libavformat/avformat.h (original)
+++ trunk/libavformat/avformat.h Sun Dec 16 18:22:09 2007
@@ -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 *
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);
More information about the ffmpeg-cvslog
mailing list