mirror of https://git.ffmpeg.org/ffmpeg.git
Move ebml_id_size()
Originally committed as revision 10350 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ec8f4ad909
commit
22ccb69a7f
|
@ -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)
|
||||||
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"
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue