summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-18 14:55:29 -0300
committerJames Almer <jamrial@gmail.com>2017-11-18 20:17:05 -0300
commit936a4c04b9fda79d824ab6c95591425b37e4086f (patch)
tree61eb81d52482dacab4fd5d5fe052fa47779b26f2 /libavformat/avformat.h
parentc3b5ea753017d1acaecdbc4dc09dae16e53a9b91 (diff)
downloadffmpeg-936a4c04b9fda79d824ab6c95591425b37e4086f.tar.gz
avformat: remove unnecessary AVStreamParseType enum offset
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 3c6775d0f6..322210fae0 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -785,9 +785,9 @@ 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 and position generation by parser for raw
- this assumes that each packet in the file contains no demuxer level headers and
- just codec level data, otherwise position generation would fail */
+ AVSTREAM_PARSE_FULL_RAW, /**< full parsing and repack with timestamp and position generation by parser for raw
+ this assumes that each packet in the file contains no demuxer level headers and
+ just codec level data, otherwise position generation would fail */
};
typedef struct AVIndexEntry {