Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
f9303ffd
Commit
f9303ffd
authored
16 years ago
by
Baptiste Coudurier
Browse files
Options
Downloads
Patches
Plain Diff
write req local tags for wav
Originally committed as revision 16931 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4966b98a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/mxfenc.c
+23
-2
23 additions, 2 deletions
libavformat/mxfenc.c
with
23 additions
and
2 deletions
libavformat/mxfenc.c
+
23
−
2
View file @
f9303ffd
...
...
@@ -190,6 +190,9 @@ static const MXFLocalTagPair mxf_local_tag_batch[] = {
{
0x3D06
,
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x01
,
0x01
,
0x01
,
0x02
,
0x04
,
0x02
,
0x04
,
0x02
,
0x00
,
0x00
,
0x00
,
0x00
}},
/* Sound Essence Compression */
// MPEG video Descriptor
{
0x8000
,
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x01
,
0x01
,
0x01
,
0x05
,
0x04
,
0x01
,
0x06
,
0x02
,
0x01
,
0x0B
,
0x00
,
0x00
}},
/* BitRate */
// Wave Audio Essence Descriptor
{
0x3D09
,
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x01
,
0x01
,
0x01
,
0x05
,
0x04
,
0x02
,
0x03
,
0x03
,
0x05
,
0x00
,
0x00
,
0x00
}},
/* Average Bytes Per Second */
{
0x3D0A
,
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x01
,
0x01
,
0x01
,
0x05
,
0x04
,
0x02
,
0x03
,
0x02
,
0x01
,
0x00
,
0x00
,
0x00
}},
/* Block Align */
};
static
void
mxf_write_uuid
(
ByteIOContext
*
pb
,
enum
MXFMetadataSetType
type
,
int
value
)
...
...
@@ -679,12 +682,30 @@ static void mxf_write_generic_sound_desc(AVFormatContext *s, AVStream *st, const
static
void
mxf_write_wav_desc
(
AVFormatContext
*
s
,
AVStream
*
st
)
{
mxf_write_generic_sound_desc
(
s
,
st
,
mxf_wav_descriptor_key
,
93
);
ByteIOContext
*
pb
=
s
->
pb
;
mxf_write_generic_sound_desc
(
s
,
st
,
mxf_wav_descriptor_key
,
107
);
mxf_write_local_tag
(
pb
,
2
,
0x3D0A
);
put_be16
(
pb
,
st
->
codec
->
block_align
);
// avg bytes per sec
mxf_write_local_tag
(
pb
,
4
,
0x3D09
);
put_be32
(
pb
,
st
->
codec
->
block_align
*
st
->
codec
->
sample_rate
);
}
static
void
mxf_write_aes3_desc
(
AVFormatContext
*
s
,
AVStream
*
st
)
{
mxf_write_generic_sound_desc
(
s
,
st
,
mxf_aes3_descriptor_key
,
93
);
ByteIOContext
*
pb
=
s
->
pb
;
mxf_write_generic_sound_desc
(
s
,
st
,
mxf_aes3_descriptor_key
,
107
);
mxf_write_local_tag
(
pb
,
2
,
0x3D0A
);
put_be16
(
pb
,
st
->
codec
->
block_align
);
// avg bytes per sec
mxf_write_local_tag
(
pb
,
4
,
0x3D09
);
put_be32
(
pb
,
st
->
codec
->
block_align
*
st
->
codec
->
sample_rate
);
}
static
void
mxf_write_package
(
AVFormatContext
*
s
,
enum
MXFMetadataSetType
type
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment