Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ca1b7afd
Commit
ca1b7afd
authored
Apr 18, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple: slightly different matrixes for 7.x and 6.1 stereo downmix
parent
39fd6666
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/audio_filter/channel_mixer/simple.c
modules/audio_filter/channel_mixer/simple.c
+4
-4
No files found.
modules/audio_filter/channel_mixer/simple.c
View file @
ca1b7afd
...
@@ -116,8 +116,8 @@ static void DoWork_7_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -116,8 +116,8 @@ static void DoWork_7_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
;
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
{
*
p_dest
++
=
p_src
[
6
]
+
0
.
5
*
p_src
[
0
]
+
p_src
[
2
]
/
4
+
p_src
[
4
]
/
4
;
*
p_dest
++
=
p_src
[
6
]
*
0
.
7071
+
p_src
[
0
]
+
p_src
[
2
]
/
4
+
p_src
[
4
]
/
4
;
*
p_dest
++
=
p_src
[
6
]
+
0
.
5
*
p_src
[
1
]
+
p_src
[
3
]
/
4
+
p_src
[
5
]
/
4
;
*
p_dest
++
=
p_src
[
6
]
*
0
.
7071
+
p_src
[
1
]
+
p_src
[
3
]
/
4
+
p_src
[
5
]
/
4
;
p_src
+=
7
;
p_src
+=
7
;
...
@@ -131,8 +131,8 @@ static void DoWork_6_1_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -131,8 +131,8 @@ static void DoWork_6_1_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
;
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
{
*
p_dest
++
=
p_src
[
0
]
+
0
.
7071
*
(
p_src
[
3
]
+
(
p_src
[
2
]
+
p_src
[
5
])
/
2
);
*
p_dest
++
=
p_src
[
0
]
+
p_src
[
3
]
+
0
.
7071
*
(
p_src
[
2
]
+
p_src
[
5
]
);
*
p_dest
++
=
p_src
[
1
]
+
0
.
7071
*
(
p_src
[
4
]
+
(
p_src
[
2
]
+
p_src
[
5
])
/
2
);
*
p_dest
++
=
p_src
[
1
]
+
p_src
[
4
]
+
0
.
7071
*
(
p_src
[
2
]
+
p_src
[
5
]
);
p_src
+=
6
;
p_src
+=
6
;
...
...
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