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
b0f6c87b
Commit
b0f6c87b
authored
Nov 06, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed support for SPU and LPCM streams over network.
parent
015b2567
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/input/mpeg_system.c
src/input/mpeg_system.c
+3
-1
No files found.
src/input/mpeg_system.c
View file @
b0f6c87b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management
* mpeg_system.c: TS, PS and PES management
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: mpeg_system.c,v 1.6
0 2001/10/21 23:17:03 lool
Exp $
* $Id: mpeg_system.c,v 1.6
1 2001/11/06 00:59:31 sam
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
@@ -1502,6 +1502,7 @@ static void input_DecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
...
@@ -1502,6 +1502,7 @@ static void input_DecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
case
MPEG1_AUDIO_ES
:
case
MPEG1_AUDIO_ES
:
case
MPEG2_AUDIO_ES
:
case
MPEG2_AUDIO_ES
:
case
LPCM_AUDIO_ES
:
case
LPCM_AUDIO_ES
:
p_new_es
->
i_stream_id
=
0xBD
;
p_new_es
->
i_cat
=
AUDIO_ES
;
p_new_es
->
i_cat
=
AUDIO_ES
;
i_audio_es
+=
1
;
i_audio_es
+=
1
;
if
(
i_audio_es
==
i_required_audio_es
)
if
(
i_audio_es
==
i_required_audio_es
)
...
@@ -1516,6 +1517,7 @@ static void input_DecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
...
@@ -1516,6 +1517,7 @@ static void input_DecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
break
;
break
;
/* Not sure this one is fully specification-compliant */
/* Not sure this one is fully specification-compliant */
case
DVD_SPU_ES
:
case
DVD_SPU_ES
:
p_new_es
->
i_stream_id
=
0xBD
;
p_new_es
->
i_cat
=
SPU_ES
;
p_new_es
->
i_cat
=
SPU_ES
;
i_spu_es
+=
1
;
i_spu_es
+=
1
;
if
(
i_spu_es
==
i_required_spu_es
)
if
(
i_spu_es
==
i_required_spu_es
)
...
...
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