summaryrefslogtreecommitdiff
path: root/libavformat/matroskaenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/matroskaenc.c')
-rw-r--r--libavformat/matroskaenc.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 194d32082c..55171cba66 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -74,13 +74,9 @@ static int ebml_id_size(unsigned int id)
static void put_ebml_id(ByteIOContext *pb, unsigned int id)
{
- if (id >= 0x3fffff)
- put_byte(pb, id >> 24);
- if (id >= 0x7fff)
- put_byte(pb, id >> 16);
- if (id >= 0xff)
- put_byte(pb, id >> 8);
- put_byte(pb, id);
+ int i = ebml_id_size(id);
+ while (i--)
+ put_byte(pb, id >> (i*8));
}
/**