Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
73b01757
Commit
73b01757
authored
Sep 29, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
converter_float: audio filter2
parent
60a3870a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
33 deletions
+17
-33
modules/audio_filter/converter/float.c
modules/audio_filter/converter/float.c
+17
-33
No files found.
modules/audio_filter/converter/float.c
View file @
73b01757
/*****************************************************************************
/*****************************************************************************
* float.c: Floating point audio format conversions
* float.c: Floating point audio format conversions
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002, 2006 the VideoLAN team
* Copyright (C) 2002, 2006
-2009
the VideoLAN team
* $Id$
* $Id$
*
*
* Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
* Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
...
@@ -35,21 +35,15 @@
...
@@ -35,21 +35,15 @@
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <vlc_aout.h>
#include <vlc_aout.h>
#include <vlc_filter.h>
/*****************************************************************************
/*****************************************************************************
* Local prototypes
* Local prototypes
*****************************************************************************/
*****************************************************************************/
static
int
Create_F32ToFL32
(
vlc_object_t
*
);
static
int
Create_F32ToFL32
(
vlc_object_t
*
);
static
void
Do_F32ToFL32
(
aout_instance_t
*
,
aout_filter_t
*
,
aout_buffer_t
*
,
static
block_t
*
Do_F32ToFL32
(
filter_t
*
,
block_t
*
);
aout_buffer_t
*
);
static
block_t
*
Do_FL32ToF32
(
filter_t
*
,
block_t
*
);
static
void
Do_FL32ToF32
(
aout_instance_t
*
,
aout_filter_t
*
,
aout_buffer_t
*
,
aout_buffer_t
*
);
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -57,7 +51,7 @@ static void Do_FL32ToF32 ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
...
@@ -57,7 +51,7 @@ static void Do_FL32ToF32 ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
vlc_module_begin
()
vlc_module_begin
()
set_description
(
N_
(
"Floating-point audio format conversions"
)
)
set_description
(
N_
(
"Floating-point audio format conversions"
)
)
add_submodule
()
add_submodule
()
set_capability
(
"audio filter"
,
10
)
set_capability
(
"audio filter
2
"
,
10
)
set_callbacks
(
Create_F32ToFL32
,
NULL
)
set_callbacks
(
Create_F32ToFL32
,
NULL
)
vlc_module_end
()
vlc_module_end
()
...
@@ -66,67 +60,57 @@ vlc_module_end ()
...
@@ -66,67 +60,57 @@ vlc_module_end ()
*****************************************************************************/
*****************************************************************************/
static
int
Create_F32ToFL32
(
vlc_object_t
*
p_this
)
static
int
Create_F32ToFL32
(
vlc_object_t
*
p_this
)
{
{
aout_filter_t
*
p_filter
=
(
aout_
filter_t
*
)
p_this
;
filter_t
*
p_filter
=
(
filter_t
*
)
p_this
;
if
(
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
VLC_CODEC_FI32
if
(
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
VLC_CODEC_FI32
||
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FL32
)
||
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FL32
)
&&
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
VLC_CODEC_FL32
&&
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
VLC_CODEC_FL32
||
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FI32
)
)
||
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FI32
)
)
{
{
return
-
1
;
return
VLC_EGENERIC
;
}
}
if
(
!
AOUT_FMTS_SIMILAR
(
&
p_filter
->
fmt_in
.
audio
,
&
p_filter
->
fmt_out
.
audio
)
)
if
(
!
AOUT_FMTS_SIMILAR
(
&
p_filter
->
fmt_in
.
audio
,
&
p_filter
->
fmt_out
.
audio
)
)
{
{
return
-
1
;
return
VLC_EGENERIC
;
}
}
if
(
p_filter
->
fmt_in
.
audio
.
i_format
==
VLC_CODEC_FI32
)
if
(
p_filter
->
fmt_in
.
audio
.
i_format
==
VLC_CODEC_FI32
)
{
{
p_filter
->
pf_
do_work
=
Do_F32ToFL32
;
p_filter
->
pf_
audio_filter
=
Do_F32ToFL32
;
}
}
else
else
{
{
p_filter
->
pf_
do_work
=
Do_FL32ToF32
;
p_filter
->
pf_
audio_filter
=
Do_FL32ToF32
;
}
}
p_filter
->
b_in_place
=
1
;
return
VLC_SUCCESS
;
return
0
;
}
}
static
void
Do_F32ToFL32
(
aout_instance_t
*
p_aout
,
aout_filter_t
*
p_filter
,
static
block_t
*
Do_F32ToFL32
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
)
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
{
{
VLC_UNUSED
(
p_aout
);
int
i
;
int
i
;
vlc_fixed_t
*
p_in
=
(
vlc_fixed_t
*
)
p_in_buf
->
p_buffer
;
vlc_fixed_t
*
p_in
=
(
vlc_fixed_t
*
)
p_in_buf
->
p_buffer
;
float
*
p_out
=
(
float
*
)
p_
out
_buf
->
p_buffer
;
float
*
p_out
=
(
float
*
)
p_
in
_buf
->
p_buffer
;
for
(
i
=
p_in_buf
->
i_nb_samples
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
fmt_in
.
audio
)
;
i
--
;
)
*
aout_FormatNbChannels
(
&
p_filter
->
fmt_in
.
audio
)
;
i
--
;
)
{
{
*
p_out
++
=
(
float
)
*
p_in
++
/
(
float
)
FIXED32_ONE
;
*
p_out
++
=
(
float
)
*
p_in
++
/
(
float
)
FIXED32_ONE
;
}
}
return
p_in_buf
;
p_out_buf
->
i_nb_samples
=
p_in_buf
->
i_nb_samples
;
p_out_buf
->
i_buffer
=
p_in_buf
->
i_buffer
;
}
}
static
void
Do_FL32ToF32
(
aout_instance_t
*
p_aout
,
aout_filter_t
*
p_filter
,
static
block_t
*
Do_FL32ToF32
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
)
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
{
{
VLC_UNUSED
(
p_aout
);
int
i
;
int
i
;
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
vlc_fixed_t
*
p_out
=
(
vlc_fixed_t
*
)
p_
out
_buf
->
p_buffer
;
vlc_fixed_t
*
p_out
=
(
vlc_fixed_t
*
)
p_
in
_buf
->
p_buffer
;
for
(
i
=
p_in_buf
->
i_nb_samples
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
fmt_in
.
audio
)
;
i
--
;
)
*
aout_FormatNbChannels
(
&
p_filter
->
fmt_in
.
audio
)
;
i
--
;
)
{
{
*
p_out
++
=
(
vlc_fixed_t
)(
*
p_in
++
*
(
float
)
FIXED32_ONE
);
*
p_out
++
=
(
vlc_fixed_t
)(
*
p_in
++
*
(
float
)
FIXED32_ONE
);
}
}
return
p_in_buf
;
p_out_buf
->
i_nb_samples
=
p_in_buf
->
i_nb_samples
;
p_out_buf
->
i_buffer
=
p_in_buf
->
i_buffer
;
}
}
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