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
ff981aa0
Commit
ff981aa0
authored
Sep 27, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ugly resampler: switch to audio filter2
parent
7cde22ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
25 deletions
+20
-25
modules/audio_filter/resampler/ugly.c
modules/audio_filter/resampler/ugly.c
+20
-25
No files found.
modules/audio_filter/resampler/ugly.c
View file @
ff981aa0
...
...
@@ -32,21 +32,21 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_filter.h>
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static
int
Create
(
vlc_object_t
*
);
static
void
DoWork
(
aout_instance_t
*
,
aout_filter_t
*
,
aout_buffer_t
*
,
aout_buffer_t
*
);
static
block_t
*
DoWork
(
filter_t
*
,
block_t
*
);
/*****************************************************************************
* Module descriptor
*****************************************************************************/
vlc_module_begin
()
set_description
(
N_
(
"Audio filter for ugly resampling"
)
)
set_capability
(
"audio filter"
,
2
)
set_capability
(
"audio filter
2
"
,
2
)
set_category
(
CAT_AUDIO
)
set_subcategory
(
SUBCAT_AUDIO_MISC
)
set_callbacks
(
Create
,
NULL
)
...
...
@@ -57,7 +57,7 @@ vlc_module_end ()
*****************************************************************************/
static
int
Create
(
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_rate
==
p_filter
->
fmt_out
.
audio
.
i_rate
||
p_filter
->
fmt_in
.
audio
.
i_format
!=
p_filter
->
fmt_out
.
audio
.
i_format
...
...
@@ -71,44 +71,36 @@ static int Create( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
p_filter
->
pf_do_work
=
DoWork
;
/* We don't want a new buffer to be created because we're not sure we'll
* actually need to resample anything. */
p_filter
->
b_in_place
=
true
;
p_filter
->
pf_audio_filter
=
DoWork
;
return
VLC_SUCCESS
;
}
/*****************************************************************************
* DoWork: convert a buffer
*****************************************************************************/
static
void
DoWork
(
aout_instance_t
*
p_aout
,
aout_filter_t
*
p_filter
,
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
static
block_t
*
DoWork
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
)
{
int32_t
*
p_out
=
(
int32_t
*
)
p_out_buf
->
p_buffer
;
/* Check if we really need to run the resampler */
if
(
p_filter
->
fmt_out
.
audio
.
i_rate
==
p_filter
->
fmt_in
.
audio
.
i_rate
)
return
p_in_buf
;
unsigned
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
fmt_in
.
audio
);
unsigned
int
i_in_nb
=
p_in_buf
->
i_nb_samples
;
unsigned
int
i_out_nb
=
i_in_nb
*
p_filter
->
fmt_out
.
audio
.
i_rate
/
p_filter
->
fmt_in
.
audio
.
i_rate
;
unsigned
int
i_sample_bytes
=
i_nb_channels
*
sizeof
(
int32_t
);
unsigned
int
i_out
,
i_chan
,
i_remainder
=
0
;
/* Check if we really need to run the resampler */
if
(
p_aout
->
mixer_format
.
i_rate
==
p_filter
->
fmt_in
.
audio
.
i_rate
)
{
return
;
}
block_t
*
p_out_buf
=
block_Alloc
(
i_out_nb
*
i_sample_bytes
);
if
(
!
p_out_buf
)
goto
out
;
int32_t
p_in_orig
[
p_in_buf
->
i_buffer
/
sizeof
(
int32_t
)],
*
p_in
=
p_in_orig
;
vlc_memcpy
(
p_in
,
p_in_buf
->
p_buffer
,
p_in_buf
->
i_buffer
);
int32_t
*
p_out
=
(
int32_t
*
)
p_out_buf
->
p_buffer
;
const
int32_t
*
p_in
=
(
int32_t
*
)
p_in_buf
->
p_buffer
;
unsigned
int
i_remainder
=
0
;
for
(
i_out
=
i_out_nb
;
i_out
--
;
)
for
(
unsigned
i_out
=
i_out_nb
;
i_out
--
;
)
{
for
(
i_chan
=
i_nb_channels
;
i_chan
;
)
for
(
unsigned
i_chan
=
i_nb_channels
;
i_chan
;
)
{
i_chan
--
;
p_out
[
i_chan
]
=
p_in
[
i_chan
];
...
...
@@ -128,4 +120,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
p_out_buf
->
i_pts
=
p_in_buf
->
i_pts
;
p_out_buf
->
i_length
=
p_out_buf
->
i_nb_samples
*
1000000
/
p_filter
->
fmt_out
.
audio
.
i_rate
;
out:
block_Release
(
p_in_buf
);
return
p_out_buf
;
}
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