changeset 6995:0e15e9324df2 libavcodec

ff_fetch_timestamp() prototype
author michael
date Tue, 03 Jun 2008 03:12:56 +0000
parents 5a5ded44808a
children 9234c354dd3c
files parser.h
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/parser.h	Tue Jun 03 02:43:17 2008 +0000
+++ b/parser.h	Tue Jun 03 03:12:56 2008 +0000
@@ -59,4 +59,11 @@
 void ff_parse_close(AVCodecParserContext *s);
 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
+ */
+void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove);
+
 #endif /* FFMPEG_PARSER_H */