comparison parser.h @ 6996:9234c354dd3c libavcodec

small spelling/wording fixes
author diego
date Tue, 03 Jun 2008 11:56:09 +0000
parents 0e15e9324df2
children c4a4495715dd
comparison
equal deleted inserted replaced
6995:0e15e9324df2 6996:9234c354dd3c
39 struct MpegEncContext; 39 struct MpegEncContext;
40 40
41 typedef struct ParseContext1{ 41 typedef struct ParseContext1{
42 ParseContext pc; 42 ParseContext pc;
43 /* XXX/FIXME PC1 vs. PC */ 43 /* XXX/FIXME PC1 vs. PC */
44 /* MPEG2 specific */ 44 /* MPEG-2-specific */
45 AVRational frame_rate; 45 AVRational frame_rate;
46 int progressive_sequence; 46 int progressive_sequence;
47 int width, height; 47 int width, height;
48 48
49 /* XXX: suppress that, needed by MPEG4 */ 49 /* XXX: suppress that, needed by MPEG-4 */
50 struct MpegEncContext *enc; 50 struct MpegEncContext *enc;
51 int first_picture; 51 int first_picture;
52 } ParseContext1; 52 } ParseContext1;
53 53
54 #define END_NOT_FOUND (-100) 54 #define END_NOT_FOUND (-100)
59 void ff_parse_close(AVCodecParserContext *s); 59 void ff_parse_close(AVCodecParserContext *s);
60 void ff_parse1_close(AVCodecParserContext *s); 60 void ff_parse1_close(AVCodecParserContext *s);
61 61
62 /** 62 /**
63 * Fetches timestamps for a specific byte within the current access unit. 63 * Fetches timestamps for a specific byte within the current access unit.
64 * @param off byte position within the access unit. 64 * @param off byte position within the access unit
65 * @param remove if 1 then found timestamps will be removed, if 0 they will not 65 * @param remove Found timestamps will be removed if set to 1, kept if set to 0.
66 */ 66 */
67 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove); 67 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove);
68 68
69 #endif /* FFMPEG_PARSER_H */ 69 #endif /* FFMPEG_PARSER_H */