Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
29209586
Commit
29209586
authored
Apr 12, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple: use ITU-R BS.775-2 matrices for 5.x downmixing
To 4.0, 2.0 and 1.0
parent
3c46fdb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/audio_filter/channel_mixer/simple.c
modules/audio_filter/channel_mixer/simple.c
+5
-5
No files found.
modules/audio_filter/channel_mixer/simple.c
View file @
29209586
...
...
@@ -79,8 +79,8 @@ static void DoWork_5_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
*
p_dest
++
=
p_src
[
4
]
+
0
.
5
*
p_src
[
0
]
+
0
.
33
*
p_src
[
2
]
;
*
p_dest
++
=
p_src
[
4
]
+
0
.
5
*
p_src
[
1
]
+
0
.
33
*
p_src
[
3
]
;
*
p_dest
++
=
p_src
[
0
]
+
0
.
7071
*
(
p_src
[
4
]
+
p_src
[
2
])
;
*
p_dest
++
=
p_src
[
1
]
+
0
.
7071
*
(
p_src
[
4
]
+
p_src
[
3
])
;
p_src
+=
5
;
...
...
@@ -132,7 +132,7 @@ static void DoWork_5_x_to_1_0( filter_t * p_filter, block_t * p_in_buf, block_t
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
*
p_dest
++
=
p_src
[
4
]
+
p_src
[
0
]
/
4
+
p_src
[
1
]
/
4
+
p_src
[
2
]
/
6
+
p_src
[
3
]
/
6
;
*
p_dest
++
=
0
.
7071
*
(
p_src
[
0
]
+
p_src
[
1
])
+
p_src
[
4
]
+
0
.
5
f
*
(
p_src
[
2
]
+
p_src
[
3
])
;
p_src
+=
5
;
...
...
@@ -197,8 +197,8 @@ static void DoWork_5_x_to_4_0( filter_t * p_filter, block_t * p_in_buf, block_t
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
*
p_dest
++
=
p_src
[
4
]
+
0
.
5
*
p_src
[
0
]
;
*
p_dest
++
=
p_src
[
4
]
+
0
.
5
*
p_src
[
1
]
;
*
p_dest
++
=
p_src
[
0
]
+
p_src
[
4
]
*
0
.
7071
;
*
p_dest
++
=
p_src
[
1
]
+
p_src
[
4
]
*
0
.
7071
;
*
p_dest
++
=
p_src
[
2
];
*
p_dest
++
=
p_src
[
3
];
...
...
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