summaryrefslogtreecommitdiff
path: root/libavcodec/parser.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-06-03 11:56:09 +0000
committerDiego Biurrun <diego@biurrun.de>2008-06-03 11:56:09 +0000
commite85754cc3641ebd7f3f9e47d66c033d2e279791d (patch)
tree441c14c1902cd4386c64239fba68f3ae5f368a8a /libavcodec/parser.h
parentee3509d94e0baf7c42095723e62dd35bb1054f91 (diff)
small spelling/wording fixes
Originally committed as revision 13645 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/parser.h')
-rw-r--r--libavcodec/parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/parser.h b/libavcodec/parser.h
index 62d93ffed1..80ee6894e0 100644
--- a/libavcodec/parser.h
+++ b/libavcodec/parser.h
@@ -41,12 +41,12 @@ struct MpegEncContext;
typedef struct ParseContext1{
ParseContext pc;
/* XXX/FIXME PC1 vs. PC */
- /* MPEG2 specific */
+ /* MPEG-2-specific */
AVRational frame_rate;
int progressive_sequence;
int width, height;
- /* XXX: suppress that, needed by MPEG4 */
+ /* XXX: suppress that, needed by MPEG-4 */
struct MpegEncContext *enc;
int first_picture;
} ParseContext1;
@@ -61,8 +61,8 @@ void ff_parse1_close(AVCodecParserContext *s);
/**
* Fetches timestamps for a specific byte within the current 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 off byte position within the access unit
+ * @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);