comparison avformat.h @ 2815:64cf0a2303ac libavformat

cosmetics: comment typo fixes
author diego
date Sun, 16 Dec 2007 17:22:09 +0000
parents 9d53cc092c55
children 8ac5fe1c5549
comparison
equal deleted inserted replaced
2814:3fa92d78424c 2815:64cf0a2303ac
196 const char *name; 196 const char *name;
197 const char *long_name; 197 const char *long_name;
198 /** size of private data so that it can be allocated in the wrapper */ 198 /** size of private data so that it can be allocated in the wrapper */
199 int priv_data_size; 199 int priv_data_size;
200 /** 200 /**
201 * tell if a given file has a chance of being parsed by this format. 201 * Tell if a given file has a chance of being parsed by this format.
202 * The buffer provided is guranteed to be AVPROBE_PADDING_SIZE bytes big 202 * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
203 * so you dont have to check for that unless you need more. 203 * big so you do not have to check for that unless you need more.
204 */ 204 */
205 int (*read_probe)(AVProbeData *); 205 int (*read_probe)(AVProbeData *);
206 /** read the format header and initialize the AVFormatContext 206 /** read the format header and initialize the AVFormatContext
207 structure. Return 0 if OK. 'ap' if non NULL contains 207 structure. Return 0 if OK. 'ap' if non NULL contains
208 additional paramters. Only used in raw format right 208 additional paramters. Only used in raw format right
569 AVInputFormat *fmt, 569 AVInputFormat *fmt,
570 int buf_size, 570 int buf_size,
571 AVFormatParameters *ap); 571 AVFormatParameters *ap);
572 /** 572 /**
573 * Allocate an AVFormatContext. 573 * Allocate an AVFormatContext.
574 * can be freed with av_free() but dont forget to free everything you 574 * Can be freed with av_free() but do not forget to free everything you
575 * explicitly allocated as well! 575 * explicitly allocated as well!
576 */ 576 */
577 AVFormatContext *av_alloc_format_context(void); 577 AVFormatContext *av_alloc_format_context(void);
578 578
579 /** 579 /**