mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fix type in prototype
Originally committed as revision 15108 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
85b5ee2b40
commit
b6fa8a8af8
@ -160,14 +160,14 @@ static const MXFLocalTagPair mxf_local_tag_batch[] = {
|
||||
{ 0x3D06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x01,0x06,0x01,0x00,0x00,0x00,0x00}}, /* Sound Essence Compression */
|
||||
};
|
||||
|
||||
static void mxf_write_uuid(ByteIOContext *pb, enum CodecID type, int value)
|
||||
static void mxf_write_uuid(ByteIOContext *pb, enum MXFMetadataSetType type, int value)
|
||||
{
|
||||
put_buffer(pb, uuid_base, 12);
|
||||
put_be16(pb, type);
|
||||
put_be16(pb, value);
|
||||
}
|
||||
|
||||
static void mxf_write_umid(ByteIOContext *pb, enum CodecID type, int value)
|
||||
static void mxf_write_umid(ByteIOContext *pb, enum MXFMetadataSetType type, int value)
|
||||
{
|
||||
put_buffer(pb, umid_base, 16);
|
||||
mxf_write_uuid(pb, type, value);
|
||||
|
Loading…
Reference in New Issue
Block a user