summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-15 21:31:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-15 21:41:20 +0200
commitefcf8cfa48c84676417d40689e63a37d5190a8ed (patch)
tree697d52e6bf95cb1660fb4a240ef81482277916e2 /libavformat/nut.h
parenta829040c431acc6164d65e2967169aad85a5373e (diff)
parent24ad3ac6a3e20350214e6c3f7a931635f264ae07 (diff)
Merge commit '24ad3ac6a3e20350214e6c3f7a931635f264ae07'
* commit '24ad3ac6a3e20350214e6c3f7a931635f264ae07': nut: Drop doxygen markers Conflicts: libavformat/nut.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index 0c678a51b9..45aa55cd4d 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -41,18 +41,18 @@
#define NUT_MIN_VERSION 2
typedef enum{
- FLAG_KEY = 1, ///<if set, frame is keyframe
- FLAG_EOR = 2, ///<if set, stream has no relevance on presentation. (EOR)
- FLAG_CODED_PTS = 8, ///<if set, coded_pts is in the frame header
- FLAG_STREAM_ID = 16, ///<if set, stream_id is coded in the frame header
- FLAG_SIZE_MSB = 32, ///<if set, data_size_msb is at frame header, otherwise data_size_msb is 0
- FLAG_CHECKSUM = 64, ///<if set, the frame header contains a checksum
- FLAG_RESERVED = 128, ///<if set, reserved_count is coded in the frame header
- FLAG_SM_DATA = 256, ///<if set, side / meta data is stored in the frame header.
- FLAG_HEADER_IDX =1024, ///<If set, header_idx is coded in the frame header.
- FLAG_MATCH_TIME =2048, ///<If set, match_time_delta is coded in the frame header
- FLAG_CODED =4096, ///<if set, coded_flags are stored in the frame header
- FLAG_INVALID =8192, ///<if set, frame_code is invalid
+ FLAG_KEY = 1, // if set, frame is keyframe
+ FLAG_EOR = 2, // if set, stream has no relevance on presentation. (EOR)
+ FLAG_CODED_PTS = 8, // if set, coded_pts is in the frame header
+ FLAG_STREAM_ID = 16, // if set, stream_id is coded in the frame header
+ FLAG_SIZE_MSB = 32, // if set, data_size_msb is at frame header, otherwise data_size_msb is 0
+ FLAG_CHECKSUM = 64, // if set, the frame header contains a checksum
+ FLAG_RESERVED = 128, // if set, reserved_count is coded in the frame header
+ FLAG_SM_DATA = 256, // if set, side / meta data is stored in the frame header.
+ FLAG_HEADER_IDX =1024, // If set, header_idx is coded in the frame header.
+ FLAG_MATCH_TIME =2048, // If set, match_time_delta is coded in the frame header
+ FLAG_CODED =4096, // if set, coded_flags are stored in the frame header
+ FLAG_INVALID =8192, // if set, frame_code is invalid
} Flag;
typedef struct Syncpoint {
@@ -96,7 +96,7 @@ typedef struct NUTContext {
FrameCode frame_code[256];
uint8_t header_len[128];
const uint8_t *header[128];
- uint64_t next_startcode; ///< stores the next startcode if it has already been parsed but the stream is not seekable
+ uint64_t next_startcode; // stores the next startcode if it has already been parsed but the stream is not seekable
StreamContext *stream;
ChapterContext *chapter;
unsigned int max_distance;