Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
b6fa8a8a
Commit
b6fa8a8a
authored
Aug 31, 2008
by
Baptiste Coudurier
Browse files
fix type in prototype
Originally committed as revision 15108 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
85b5ee2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
libavformat/mxfenc.c
View file @
b6fa8a8a
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment