Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
f42db415
Commit
f42db415
authored
15 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
linear resampler: use fixed-point as appropriate
parent
69f6faef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/audio_filter/resampler/linear.c
+3
-3
3 additions, 3 deletions
modules/audio_filter/resampler/linear.c
with
3 additions
and
3 deletions
modules/audio_filter/resampler/linear.c
+
3
−
3
View file @
f42db415
...
...
@@ -44,7 +44,7 @@ static int OpenFilter ( vlc_object_t * );
static
void
CloseFilter
(
vlc_object_t
*
);
static
block_t
*
Resample
(
filter_t
*
,
block_t
*
);
#if
1
#if
HAVE_FPU
typedef
float
sample_t
;
# define VLC_CODEC_NATIVE VLC_CODEC_FL32
#else
...
...
@@ -137,7 +137,7 @@ static block_t *Resample( filter_t *p_filter, block_t *p_in_buf )
for
(
unsigned
i
=
0
;
i
<
i_nb_channels
;
i
++
)
{
p_out
[
i
]
=
p_prev_sample
[
i
];
#if
CPU_CAPABILITY
_FPU
#if
HAVE
_FPU
p_out
[
i
]
+=
(
p_in
[
i
]
-
p_prev_sample
[
i
])
#else
p_out
[
i
]
+=
(
int64_t
)(
p_in
[
i
]
-
p_prev_sample
[
i
])
...
...
@@ -160,7 +160,7 @@ static block_t *Resample( filter_t *p_filter, block_t *p_in_buf )
for
(
unsigned
i
=
0
;
i
<
i_nb_channels
;
i
++
)
{
p_out
[
i
]
=
p_in
[
i
];
#if
CPU_CAPABILITY
_FPU
#if
HAVE
_FPU
p_out
[
i
]
+=
(
p_in
[
i
+
i_nb_channels
]
-
p_in
[
i
])
#else
p_out
[
i
]
+=
(
int64_t
)(
p_in
[
i
+
i_nb_channels
]
-
p_in
[
i
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment