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
6979c21a
Commit
6979c21a
authored
Apr 18, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simple: use single precision maths (rather than double)
parent
ca1b7afd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
20 deletions
+26
-20
modules/audio_filter/channel_mixer/simple.c
modules/audio_filter/channel_mixer/simple.c
+26
-20
No files found.
modules/audio_filter/channel_mixer/simple.c
View file @
6979c21a
...
@@ -116,8 +116,9 @@ static void DoWork_7_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -116,8 +116,9 @@ 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
.
7071
+
p_src
[
0
]
+
p_src
[
2
]
/
4
+
p_src
[
4
]
/
4
;
float
ctr
=
p_src
[
6
]
*
0
.
7071
f
;
*
p_dest
++
=
p_src
[
6
]
*
0
.
7071
+
p_src
[
1
]
+
p_src
[
3
]
/
4
+
p_src
[
5
]
/
4
;
*
p_dest
++
=
ctr
+
p_src
[
0
]
+
p_src
[
2
]
/
4
+
p_src
[
4
]
/
4
;
*
p_dest
++
=
ctr
+
p_src
[
1
]
+
p_src
[
3
]
/
4
+
p_src
[
5
]
/
4
;
p_src
+=
7
;
p_src
+=
7
;
...
@@ -125,14 +126,17 @@ static void DoWork_7_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -125,14 +126,17 @@ static void DoWork_7_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
}
}
}
}
static
void
DoWork_6_1_to_2_0
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
,
block_t
*
p_out_buf
)
{
static
void
DoWork_6_1_to_2_0
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
,
block_t
*
p_out_buf
)
{
VLC_UNUSED
(
p_filter
);
VLC_UNUSED
(
p_filter
);
float
*
p_dest
=
(
float
*
)
p_out_buf
->
p_buffer
;
float
*
p_dest
=
(
float
*
)
p_out_buf
->
p_buffer
;
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
]
+
p_src
[
3
]
+
0
.
7071
*
(
p_src
[
2
]
+
p_src
[
5
]);
float
ctr
=
(
p_src
[
2
]
+
p_src
[
5
])
*
0
.
7071
f
;
*
p_dest
++
=
p_src
[
1
]
+
p_src
[
4
]
+
0
.
7071
*
(
p_src
[
2
]
+
p_src
[
5
]);
*
p_dest
++
=
p_src
[
0
]
+
p_src
[
3
]
+
ctr
;
*
p_dest
++
=
p_src
[
1
]
+
p_src
[
4
]
+
ctr
;
p_src
+=
6
;
p_src
+=
6
;
...
@@ -146,8 +150,8 @@ static void DoWork_5_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -146,8 +150,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
;
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
[
4
]
+
p_src
[
2
]);
*
p_dest
++
=
p_src
[
0
]
+
0
.
7071
f
*
(
p_src
[
4
]
+
p_src
[
2
]);
*
p_dest
++
=
p_src
[
1
]
+
0
.
7071
*
(
p_src
[
4
]
+
p_src
[
3
]);
*
p_dest
++
=
p_src
[
1
]
+
0
.
7071
f
*
(
p_src
[
4
]
+
p_src
[
3
]);
p_src
+=
5
;
p_src
+=
5
;
...
@@ -161,8 +165,8 @@ static void DoWork_4_0_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -161,8 +165,8 @@ static void DoWork_4_0_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
[
2
]
+
p_src
[
3
]
+
0
.
5
*
p_src
[
0
];
*
p_dest
++
=
p_src
[
2
]
+
p_src
[
3
]
+
0
.
5
f
*
p_src
[
0
];
*
p_dest
++
=
p_src
[
2
]
+
p_src
[
3
]
+
0
.
5
*
p_src
[
1
];
*
p_dest
++
=
p_src
[
2
]
+
p_src
[
3
]
+
0
.
5
f
*
p_src
[
1
];
p_src
+=
4
;
p_src
+=
4
;
}
}
}
}
...
@@ -172,8 +176,8 @@ static void DoWork_3_x_to_2_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -172,8 +176,8 @@ static void DoWork_3_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
[
2
]
+
0
.
5
*
p_src
[
0
];
*
p_dest
++
=
p_src
[
2
]
+
0
.
5
f
*
p_src
[
0
];
*
p_dest
++
=
p_src
[
2
]
+
0
.
5
*
p_src
[
1
];
*
p_dest
++
=
p_src
[
2
]
+
0
.
5
f
*
p_src
[
1
];
p_src
+=
3
;
p_src
+=
3
;
...
@@ -199,7 +203,8 @@ static void DoWork_5_x_to_1_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -199,7 +203,8 @@ 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
;
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
++
=
0
.
7071
*
(
p_src
[
0
]
+
p_src
[
1
])
+
p_src
[
4
]
+
0
.
5
f
*
(
p_src
[
2
]
+
p_src
[
3
]);
*
p_dest
++
=
0
.
7071
f
*
(
p_src
[
0
]
+
p_src
[
1
])
+
p_src
[
4
]
+
0
.
5
f
*
(
p_src
[
2
]
+
p_src
[
3
]);
p_src
+=
5
;
p_src
+=
5
;
...
@@ -248,8 +253,8 @@ static void DoWork_7_x_to_4_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -248,8 +253,8 @@ static void DoWork_7_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
;
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
]
/
6
;
*
p_dest
++
=
p_src
[
6
]
+
0
.
5
f
*
p_src
[
0
]
+
p_src
[
2
]
/
6
;
*
p_dest
++
=
p_src
[
6
]
+
0
.
5
*
p_src
[
1
]
+
p_src
[
3
]
/
6
;
*
p_dest
++
=
p_src
[
6
]
+
0
.
5
f
*
p_src
[
1
]
+
p_src
[
3
]
/
6
;
*
p_dest
++
=
p_src
[
2
]
/
6
+
p_src
[
4
];
*
p_dest
++
=
p_src
[
2
]
/
6
+
p_src
[
4
];
*
p_dest
++
=
p_src
[
3
]
/
6
+
p_src
[
5
];
*
p_dest
++
=
p_src
[
3
]
/
6
+
p_src
[
5
];
...
@@ -264,8 +269,9 @@ static void DoWork_5_x_to_4_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -264,8 +269,9 @@ 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
;
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
]
+
p_src
[
4
]
*
0
.
7071
;
float
ctr
=
p_src
[
4
]
*
0
.
7071
f
;
*
p_dest
++
=
p_src
[
1
]
+
p_src
[
4
]
*
0
.
7071
;
*
p_dest
++
=
p_src
[
0
]
+
ctr
;
*
p_dest
++
=
p_src
[
1
]
+
ctr
;
*
p_dest
++
=
p_src
[
2
];
*
p_dest
++
=
p_src
[
2
];
*
p_dest
++
=
p_src
[
3
];
*
p_dest
++
=
p_src
[
3
];
...
@@ -282,8 +288,8 @@ static void DoWork_7_x_to_5_x( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -282,8 +288,8 @@ static void DoWork_7_x_to_5_x( filter_t * p_filter, block_t * p_in_buf, block_t
{
{
*
p_dest
++
=
p_src
[
0
];
*
p_dest
++
=
p_src
[
0
];
*
p_dest
++
=
p_src
[
1
];
*
p_dest
++
=
p_src
[
1
];
*
p_dest
++
=
(
p_src
[
2
]
+
p_src
[
4
])
*
0
.
5
;
*
p_dest
++
=
(
p_src
[
2
]
+
p_src
[
4
])
*
0
.
5
f
;
*
p_dest
++
=
(
p_src
[
3
]
+
p_src
[
5
])
*
0
.
5
;
*
p_dest
++
=
(
p_src
[
3
]
+
p_src
[
5
])
*
0
.
5
f
;
*
p_dest
++
=
p_src
[
6
];
*
p_dest
++
=
p_src
[
6
];
p_src
+=
7
;
p_src
+=
7
;
...
@@ -303,8 +309,8 @@ static void DoWork_6_1_to_5_x( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -303,8 +309,8 @@ static void DoWork_6_1_to_5_x( filter_t * p_filter, block_t * p_in_buf, block_t
{
{
*
p_dest
++
=
p_src
[
0
];
*
p_dest
++
=
p_src
[
0
];
*
p_dest
++
=
p_src
[
1
];
*
p_dest
++
=
p_src
[
1
];
*
p_dest
++
=
(
p_src
[
2
]
+
p_src
[
4
])
*
0
.
5
;
*
p_dest
++
=
(
p_src
[
2
]
+
p_src
[
4
])
*
0
.
5
f
;
*
p_dest
++
=
(
p_src
[
3
]
+
p_src
[
4
])
*
0
.
5
;
*
p_dest
++
=
(
p_src
[
3
]
+
p_src
[
4
])
*
0
.
5
f
;
*
p_dest
++
=
p_src
[
5
];
*
p_dest
++
=
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