Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d89c4846
Commit
d89c4846
authored
Dec 01, 2015
by
Yann Coupin
Committed by
Michael Niedermayer
Dec 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/movenc: HE-AAC correct FourCC in ISML
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
9696a01f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
movenc.c
libavformat/movenc.c
+11
-1
No files found.
libavformat/movenc.c
View file @
d89c4846
...
...
@@ -3334,7 +3334,17 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov)
param_write_int
(
pb
,
"DisplayHeight"
,
track
->
enc
->
height
);
}
else
{
if
(
track
->
enc
->
codec_id
==
AV_CODEC_ID_AAC
)
{
param_write_string
(
pb
,
"FourCC"
,
"AACL"
);
switch
(
track
->
enc
->
profile
)
{
case
FF_PROFILE_AAC_HE_V2
:
param_write_string
(
pb
,
"FourCC"
,
"AACP"
);
break
;
case
FF_PROFILE_AAC_HE
:
param_write_string
(
pb
,
"FourCC"
,
"AACH"
);
break
;
default:
param_write_string
(
pb
,
"FourCC"
,
"AACL"
);
}
}
else
if
(
track
->
enc
->
codec_id
==
AV_CODEC_ID_WMAPRO
)
{
param_write_string
(
pb
,
"FourCC"
,
"WMAP"
);
}
...
...
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