Mercurial > libavformat.hg
changeset 3844:b597c00051a6 libavformat
fix type in prototype
author | bcoudurier |
---|---|
date | Sun, 31 Aug 2008 03:45:00 +0000 |
parents | b60ab685d415 |
children | c266530d56b4 |
files | mxfenc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mxfenc.c Sun Aug 31 03:42:05 2008 +0000 +++ b/mxfenc.c Sun Aug 31 03:45:00 2008 +0000 @@ -160,14 +160,14 @@ { 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);