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
f05773ea
Commit
f05773ea
authored
Aug 31, 2008
by
Baptiste Coudurier
Browse files
remove mxf_build_structural_metadata, simplify
Originally committed as revision 15113 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
98f7c5e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
libavformat/mxfenc.c
View file @
f05773ea
...
...
@@ -636,13 +636,7 @@ static void mxf_write_package(AVFormatContext *s, enum MXFMetadataSetType type)
mxf_write_local_tag
(
pb
,
16
,
0x4701
);
mxf_write_uuid
(
pb
,
MultipleDescriptor
,
0
);
}
}
static
void
mxf_build_structural_metadata
(
AVFormatContext
*
s
,
enum
MXFMetadataSetType
type
)
{
int
i
;
mxf_write_package
(
s
,
type
);
if
(
type
==
SourcePackage
)
mxf_write_multi_descriptor
(
s
);
...
...
@@ -664,8 +658,8 @@ static int mxf_write_header_metadata_sets(AVFormatContext *s)
mxf_write_preface
(
s
);
mxf_write_identification
(
s
);
mxf_write_content_storage
(
s
);
mxf_
build_structural_metadata
(
s
,
MaterialPackage
);
mxf_
build_structural_metadata
(
s
,
SourcePackage
);
mxf_
write_package
(
s
,
MaterialPackage
);
mxf_
write_package
(
s
,
SourcePackage
);
return
0
;
}
...
...
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