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
ddb839e9
Commit
ddb839e9
authored
Aug 29, 2013
by
Kostya Shishkov
Committed by
Diego Biurrun
Nov 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
metasound: add missing modes
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
7b9780e7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10245 additions
and
3 deletions
+10245
-3
metasound.c
libavcodec/metasound.c
+24
-0
metasound_data.c
libavcodec/metasound_data.c
+10221
-3
No files found.
libavcodec/metasound.c
View file @
ddb839e9
...
...
@@ -301,12 +301,36 @@ static av_cold int metasound_decode_init(AVCodecContext *avctx)
case
(
1
<<
16
)
+
(
8
<<
8
)
+
8
:
tctx
->
mtab
=
&
ff_metasound_mode0808
;
break
;
case
(
2
<<
16
)
+
(
8
<<
8
)
+
8
:
tctx
->
mtab
=
&
ff_metasound_mode0808s
;
break
;
case
(
1
<<
16
)
+
(
11
<<
8
)
+
10
:
tctx
->
mtab
=
&
ff_metasound_mode1110
;
break
;
case
(
2
<<
16
)
+
(
11
<<
8
)
+
10
:
tctx
->
mtab
=
&
ff_metasound_mode1110s
;
break
;
case
(
1
<<
16
)
+
(
16
<<
8
)
+
16
:
tctx
->
mtab
=
&
ff_metasound_mode1616
;
break
;
case
(
2
<<
16
)
+
(
16
<<
8
)
+
16
:
tctx
->
mtab
=
&
ff_metasound_mode1616s
;
break
;
case
(
1
<<
16
)
+
(
44
<<
8
)
+
32
:
tctx
->
mtab
=
&
ff_metasound_mode4432
;
break
;
case
(
2
<<
16
)
+
(
44
<<
8
)
+
32
:
tctx
->
mtab
=
&
ff_metasound_mode4432s
;
break
;
case
(
1
<<
16
)
+
(
44
<<
8
)
+
40
:
tctx
->
mtab
=
&
ff_metasound_mode4440
;
break
;
case
(
2
<<
16
)
+
(
44
<<
8
)
+
40
:
tctx
->
mtab
=
&
ff_metasound_mode4440s
;
break
;
case
(
1
<<
16
)
+
(
44
<<
8
)
+
48
:
tctx
->
mtab
=
&
ff_metasound_mode4448
;
break
;
case
(
2
<<
16
)
+
(
44
<<
8
)
+
48
:
tctx
->
mtab
=
&
ff_metasound_mode4448s
;
break
;
...
...
libavcodec/metasound_data.c
View file @
ddb839e9
This diff is collapsed.
Click to expand it.
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