Browse code

avformat: remove unnecessary AVStreamParseType enum offset

Signed-off-by: James Almer <jamrial@gmail.com>

James Almer authored on 2017/11/19 02:55:29
Showing 1 changed files
... ...
@@ -785,9 +785,9 @@ enum AVStreamParseType {
785 785
     AVSTREAM_PARSE_HEADERS,    /**< Only parse headers, do not repack. */
786 786
     AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
787 787
     AVSTREAM_PARSE_FULL_ONCE,  /**< full parsing and repack of the first frame only, only implemented for H.264 currently */
788
-    AVSTREAM_PARSE_FULL_RAW=MKTAG(0,'R','A','W'),       /**< full parsing and repack with timestamp and position generation by parser for raw
789
-                                                             this assumes that each packet in the file contains no demuxer level headers and
790
-                                                             just codec level data, otherwise position generation would fail */
788
+    AVSTREAM_PARSE_FULL_RAW,   /**< full parsing and repack with timestamp and position generation by parser for raw
789
+                                    this assumes that each packet in the file contains no demuxer level headers and
790
+                                    just codec level data, otherwise position generation would fail */
791 791
 };
792 792
 
793 793
 typedef struct AVIndexEntry {