Mercurial > libavformat.hg
changeset 3985:acb0ad37d372 libavformat
matroskaenc: remove useless mkv_block_size() function
author | aurel |
---|---|
date | Sat, 04 Oct 2008 22:41:58 +0000 |
parents | 46fc6e792241 |
children | 2a7d8acde051 |
files | matroskaenc.c |
diffstat | 1 files changed, 2 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/matroskaenc.c Sat Oct 04 22:26:43 2008 +0000 +++ b/matroskaenc.c Sat Oct 04 22:41:58 2008 +0000 @@ -710,15 +710,9 @@ 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 @@ "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);