diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-10-04 22:41:58 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-10-04 22:41:58 +0000 |
commit | 8401c5140719e66fcf220a1ddd2e89b9dda672b3 (patch) | |
tree | 408d4efdbf1b9b599548615b7fe95eed3e20199e | |
parent | 7ccc636f03189f1f1b68ee812fb8f965fd21bfb0 (diff) | |
download | ffmpeg-8401c5140719e66fcf220a1ddd2e89b9dda672b3.tar.gz |
matroskaenc: remove useless mkv_block_size() function
Originally committed as revision 15558 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/matroskaenc.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 5deb8deeae..22c5dc06ec 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -710,15 +710,9 @@ static int mkv_write_header(AVFormatContext *s) return 0; } -static int mkv_block_size(AVPacket *pkt) -{ - int size = 4; // track num + timecode + flags - return size + pkt->size; -} - static int mkv_blockgroup_size(AVPacket *pkt) { - int size = mkv_block_size(pkt); + int size = pkt->size + 4; size += ebml_num_size(size); size += 2; // EBML ID for block and block duration size += 8; // max size of block duration @@ -736,7 +730,7 @@ static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket * "pts %" PRId64 ", dts %" PRId64 ", duration %d, flags %d\n", url_ftell(pb), pkt->size, pkt->pts, pkt->dts, pkt->duration, flags); put_ebml_id(pb, blockid); - put_ebml_num(pb, mkv_block_size(pkt), 0); + put_ebml_num(pb, pkt->size+4, 0); put_byte(pb, 0x80 | (pkt->stream_index + 1)); // this assumes stream_index is less than 126 put_be16(pb, pkt->pts - mkv->cluster_pts); put_byte(pb, flags); |