summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-21 14:32:24 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-05-22 14:59:02 +0200
commita6b3471c44fd981d3b33ea9050f78a0bc9494c5e (patch)
tree15fa992cfb494c23d3fd170cb2ef8b3b7a34948d /libavformat/avformat.h
parent696452e4c5d217ca784fcfc5397fd12cc7ff2bd6 (diff)
avformat: add needs_parsing type to enable codec TS use.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index c5d6f5d1f7..19441f8e21 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -574,6 +574,7 @@ enum AVStreamParseType {
AVSTREAM_PARSE_HEADERS, /**< Only parse headers, do not repack. */
AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
AVSTREAM_PARSE_FULL_ONCE, /**< full parsing and repack of the first frame only, only implemented for H.264 currently */
+ AVSTREAM_PARSE_FULL_RAW=MKTAG(0,'R','A','W'), /**< full parsing and repack with timestamp generation for raw */
};
typedef struct AVIndexEntry {