Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
991b8fc1
Commit
991b8fc1
authored
Feb 12, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* We can now seek at position 0 :p ;
* Fixed a typo in my previous commit.
parent
509d5ac4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
include/input.h
include/input.h
+2
-1
src/input/input.c
src/input/input.c
+4
-4
src/video_parser/vpar_synchro.c
src/video_parser/vpar_synchro.c
+2
-2
No files found.
include/input.h
View file @
991b8fc1
...
...
@@ -2,7 +2,7 @@
* input.h: structures of the input not exported to other modules
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input.h,v 1.2
8 2001/02/08 17:44:12
massiot Exp $
* $Id: input.h,v 1.2
9 2001/02/12 13:20:14
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -34,6 +34,7 @@
* of data loss (this should be < 188). */
#define PADDING_PACKET_NUMBER 10
/* Number of padding packets top insert to
* escape a decoder. */
#define NO_SEEK -1
/*****************************************************************************
* Prototypes from input_ext-dec.c
...
...
src/input/input.c
View file @
991b8fc1
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input.c,v 1.
79 2001/02/11 01:15:11 sam
Exp $
* $Id: input.c,v 1.
80 2001/02/12 13:20:14 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -105,7 +105,7 @@ input_thread_t *input_CreateThread ( playlist_item_t *p_item, int *pi_status )
p_input
->
stream
.
i_selected_es_number
=
0
;
p_input
->
stream
.
i_pgrm_number
=
0
;
p_input
->
stream
.
i_new_status
=
p_input
->
stream
.
i_new_rate
=
0
;
p_input
->
stream
.
i_seek
=
0
;
p_input
->
stream
.
i_seek
=
NO_SEEK
;
/* Initialize stream control properties. */
p_input
->
stream
.
control
.
i_status
=
PLAYING_S
;
...
...
@@ -198,7 +198,7 @@ static void RunThread( input_thread_t *p_input )
#endif
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
if
(
p_input
->
stream
.
i_seek
)
if
(
p_input
->
stream
.
i_seek
!=
NO_SEEK
)
{
if
(
p_input
->
stream
.
b_seekable
&&
p_input
->
pf_seek
!=
NULL
)
{
...
...
@@ -216,7 +216,7 @@ static void RunThread( input_thread_t *p_input )
p_pgrm
->
i_synchro_state
=
SYNCHRO_REINIT
;
}
}
p_input
->
stream
.
i_seek
=
0
;
p_input
->
stream
.
i_seek
=
NO_SEEK
;
}
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
...
...
src/video_parser/vpar_synchro.c
View file @
991b8fc1
...
...
@@ -2,7 +2,7 @@
* vpar_synchro.c : frame dropping routines
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: vpar_synchro.c,v 1.8
3 2001/02/12 11:22:31
massiot Exp $
* $Id: vpar_synchro.c,v 1.8
4 2001/02/12 13:20:15
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -583,7 +583,7 @@ void vpar_SynchroNewPicture( vpar_thread_t * p_vpar, int i_coding_type,
if
(
p_vpar
->
synchro
.
backward_pts
+
DEFAULT_PTS_DELAY
<
now
)
{
/* The same. */
p_vpar
->
synchro
.
current
_pts
=
0
;
p_vpar
->
synchro
.
backward
_pts
=
0
;
}
#ifdef STATS
...
...
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