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
54ed488b
Commit
54ed488b
authored
10 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
flac muxer: write WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag for multichannel files
parent
d6b9ce99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavformat/flacenc.c
+18
-0
18 additions, 0 deletions
libavformat/flacenc.c
libavformat/flacenc.h
+2
-0
2 additions, 0 deletions
libavformat/flacenc.h
libavformat/flacenc_header.c
+16
-0
16 additions, 0 deletions
libavformat/flacenc_header.c
with
36 additions
and
0 deletions
libavformat/flacenc.c
+
18
−
0
View file @
54ed488b
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include
"libavutil/channel_layout.h"
#include
"libavutil/opt.h"
#include
"libavcodec/flac.h"
#include
"avformat.h"
...
...
@@ -83,6 +84,23 @@ static int flac_write_header(struct AVFormatContext *s)
if
(
ret
)
return
ret
;
/* add the channel layout tag */
if
(
codec
->
channel_layout
&&
!
(
codec
->
channel_layout
&
~
0x3ffffULL
)
&&
!
ff_flac_is_native_layout
(
codec
->
channel_layout
))
{
AVDictionaryEntry
*
chmask
=
av_dict_get
(
s
->
metadata
,
"WAVEFORMATEXTENSIBLE_CHANNEL_MASK"
,
NULL
,
0
);
if
(
chmask
)
{
av_log
(
s
,
AV_LOG_WARNING
,
"A WAVEFORMATEXTENSIBLE_CHANNEL_MASK is "
"already present, this muxer will not overwrite it.
\n
"
);
}
else
{
uint8_t
buf
[
32
];
snprintf
(
buf
,
sizeof
(
buf
),
"0x%"
PRIx64
,
codec
->
channel_layout
);
av_dict_set
(
&
s
->
metadata
,
"WAVEFORMATEXTENSIBLE_CHANNEL_MASK"
,
buf
,
0
);
}
}
ret
=
flac_write_block_comment
(
s
->
pb
,
&
s
->
metadata
,
0
,
s
->
flags
&
AVFMT_FLAG_BITEXACT
);
if
(
ret
)
...
...
This diff is collapsed.
Click to expand it.
libavformat/flacenc.h
+
2
−
0
View file @
54ed488b
...
...
@@ -29,4 +29,6 @@
int
ff_flac_write_header
(
AVIOContext
*
pb
,
AVCodecContext
*
codec
,
int
last_block
);
int
ff_flac_is_native_layout
(
uint64_t
channel_layout
);
#endif
/* AVFORMAT_FLACENC_H */
This diff is collapsed.
Click to expand it.
libavformat/flacenc_header.c
+
16
−
0
View file @
54ed488b
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include
"libavutil/channel_layout.h"
#include
"libavcodec/flac.h"
#include
"libavcodec/bytestream.h"
#include
"avformat.h"
...
...
@@ -45,3 +47,17 @@ int ff_flac_write_header(AVIOContext *pb, AVCodecContext *codec,
return
0
;
}
int
ff_flac_is_native_layout
(
uint64_t
channel_layout
)
{
if
(
channel_layout
==
AV_CH_LAYOUT_MONO
||
channel_layout
==
AV_CH_LAYOUT_STEREO
||
channel_layout
==
AV_CH_LAYOUT_SURROUND
||
channel_layout
==
AV_CH_LAYOUT_QUAD
||
channel_layout
==
AV_CH_LAYOUT_5POINT0
||
channel_layout
==
AV_CH_LAYOUT_5POINT1
||
channel_layout
==
AV_CH_LAYOUT_6POINT1
||
channel_layout
==
AV_CH_LAYOUT_7POINT1
)
return
1
;
return
0
;
}
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