Commit 22ccb69a authored by David Conrad's avatar David Conrad

Move ebml_id_size()

Originally committed as revision 10350 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ec8f4ad9
...@@ -67,6 +67,11 @@ typedef struct MatroskaMuxContext { ...@@ -67,6 +67,11 @@ typedef struct MatroskaMuxContext {
struct AVMD5 *md5_ctx; struct AVMD5 *md5_ctx;
} MatroskaMuxContext; } MatroskaMuxContext;
static int ebml_id_size(unsigned int id)
{
return (av_log2(id+1)-1)/7+1;
}
static void put_ebml_id(ByteIOContext *pb, unsigned int id) static void put_ebml_id(ByteIOContext *pb, unsigned int id)
{ {
if (id >= 0x3fffff) if (id >= 0x3fffff)
...@@ -78,11 +83,6 @@ static void put_ebml_id(ByteIOContext *pb, unsigned int id) ...@@ -78,11 +83,6 @@ static void put_ebml_id(ByteIOContext *pb, unsigned int id)
put_byte(pb, id); put_byte(pb, id);
} }
static int ebml_id_size(unsigned int id)
{
return (av_log2(id+1)-1)/7+1;
}
/** /**
* Write an EBML size meaning "unknown size" * Write an EBML size meaning "unknown size"
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment