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
d86bf0f4
Commit
d86bf0f4
authored
Oct 15, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed filters which couldn't work with more than 2 channels ;
* Fixed detection of VCD support under OS X.2.
parent
235dfe29
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
51 additions
and
39 deletions
+51
-39
configure.ac.in
configure.ac.in
+1
-1
modules/audio_filter/converter/fixed32tofloat32.c
modules/audio_filter/converter/fixed32tofloat32.c
+3
-2
modules/audio_filter/converter/fixed32tos16.c
modules/audio_filter/converter/fixed32tos16.c
+3
-2
modules/audio_filter/converter/float32tos16.c
modules/audio_filter/converter/float32tos16.c
+3
-2
modules/audio_filter/converter/float32tos8.c
modules/audio_filter/converter/float32tos8.c
+3
-2
modules/audio_filter/converter/float32tou16.c
modules/audio_filter/converter/float32tou16.c
+3
-2
modules/audio_filter/converter/float32tou8.c
modules/audio_filter/converter/float32tou8.c
+3
-2
modules/audio_filter/converter/s16tofloat32.c
modules/audio_filter/converter/s16tofloat32.c
+2
-2
modules/audio_filter/converter/s16tofloat32swab.c
modules/audio_filter/converter/s16tofloat32swab.c
+2
-2
modules/audio_filter/resampler/trivial.c
modules/audio_filter/resampler/trivial.c
+2
-2
modules/audio_filter/resampler/ugly.c
modules/audio_filter/resampler/ugly.c
+6
-5
modules/audio_mixer/float32.c
modules/audio_mixer/float32.c
+4
-4
modules/audio_mixer/trivial.c
modules/audio_mixer/trivial.c
+4
-3
modules/codec/lpcm.c
modules/codec/lpcm.c
+2
-2
modules/codec/mad/libmad.c
modules/codec/mad/libmad.c
+4
-2
modules/codec/mpeg_audio/decoder.c
modules/codec/mpeg_audio/decoder.c
+6
-4
No files found.
configure.ac.in
View file @
d86bf0f4
...
...
@@ -985,7 +985,7 @@ then
if test "x${SYS}" = "xdarwin"
then
# No need to add vcd to PLUGINS, Darwin is already based on FreeBSD
PLUGINS="${PLUGINS} vcd"
LDFLAGS_vcd="${LDFLAGS_vcd} -framework IOKit -framework CoreFoundation"
fi
fi
...
...
modules/audio_filter/converter/fixed32tofloat32.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* fixed32float32.c : converter from fixed32 to float32 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: fixed32tofloat32.c,v 1.
9 2002/09/30 21:32:32
massiot Exp $
* $Id: fixed32tofloat32.c,v 1.
10 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -85,7 +85,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
vlc_fixed_t
*
p_in
=
(
vlc_fixed_t
*
)
p_in_buf
->
p_buffer
;
float
*
p_out
=
(
float
*
)
p_out_buf
->
p_buffer
;
for
(
i
=
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
--
;
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
)
;
i
--
;
)
{
*
p_out
++
=
(
float
)
*
p_in
++
/
(
float
)
FIXED32_ONE
;
}
...
...
modules/audio_filter/converter/fixed32tos16.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* fixed32tos16.c : converter from fixed32 to signed 16 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: fixed32tos16.c,v 1.
6 2002/09/30 21:32:32
massiot Exp $
* $Id: fixed32tos16.c,v 1.
7 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -199,7 +199,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
s16
sample
;
// static struct audio_dither dither;
for
(
i
=
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
--
;
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
)
;
i
--
;
)
{
/* Accurate scaling */
// p_out = mpg321_s24_to_s16_pcm(16, *p_in++, &dither);
...
...
modules/audio_filter/converter/float32tos16.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* float32tos16.c : converter from float32 to signed 16 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32tos16.c,v 1.1
0 2002/09/30 21:32:32
massiot Exp $
* $Id: float32tos16.c,v 1.1
1 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -83,7 +83,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
s16
*
p_out
=
(
s16
*
)
p_out_buf
->
p_buffer
;
for
(
i
=
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
--
;
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
);
i
--
;
)
{
#if 0
/* Slow version. */
...
...
modules/audio_filter/converter/float32tos8.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* float32tos8.c : converter from float32 to signed 8 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32tos8.c,v 1.
5 2002/09/30 21:32:32
massiot Exp $
* $Id: float32tos8.c,v 1.
6 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Xavier Maillard <zedek@fxgsproject.org>
*
...
...
@@ -85,7 +85,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
s8
*
p_out
=
(
s8
*
)
p_out_buf
->
p_buffer
;
for
(
i
=
0
;
i
<
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
++
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
);
i
--
;
)
{
if
(
*
p_in
>=
1
.
0
)
*
p_out
=
127
;
else
if
(
*
p_in
<
-
1
.
0
)
*
p_out
=
-
128
;
...
...
modules/audio_filter/converter/float32tou16.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* float32tou16.c : converter from float32 to unsigned 16 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32tou16.c,v 1.
5 2002/09/30 21:32:32
massiot Exp $
* $Id: float32tou16.c,v 1.
6 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Xavier Maillard <zedek@fxgsproject.org>
*
...
...
@@ -85,7 +85,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
u16
*
p_out
=
(
u16
*
)
p_out_buf
->
p_buffer
;
for
(
i
=
0
;
i
<
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
++
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
);
i
--
;
)
{
if
(
*
p_in
>=
1
.
0
)
*
p_out
=
65535
;
else
if
(
*
p_in
<
-
1
.
0
)
*
p_out
=
0
;
...
...
modules/audio_filter/converter/float32tou8.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* float32tou8.c : converter from float32 to unsigned 8 bits integer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32tou8.c,v 1.
5 2002/09/30 21:32:32
massiot Exp $
* $Id: float32tou8.c,v 1.
6 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Xavier Maillard <zedek@fxgsproject.org>
*
...
...
@@ -85,7 +85,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
float
*
p_in
=
(
float
*
)
p_in_buf
->
p_buffer
;
u8
*
p_out
=
(
u8
*
)
p_out_buf
->
p_buffer
;
for
(
i
=
0
;
i
<
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
i
++
)
for
(
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
);
i
--
;
)
{
if
(
*
p_in
>=
1
.
0
)
*
p_out
=
255
;
else
if
(
*
p_in
<
-
1
.
0
)
*
p_out
=
0
;
...
...
modules/audio_filter/converter/s16tofloat32.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* s16tofloat32.c : converter from signed 16 bits integer to float32
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: s16tofloat32.c,v 1.
3 2002/09/30 21:32:32
massiot Exp $
* $Id: s16tofloat32.c,v 1.
4 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -81,7 +81,7 @@ static int Create( vlc_object_t *p_this )
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
)
{
int
i
=
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
int
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
)
;
/* We start from the end because b_in_place is true */
s16
*
p_in
=
(
s16
*
)
p_in_buf
->
p_buffer
+
i
-
1
;
...
...
modules/audio_filter/converter/s16tofloat32swab.c
View file @
d86bf0f4
...
...
@@ -3,7 +3,7 @@
* with endianness change
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: s16tofloat32swab.c,v 1.
6 2002/09/30 21:32:32
massiot Exp $
* $Id: s16tofloat32swab.c,v 1.
7 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Henri Fallon <henri@videolan.org>
...
...
@@ -95,7 +95,7 @@ static int Create( vlc_object_t *p_this )
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
)
{
int
i
=
p_in_buf
->
i_nb_samples
*
p_filter
->
input
.
i_channels
;
int
i
=
p_in_buf
->
i_nb_samples
*
aout_FormatNbChannels
(
&
p_filter
->
input
)
;
/* We start from the end because b_in_place is true */
s16
*
p_in
;
...
...
modules/audio_filter/resampler/trivial.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* trivial.c : trivial resampler (skips samples or pads with zeroes)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: trivial.c,v 1.
6 2002/09/30 21:32:32
massiot Exp $
* $Id: trivial.c,v 1.
7 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -80,7 +80,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
int
i_in_nb
=
p_in_buf
->
i_nb_samples
;
int
i_out_nb
=
i_in_nb
*
p_filter
->
output
.
i_rate
/
p_filter
->
input
.
i_rate
;
int
i_frame_bytes
=
p_filter
->
input
.
i_channels
*
sizeof
(
s32
);
int
i_frame_bytes
=
aout_FormatNbChannels
(
&
p_filter
->
input
)
*
sizeof
(
s32
);
if
(
p_out_buf
!=
p_in_buf
)
{
...
...
modules/audio_filter/resampler/ugly.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* ugly.c : ugly resampler (changes pitch)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: ugly.c,v 1.
3 2002/09/30 21:32:32
massiot Exp $
* $Id: ugly.c,v 1.
4 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -80,25 +80,26 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
s32
*
p_in
=
(
s32
*
)
p_in_buf
->
p_buffer
;
s32
*
p_out
=
(
s32
*
)
p_out_buf
->
p_buffer
;
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
input
);
int
i_in_nb
=
p_in_buf
->
i_nb_samples
;
int
i_out_nb
=
i_in_nb
*
p_filter
->
output
.
i_rate
/
p_filter
->
input
.
i_rate
;
int
i_frame_bytes
=
p_filter
->
input
.
i
_channels
*
sizeof
(
s32
);
int
i_frame_bytes
=
i_nb
_channels
*
sizeof
(
s32
);
int
i_out
,
i_chan
,
i_remainder
=
0
;
for
(
i_out
=
i_out_nb
;
i_out
--
;
)
{
for
(
i_chan
=
p_filter
->
input
.
i
_channels
;
i_chan
;
)
for
(
i_chan
=
i_nb
_channels
;
i_chan
;
)
{
i_chan
--
;
p_out
[
i_chan
]
=
p_in
[
i_chan
];
}
p_out
+=
p_filter
->
input
.
i
_channels
;
p_out
+=
i_nb
_channels
;
i_remainder
+=
p_filter
->
input
.
i_rate
;
while
(
i_remainder
>=
p_filter
->
output
.
i_rate
)
{
p_in
+=
p_filter
->
input
.
i
_channels
;
p_in
+=
i_nb
_channels
;
i_remainder
-=
p_filter
->
output
.
i_rate
;
}
}
...
...
modules/audio_mixer/float32.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* float32.c : precise float32 audio mixer implementation
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32.c,v 1.
5 2002/09/30 21:32:32
massiot Exp $
* $Id: float32.c,v 1.
6 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -112,11 +112,11 @@ static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
int
i_nb_inputs
=
p_aout
->
i_nb_inputs
;
float
f_multiplier
=
p_aout
->
mixer
.
f_multiplier
;
int
i_input
;
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_aout
->
mixer
.
mixer
);
for
(
i_input
=
0
;
i_input
<
i_nb_inputs
;
i_input
++
)
{
int
i_nb_words
=
p_buffer
->
i_nb_samples
*
p_aout
->
mixer
.
mixer
.
i_channels
;
int
i_nb_words
=
p_buffer
->
i_nb_samples
*
i_nb_channels
;
aout_input_t
*
p_input
=
p_aout
->
pp_inputs
[
i_input
];
float
*
p_out
=
(
float
*
)
p_buffer
->
p_buffer
;
float
*
p_in
=
(
float
*
)
p_input
->
p_first_byte_to_mix
;
...
...
@@ -128,7 +128,7 @@ static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
ptrdiff_t
i_available_words
=
(
(
float
*
)
p_input
->
fifo
.
p_first
->
p_buffer
-
p_in
)
+
p_input
->
fifo
.
p_first
->
i_nb_samples
*
p_aout
->
mixer
.
mixer
.
i
_channels
;
*
i_nb
_channels
;
if
(
i_available_words
<
i_nb_words
)
{
...
...
modules/audio_mixer/trivial.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* trivial.c : trivial mixer plug-in (1 input, no downmixing)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: trivial.c,v 1.
9 2002/09/30 21:32:32
massiot Exp $
* $Id: trivial.c,v 1.
10 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -73,8 +73,9 @@ static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
{
int
i
=
0
;
aout_input_t
*
p_input
=
p_aout
->
pp_inputs
[
i
];
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_aout
->
mixer
.
mixer
);
int
i_nb_bytes
=
p_buffer
->
i_nb_samples
*
sizeof
(
s32
)
*
p_aout
->
mixer
.
mixer
.
i
_channels
;
*
i_nb
_channels
;
byte_t
*
p_in
;
byte_t
*
p_out
;
...
...
@@ -93,7 +94,7 @@ static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
-
p_in
)
+
p_input
->
fifo
.
p_first
->
i_nb_samples
*
sizeof
(
s32
)
*
p_aout
->
mixer
.
mixer
.
i
_channels
;
*
i_nb
_channels
;
if
(
i_available_bytes
<
i_nb_bytes
)
{
...
...
modules/codec/lpcm.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* lpcm.c: lpcm decoder module
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: lpcm.c,v 1.
4 2002/09/30 21:32:32
massiot Exp $
* $Id: lpcm.c,v 1.
5 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Henri Fallon <henri@videolan.org>
...
...
@@ -127,7 +127,7 @@ static int RunDecoder( decoder_fifo_t * p_fifo )
/* FIXME : I suppose the number of channel and sampling rate
* are somewhere in the headers */
p_dec
->
output_format
.
i_format
=
VLC_FOURCC
(
's'
,
'1'
,
'6'
,
'b'
);
p_dec
->
output_format
.
i_channels
=
2
;
p_dec
->
output_format
.
i_channels
=
AOUT_CHAN_STEREO
;
p_dec
->
output_format
.
i_rate
=
48000
;
aout_DateInit
(
&
p_dec
->
end_date
,
48000
);
...
...
modules/codec/mad/libmad.c
View file @
d86bf0f4
...
...
@@ -147,12 +147,14 @@ enum mad_flow libmad_output( void *p_data, struct mad_header const *p_header,
mad_fixed_t
const
*
p_right
=
p_pcm
->
samples
[
1
];
int
i_samples
=
p_pcm
->
length
;
mad_fixed_t
*
p_samples
;
int
i_channels
=
(
p_pcm
->
channels
==
2
)
?
AOUT_CHAN_STEREO
:
AOUT_CHAN_MONO
;
/* Creating the audio output fifo. Assume the samplerate and nr of channels
* from the first decoded frame is right for the entire audio track. */
if
(
(
p_dec
->
p_aout_input
!=
NULL
)
&&
(
p_dec
->
output_format
.
i_rate
!=
p_pcm
->
samplerate
||
p_dec
->
output_format
.
i_channels
!=
p_pcm
->
channels
)
)
||
p_dec
->
output_format
.
i_channels
!=
i_
channels
)
)
{
/* Parameters changed - this should not happen. */
aout_DecDelete
(
p_dec
->
p_aout
,
p_dec
->
p_aout_input
);
...
...
@@ -163,7 +165,7 @@ enum mad_flow libmad_output( void *p_data, struct mad_header const *p_header,
if
(
p_dec
->
p_aout_input
==
NULL
)
{
p_dec
->
output_format
.
i_rate
=
p_pcm
->
samplerate
;
p_dec
->
output_format
.
i_channels
=
p_pcm
->
channels
;
p_dec
->
output_format
.
i_channels
=
i_
channels
;
aout_DateInit
(
&
p_dec
->
end_date
,
p_pcm
->
samplerate
);
p_dec
->
p_aout_input
=
aout_DecNew
(
p_dec
->
p_fifo
,
&
p_dec
->
p_aout
,
...
...
modules/codec/mpeg_audio/decoder.c
View file @
d86bf0f4
...
...
@@ -2,7 +2,7 @@
* decoder.c: MPEG audio decoder thread
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: decoder.c,v 1.
5 2002/09/30 21:32:32
massiot Exp $
* $Id: decoder.c,v 1.
6 2002/10/15 23:10:54
massiot Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
...
@@ -166,8 +166,9 @@ static void DecodeThread( adec_thread_t * p_dec )
if
(
!
adec_SyncFrame
(
p_dec
,
&
sync_info
)
)
{
/* Create the output fifo if it doesn't exist yet */
if
(
(
p_dec
->
p_aout_input
==
NULL
)
||
(
p_dec
->
output_format
.
i_channels
!=
(
sync_info
.
b_stereo
?
2
:
1
)
)
||
if
(
(
p_dec
->
p_aout_input
==
NULL
)
||
(
p_dec
->
output_format
.
i_channels
!=
(
sync_info
.
b_stereo
?
AOUT_CHAN_STEREO
:
AOUT_CHAN_MONO
)
)
||
(
p_dec
->
output_format
.
i_rate
!=
sync_info
.
sample_rate
)
)
{
if
(
p_dec
->
p_aout_input
)
...
...
@@ -179,7 +180,8 @@ static void DecodeThread( adec_thread_t * p_dec )
/* Set output configuration */
p_dec
->
output_format
.
i_format
=
VLC_FOURCC
(
'f'
,
'l'
,
'3'
,
'2'
);
p_dec
->
output_format
.
i_channels
=
(
sync_info
.
b_stereo
?
2
:
1
);
p_dec
->
output_format
.
i_channels
=
(
sync_info
.
b_stereo
?
AOUT_CHAN_STEREO
:
AOUT_CHAN_MONO
);
p_dec
->
output_format
.
i_rate
=
sync_info
.
sample_rate
;
aout_DateInit
(
&
p_dec
->
end_date
,
sync_info
.
sample_rate
);
p_dec
->
p_aout_input
=
aout_DecNew
(
p_dec
->
p_fifo
,
...
...
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