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
04f25aa0
Commit
04f25aa0
authored
Apr 12, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple: support 7.x -> 5.x downmixing
parent
a5f5bd5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
modules/audio_filter/channel_mixer/simple.c
modules/audio_filter/channel_mixer/simple.c
+28
-5
No files found.
modules/audio_filter/channel_mixer/simple.c
View file @
04f25aa0
...
@@ -208,6 +208,26 @@ static void DoWork_5_x_to_4_0( filter_t * p_filter, block_t * p_in_buf, block_t
...
@@ -208,6 +208,26 @@ static void DoWork_5_x_to_4_0( filter_t * p_filter, block_t * p_in_buf, block_t
}
}
}
}
static
void
DoWork_7_x_to_5_x
(
filter_t
*
p_filter
,
block_t
*
p_in_buf
,
block_t
*
p_out_buf
)
{
float
*
p_dest
=
(
float
*
)
p_out_buf
->
p_buffer
;
const
float
*
p_src
=
(
const
float
*
)
p_in_buf
->
p_buffer
;
for
(
int
i
=
p_in_buf
->
i_nb_samples
;
i
--
;
)
{
*
p_dest
++
=
p_src
[
0
];
*
p_dest
++
=
p_src
[
1
];
*
p_dest
++
=
(
p_src
[
2
]
+
p_src
[
4
])
*
0
.
5
;
*
p_dest
++
=
(
p_src
[
3
]
+
p_src
[
5
])
*
0
.
5
;
*
p_dest
++
=
p_src
[
6
];
p_src
+=
7
;
if
(
p_filter
->
fmt_in
.
audio
.
i_physical_channels
&
AOUT_CHAN_LFE
&&
p_filter
->
fmt_out
.
audio
.
i_physical_channels
&
AOUT_CHAN_LFE
)
*
p_dest
++
=
*
p_src
++
;
else
if
(
p_filter
->
fmt_in
.
audio
.
i_physical_channels
&
AOUT_CHAN_LFE
)
p_src
++
;
}
}
/*****************************************************************************
/*****************************************************************************
* OpenFilter:
* OpenFilter:
...
@@ -266,16 +286,18 @@ static int OpenFilter( vlc_object_t *p_this )
...
@@ -266,16 +286,18 @@ static int OpenFilter( vlc_object_t *p_this )
else
else
p_filter
->
p_sys
->
pf_dowork
=
DoWork_2_x_to_1_0
;
p_filter
->
p_sys
->
pf_dowork
=
DoWork_2_x_to_1_0
;
}
}
else
else
if
(
p_filter
->
fmt_out
.
audio
.
i_physical_channels
==
AOUT_CHANS_4_0
)
{
{
assert
(
p_filter
->
fmt_out
.
audio
.
i_physical_channels
==
AOUT_CHANS_4_0
);
assert
(
b_input_7_0
||
b_input_5_0
);
if
(
b_input_7_0
)
if
(
b_input_7_0
)
p_filter
->
p_sys
->
pf_dowork
=
DoWork_7_x_to_4_0
;
p_filter
->
p_sys
->
pf_dowork
=
DoWork_7_x_to_4_0
;
else
else
p_filter
->
p_sys
->
pf_dowork
=
DoWork_5_x_to_4_0
;
p_filter
->
p_sys
->
pf_dowork
=
DoWork_5_x_to_4_0
;
}
}
else
{
assert
(
b_input_7_0
);
p_filter
->
p_sys
->
pf_dowork
=
DoWork_7_x_to_5_x
;
}
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -341,7 +363,8 @@ static bool IsSupported( const audio_format_t *p_input, const audio_format_t *p_
...
@@ -341,7 +363,8 @@ static bool IsSupported( const audio_format_t *p_input, const audio_format_t *p_
/* Only conversion to Mono, Stereo and 4.0 right now */
/* Only conversion to Mono, Stereo and 4.0 right now */
if
(
p_output
->
i_physical_channels
!=
AOUT_CHAN_CENTER
&&
if
(
p_output
->
i_physical_channels
!=
AOUT_CHAN_CENTER
&&
p_output
->
i_physical_channels
!=
AOUT_CHANS_2_0
&&
p_output
->
i_physical_channels
!=
AOUT_CHANS_2_0
&&
p_output
->
i_physical_channels
!=
AOUT_CHANS_4_0
)
p_output
->
i_physical_channels
!=
AOUT_CHANS_4_0
&&
p_output
->
i_physical_channels
!=
AOUT_CHANS_5_1
)
{
{
return
false
;
return
false
;
}
}
...
...
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