diff options
author | David Conrad <lessen42@gmail.com> | 2007-09-05 00:25:42 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2007-09-05 00:25:42 +0000 |
commit | e3cd80cdac525d092e0c1c3ed745d378041136ed (patch) | |
tree | de28b4f53dfb828720329f1f15e3e22f0328c5b8 /libavformat/matroskaenc.c | |
parent | 7f8582dfc635334de7f6fc10c78d45a02dfd1104 (diff) | |
download | ffmpeg-e3cd80cdac525d092e0c1c3ed745d378041136ed.tar.gz |
Doxygenify comments
Originally committed as revision 10375 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskaenc.c')
-rw-r--r-- | libavformat/matroskaenc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 7fba6af3ae..a167ccb25a 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -73,15 +73,15 @@ typedef struct MatroskaMuxContext { } MatroskaMuxContext; -// 2 bytes * 3 for EBML IDs, 3 1-byte EBML lengths, 8 bytes for 64 bit -// offset, 4 bytes for target EBML ID +/** 2 bytes * 3 for EBML IDs, 3 1-byte EBML lengths, 8 bytes for 64 bit + * offset, 4 bytes for target EBML ID */ #define MAX_SEEKENTRY_SIZE 21 -// per-cuepoint-track - 3 1-byte EBML IDs, 3 1-byte EBML sizes, 2 -// 8-byte uint max +/** per-cuepoint-track - 3 1-byte EBML IDs, 3 1-byte EBML sizes, 2 + * 8-byte uint max */ #define MAX_CUETRACKPOS_SIZE 22 -// per-cuepoint - 2 1-byte EBML IDs, 2 1-byte EBML sizes, 8-byte uint max +/** per-cuepoint - 2 1-byte EBML IDs, 2 1-byte EBML sizes, 8-byte uint max */ #define MAX_CUEPOINT_SIZE(num_tracks) 12 + MAX_CUETRACKPOS_SIZE*num_tracks |