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
72bb01ef
Commit
72bb01ef
authored
Jun 24, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/ogg.c: fix for ogg web streams.
parent
8b67039c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/demux/ogg.c
modules/demux/ogg.c
+3
-3
No files found.
modules/demux/ogg.c
View file @
72bb01ef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ogg.c : ogg stream input module for vlc
* ogg.c : ogg stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: ogg.c,v 1.2
7 2003/06/23 23:51:31
gbazin Exp $
* $Id: ogg.c,v 1.2
8 2003/06/24 00:31:34
gbazin Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -1416,9 +1416,9 @@ static int Demux( input_thread_t * p_input )
...
@@ -1416,9 +1416,9 @@ static int Demux( input_thread_t * p_input )
}
}
#undef p_stream
#undef p_stream
/*
Sanity check
for streams where the granulepos of the header packets
/*
This is
for streams where the granulepos of the header packets
* don't match these of the data packets (eg. ogg web radios). */
* don't match these of the data packets (eg. ogg web radios). */
if
(
p_ogg
->
i_old_pcr
==
0
&&
p_ogg
->
i_pcr
>
100000
0
)
if
(
p_ogg
->
i_old_pcr
==
0
&&
p_ogg
->
i_pcr
>
0
)
p_input
->
stream
.
p_selected_program
->
i_synchro_state
=
SYNCHRO_REINIT
;
p_input
->
stream
.
p_selected_program
->
i_synchro_state
=
SYNCHRO_REINIT
;
/* Call the pace control */
/* Call the pace control */
...
...
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