Commit e4780563 authored by diego's avatar diego

small spelling/wording fixes


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13645 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9bc5a4ce
...@@ -41,12 +41,12 @@ struct MpegEncContext; ...@@ -41,12 +41,12 @@ struct MpegEncContext;
typedef struct ParseContext1{ typedef struct ParseContext1{
ParseContext pc; ParseContext pc;
/* XXX/FIXME PC1 vs. PC */ /* XXX/FIXME PC1 vs. PC */
/* MPEG2 specific */ /* MPEG-2-specific */
AVRational frame_rate; AVRational frame_rate;
int progressive_sequence; int progressive_sequence;
int width, height; int width, height;
/* XXX: suppress that, needed by MPEG4 */ /* XXX: suppress that, needed by MPEG-4 */
struct MpegEncContext *enc; struct MpegEncContext *enc;
int first_picture; int first_picture;
} ParseContext1; } ParseContext1;
...@@ -61,8 +61,8 @@ void ff_parse1_close(AVCodecParserContext *s); ...@@ -61,8 +61,8 @@ void ff_parse1_close(AVCodecParserContext *s);
/** /**
* Fetches timestamps for a specific byte within the current access unit. * Fetches timestamps for a specific byte within the current access unit.
* @param off byte position within the access unit. * @param off byte position within the access unit
* @param remove if 1 then found timestamps will be removed, if 0 they will not * @param remove Found timestamps will be removed if set to 1, kept if set to 0.
*/ */
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove); void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment