diff options
author | David Conrad <lessen42@gmail.com> | 2007-09-05 00:25:04 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2007-09-05 00:25:04 +0000 |
commit | 5045da831bb91ed094f2ff48bb424eb7535f6c32 (patch) | |
tree | 73ad7ceb6d58be269fb479762d8fb8facf359ce1 /libavformat/matroskaenc.c | |
parent | 5b66fc16af83cd2df0b1548570b3d810ddfe05b0 (diff) | |
download | ffmpeg-5045da831bb91ed094f2ff48bb424eb7535f6c32.tar.gz |
Clarify comments
Originally committed as revision 10360 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskaenc.c')
-rw-r--r-- | libavformat/matroskaenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 624b1de189..93b62f8d8b 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -191,7 +191,7 @@ static void put_ebml_string(ByteIOContext *pb, unsigned int elementid, const cha * Writes a void element of a given size. Useful for reserving space in the file to be * written to later. * - * @param size The amount of space to reserve, which must be at least 2. + * @param size The number of bytes to reserve, which must be at least 2. */ static void put_ebml_void(ByteIOContext *pb, uint64_t size) { @@ -240,7 +240,7 @@ static void put_xiph_size(ByteIOContext *pb, int size) * If a maximum number of elements is specified, enough space will be reserved at * the current file location to write a seek head of that size. * - * @param segment_offset the absolute offset into the file that the segment begins + * @param segment_offset The absolute offset to the position in the file where the segment begins * @param numelements the maximum number of elements that will be indexed by this * seek head, 0 if unlimited. */ |