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
6c43f33a
Commit
6c43f33a
authored
Jan 17, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/wmaprodec: >2 channel support for XMA
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
90096e42
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
204 additions
and
73 deletions
+204
-73
wmaprodec.c
libavcodec/wmaprodec.c
+201
-73
wavdec.c
libavformat/wavdec.c
+3
-0
No files found.
libavcodec/wmaprodec.c
View file @
6c43f33a
This diff is collapsed.
Click to expand it.
libavformat/wavdec.c
View file @
6c43f33a
...
...
@@ -567,6 +567,9 @@ break_loop:
st
->
codecpar
->
block_align
==
st
->
codecpar
->
channels
*
4
&&
st
->
codecpar
->
bits_per_coded_sample
==
24
)
{
st
->
codecpar
->
codec_id
=
AV_CODEC_ID_PCM_F24LE
;
}
else
if
(
st
->
codecpar
->
codec_id
==
AV_CODEC_ID_XMA1
||
st
->
codecpar
->
codec_id
==
AV_CODEC_ID_XMA2
)
{
st
->
codecpar
->
block_align
=
2048
;
}
ff_metadata_conv_ctx
(
s
,
NULL
,
wav_metadata_conv
);
...
...
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