summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-02-08 09:39:19 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-02-08 09:39:19 +0000
commit425c9962b2ecffe3e2efe2cc35e04c53cee0e8ef (patch)
tree1907420d8927d09153b70eeee17867abd3fd2464 /libavformat
parent8e2fd8e1d424f3dda8b1966733a32c3842008896 (diff)
fix doxygen
Originally committed as revision 17049 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
-rw-r--r--libavformat/mxfenc.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index d4308fc008..5b9d9c20ea 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -125,7 +125,7 @@ typedef struct MOVStreamContext {
int *keyframes;
int time_scale;
int time_rate;
- int time_offset; /// time offset of the first edit list entry
+ int time_offset; ///< time offset of the first edit list entry
int current_sample;
unsigned int bytes_per_frame;
unsigned int samples_per_frame;
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 361c52da89..e38f452238 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -55,7 +55,7 @@ typedef struct {
typedef struct {
uint8_t flags;
uint64_t offset;
- unsigned slice_offset; // offset of audio slice
+ unsigned slice_offset; ///< offset of audio slice
} MXFIndexEntry;
typedef struct {
@@ -118,7 +118,7 @@ typedef struct MXFContext {
MXFIndexEntry *index_entries;
unsigned edit_units_count;
uint64_t timestamp; ///< timestamp, as year(16),month(8),day(8),hour(8),minutes(8),msec/4(8)
- uint8_t slice_count; /// index slice count minus 1 (1 if no audio, 0 otherwise)
+ uint8_t slice_count; ///< index slice count minus 1 (1 if no audio, 0 otherwise)
} MXFContext;
static const uint8_t uuid_base[] = { 0xAD,0xAB,0x44,0x24,0x2f,0x25,0x4d,0xc7,0x92,0xff,0x29,0xbd };