cosmetics: comment typo fixes

Originally committed as revision 11232 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent c49e23e2a4
commit 5d81d64175
  1. 2
      libavcodec/h264.c
  2. 8
      libavformat/avformat.h

@ -4153,7 +4153,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
if(h->deblocking_filter == 1 && h0->max_contexts > 1) { if(h->deblocking_filter == 1 && h0->max_contexts > 1) {
if(s->avctx->flags2 & CODEC_FLAG2_FAST) { if(s->avctx->flags2 & CODEC_FLAG2_FAST) {
/* Cheat slightly for speed: /* Cheat slightly for speed:
Dont bother to deblock across slices */ Do not bother to deblock across slices. */
h->deblocking_filter = 2; h->deblocking_filter = 2;
} else { } else {
h0->max_contexts = 1; h0->max_contexts = 1;

@ -198,9 +198,9 @@ typedef struct AVInputFormat {
/** size of private data so that it can be allocated in the wrapper */ /** size of private data so that it can be allocated in the wrapper */
int priv_data_size; int priv_data_size;
/** /**
* tell if a given file has a chance of being parsed by this format. * 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 * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
* so you dont have to check for that unless you need more. * big so you do not have to check for that unless you need more.
*/ */
int (*read_probe)(AVProbeData *); int (*read_probe)(AVProbeData *);
/** read the format header and initialize the AVFormatContext /** 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); AVFormatParameters *ap);
/** /**
* Allocate an AVFormatContext. * 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! * explicitly allocated as well!
*/ */
AVFormatContext *av_alloc_format_context(void); AVFormatContext *av_alloc_format_context(void);

Loading…
Cancel
Save