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
cb4cb202
Commit
cb4cb202
authored
Jan 22, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac.in: Re-added a52sys module, which was lost somewhere...
* Fixed bugs regarding Dolby Surround downmixing.
parent
f9975e29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
23 deletions
+22
-23
configure.ac.in
configure.ac.in
+1
-1
modules/audio_filter/converter/a52tofloat32.c
modules/audio_filter/converter/a52tofloat32.c
+12
-14
src/audio_output/output.c
src/audio_output/output.c
+9
-8
No files found.
configure.ac.in
View file @
cb4cb202
...
...
@@ -737,7 +737,7 @@ PLUGINS="${PLUGINS} aout_file"
#PLUGINS="${PLUGINS} scope"
PLUGINS="${PLUGINS} i420_rgb i420_yuy2 i422_yuy2 i420_ymga"
PLUGINS="${PLUGINS} id3 m3u"
PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm"
PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm
a52sys
"
PLUGINS="${PLUGINS} access_udp access_http ipv4 access_mms access_ftp"
PLUGINS="${PLUGINS} sap"
...
...
modules/audio_filter/converter/a52tofloat32.c
View file @
cb4cb202
...
...
@@ -4,7 +4,7 @@
* (http://liba52.sf.net/).
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: a52tofloat32.c,v 1.1
0 2002/12/25 02:23:36
massiot Exp $
* $Id: a52tofloat32.c,v 1.1
1 2003/01/22 09:54:28
massiot Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -66,6 +66,7 @@ struct aout_filter_sys_t
a52_state_t
*
p_liba52
;
/* liba52 internal structure */
vlc_bool_t
b_dynrng
;
/* see below */
int
i_flags
;
/* liba52 flags, see a52dec/doc/liba52.txt */
vlc_bool_t
b_dontwarn
;
int
i_nb_channels
;
/* number of float32 per sample */
};
...
...
@@ -116,6 +117,7 @@ static int Create( vlc_object_t * _p_filter )
}
p_sys
->
b_dynrng
=
config_GetInt
(
p_filter
,
"a52-dynrng"
);
p_sys
->
b_dontwarn
=
0
;
/* We'll do our own downmixing, thanks. */
p_sys
->
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
output
);
...
...
@@ -190,7 +192,7 @@ static int Create( vlc_object_t * _p_filter )
break
;
default:
msg_Err
(
p_filter
,
"unknow sample format !"
);
msg_Err
(
p_filter
,
"unknow
n
sample format !"
);
free
(
p_sys
);
return
-
1
;
}
...
...
@@ -293,19 +295,15 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
a52_frame
(
p_sys
->
p_liba52
,
p_in_buf
->
p_buffer
,
&
i_flags
,
&
i_sample_level
,
0
);
if
(
(
i_flags
&
A52_CHANNEL_MASK
)
!=
(
p_sys
->
i_flags
&
A52_CHANNEL_MASK
)
)
if
(
(
i_flags
&
A52_CHANNEL_MASK
)
!=
(
p_sys
->
i_flags
&
A52_CHANNEL_MASK
)
&&
!
p_sys
->
b_dontwarn
)
{
msg_Err
(
p_filter
,
"liba52 couldn't do the requested downmix 0x%x->0x%x"
,
p_sys
->
i_flags
&
A52_CHANNEL_MASK
,
i_flags
&
A52_CHANNEL_MASK
);
/* We do not know if the output has the same number of channels
* than the input, so die quietly... */
memset
(
p_out_buf
->
p_buffer
,
0
,
i_bytes_per_block
*
6
);
p_out_buf
->
i_nb_samples
=
p_in_buf
->
i_nb_samples
;
p_out_buf
->
i_nb_bytes
=
i_bytes_per_block
*
6
;
return
;
msg_Warn
(
p_filter
,
"liba52 couldn't do the requested downmix 0x%x->0x%x"
,
p_sys
->
i_flags
&
A52_CHANNEL_MASK
,
i_flags
&
A52_CHANNEL_MASK
);
p_sys
->
b_dontwarn
=
1
;
}
if
(
!
p_sys
->
b_dynrng
)
...
...
src/audio_output/output.c
View file @
cb4cb202
...
...
@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: output.c,v 1.
29 2003/01/20 10:59
:29 massiot Exp $
* $Id: output.c,v 1.
30 2003/01/22 09:54
:29 massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -119,18 +119,19 @@ int aout_OutputNew( aout_instance_t * p_aout,
{
/* Stereo - create the audio-channels variable. */
var_Create
(
p_aout
,
"audio-channels"
,
VLC_VAR_STRING
|
VLC_VAR_HASCHOICE
);
val
.
psz_string
=
N_
(
"Both"
);
if
(
p_aout
->
output
.
output
.
i_original_channels
&
AOUT_CHAN_DOLBYSTEREO
)
{
val
.
psz_string
=
N_
(
"Dolby Surround"
);
}
else
{
val
.
psz_string
=
N_
(
"Both"
);
}
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
);
val
.
psz_string
=
N_
(
"Left"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
);
val
.
psz_string
=
N_
(
"Right"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
);
if
(
p_aout
->
output
.
output
.
i_original_channels
&
AOUT_CHAN_DOLBYSTEREO
)
{
val
.
psz_string
=
N_
(
"Dolby Surround"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
);
}
p_aout
->
output
.
output
.
i_original_channels
&=
~
AOUT_CHAN_DOLBYSTEREO
;
var_AddCallback
(
p_aout
,
"audio-channels"
,
aout_ChannelsRestart
,
NULL
);
}
...
...
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