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
807e7ab0
Commit
807e7ab0
authored
Feb 01, 2000
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rajout de #define SAM_SYNCHRO si sam veut reprendre son code.
parent
008db608
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
include/vpar_synchro.h
include/vpar_synchro.h
+1
-1
src/video_parser/video_parser.c
src/video_parser/video_parser.c
+1
-1
src/video_parser/vpar_headers.c
src/video_parser/vpar_headers.c
+2
-2
src/video_parser/vpar_synchro.c
src/video_parser/vpar_synchro.c
+1
-1
No files found.
include/vpar_synchro.h
View file @
807e7ab0
...
...
@@ -18,7 +18,7 @@
/*****************************************************************************
* video_synchro_t and video_synchro_tab_s : timers for the video synchro
*****************************************************************************/
#if
0
#if
def SAM_SYNCHRO
typedef
struct
video_synchro_tab_s
{
double
mean
;
...
...
src/video_parser/video_parser.c
View file @
807e7ab0
...
...
@@ -245,7 +245,7 @@ static int InitThread( vpar_thread_t *p_vpar )
/*
* Initialize the synchro properties
*/
#if
0
#if
def SAM_SYNCHRO
p_vpar
->
synchro
.
i_last_decode_pts
=
0
;
p_vpar
->
synchro
.
i_last_display_pts
=
0
;
p_vpar
->
synchro
.
i_images_since_pts
=
0
;
...
...
src/video_parser/vpar_headers.c
View file @
807e7ab0
...
...
@@ -156,7 +156,7 @@ static void __inline__ ReferenceUpdate( vpar_thread_t * p_vpar,
vout_UnlinkPicture
(
p_vpar
->
p_vout
,
p_vpar
->
sequence
.
p_forward
);
if
(
p_vpar
->
sequence
.
p_backward
!=
NULL
)
{
#if
0
#if
def SAM_SYNCHRO
vout_DatePicture
(
p_vpar
->
p_vout
,
p_vpar
->
sequence
.
p_backward
,
vpar_SynchroDate
(
p_vpar
)
);
#else
...
...
@@ -172,7 +172,7 @@ static void __inline__ ReferenceUpdate( vpar_thread_t * p_vpar,
p_vpar
->
sequence
.
p_backward
=
p_newref
;
if
(
p_newref
!=
NULL
)
vout_LinkPicture
(
p_vpar
->
p_vout
,
p_newref
);
#if
1
#if
ndef SAM_SYNCHRO
p_vpar
->
synchro
.
i_coding_type
=
i_coding_type
;
#endif
}
...
...
src/video_parser/vpar_synchro.c
View file @
807e7ab0
...
...
@@ -43,7 +43,7 @@
* Local prototypes
*/
#if
0
#if
def SAM_SYNCHRO
/*****************************************************************************
* vpar_SynchroUpdateTab : Update a mean table in the synchro structure
*****************************************************************************/
...
...
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