comparison parser.h @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 04423b2f6e0b
children
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
59 int buf_size); 59 int buf_size);
60 void ff_parse_close(AVCodecParserContext *s); 60 void ff_parse_close(AVCodecParserContext *s);
61 void ff_parse1_close(AVCodecParserContext *s); 61 void ff_parse1_close(AVCodecParserContext *s);
62 62
63 /** 63 /**
64 * Fetches timestamps for a specific byte within the current access unit. 64 * Fetch timestamps for a specific byte within the current access unit.
65 * @param off byte position within the access unit 65 * @param off byte position within the access unit
66 * @param remove Found timestamps will be removed if set to 1, kept if set to 0. 66 * @param remove Found timestamps will be removed if set to 1, kept if set to 0.
67 */ 67 */
68 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove); 68 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove);
69 69