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
065a61df
Commit
065a61df
authored
Dec 20, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. fixed "-a [ mpeg | ac3 | lpcm | off ]" option
parent
6aaf635c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/input/mpeg_system.c
src/input/mpeg_system.c
+5
-5
No files found.
src/input/mpeg_system.c
View file @
065a61df
...
...
@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: mpeg_system.c,v 1.1
1 2000/12/20 17:49:40 massiot
Exp $
* $Id: mpeg_system.c,v 1.1
2 2000/12/20 20:09:19 sam
Exp $
*
* Authors:
*
...
...
@@ -816,8 +816,8 @@ es_descriptor_t * input_ParsePS( input_thread_t * p_input,
/* MPEG audio */
p_es
->
i_type
=
MPEG2_AUDIO_ES
;
#ifdef AUTO_SPAWN
if
(
main_GetIntVariable
(
INPUT_DVD_AUDIO_VAR
,
REQUESTED_MPEG
)
if
(
main_GetIntVariable
(
INPUT_DVD_AUDIO_VAR
,
0
)
==
REQUESTED_MPEG
&&
main_GetIntVariable
(
INPUT_DVD_CHANNEL_VAR
,
0
)
==
(
p_es
->
i_stream_id
&
0x1F
)
)
{
...
...
@@ -830,8 +830,8 @@ es_descriptor_t * input_ParsePS( input_thread_t * p_input,
/* AC3 audio (0x80->0x8F) */
p_es
->
i_type
=
AC3_AUDIO_ES
;
#ifdef AUTO_SPAWN
if
(
main_GetIntVariable
(
INPUT_DVD_AUDIO_VAR
,
REQUESTED_AC3
)
if
(
main_GetIntVariable
(
INPUT_DVD_AUDIO_VAR
,
0
)
==
REQUESTED_AC3
&&
main_GetIntVariable
(
INPUT_DVD_CHANNEL_VAR
,
0
)
==
((
p_es
->
i_stream_id
&
0xF00
)
>>
8
)
)
{
...
...
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