Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
35deef06
Commit
35deef06
authored
Nov 10, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: get PTS delay from stream rather than access (fixes #8457)
parent
3f33a255
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
src/input/input.c
src/input/input.c
+2
-6
No files found.
src/input/input.c
View file @
35deef06
...
@@ -2317,12 +2317,6 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2317,12 +2317,6 @@ static int InputSourceInit( input_thread_t *p_input,
goto
error
;
goto
error
;
}
}
/* Get infos from access */
if
(
!
p_input
->
b_preparsing
)
{
access_Control
(
p_access
,
ACCESS_GET_PTS_DELAY
,
&
i_pts_delay
);
}
/* Access-forced demuxer (PARENTAL ADVISORY: EXPLICIT HACK) */
/* Access-forced demuxer (PARENTAL ADVISORY: EXPLICIT HACK) */
if
(
!*
psz_demux
&&
*
p_access
->
psz_demux
)
if
(
!*
psz_demux
&&
*
p_access
->
psz_demux
)
psz_demux
=
p_access
->
psz_demux
;
psz_demux
=
p_access
->
psz_demux
;
...
@@ -2411,6 +2405,8 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2411,6 +2405,8 @@ static int InputSourceInit( input_thread_t *p_input,
var_SetBool
(
p_input
,
"can-seek"
,
b
);
var_SetBool
(
p_input
,
"can-seek"
,
b
);
in
->
b_title_demux
=
false
;
in
->
b_title_demux
=
false
;
stream_Control
(
p_stream
,
STREAM_GET_PTS_DELAY
,
&
i_pts_delay
);
}
}
in
->
p_demux
=
demux_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
in
->
p_demux
=
demux_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
...
...
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