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
2b65b38b
Commit
2b65b38b
authored
Feb 12, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed pause bug.
parent
5a796310
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
src/video_parser/vpar_synchro.c
src/video_parser/vpar_synchro.c
+16
-9
No files found.
src/video_parser/vpar_synchro.c
View file @
2b65b38b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* vpar_synchro.c : frame dropping routines
* vpar_synchro.c : frame dropping routines
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: vpar_synchro.c,v 1.8
1 2001/02/11 01:15:12 sam
Exp $
* $Id: vpar_synchro.c,v 1.8
2 2001/02/12 10:46:26 massiot
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
@@ -380,11 +380,16 @@ void vpar_SynchroEnd( vpar_thread_t * p_vpar, int i_garbage )
...
@@ -380,11 +380,16 @@ void vpar_SynchroEnd( vpar_thread_t * p_vpar, int i_garbage )
vlc_mutex_lock
(
&
p_vpar
->
synchro
.
fifo_lock
);
vlc_mutex_lock
(
&
p_vpar
->
synchro
.
fifo_lock
);
if
(
!
i_garbage
)
if
(
!
i_garbage
)
{
{
tau
=
mdate
()
-
p_vpar
->
synchro
.
p_date_fifo
[
p_vpar
->
synchro
.
i_start
];
tau
=
mdate
()
-
p_vpar
->
synchro
.
p_date_fifo
[
p_vpar
->
synchro
.
i_start
];
i_coding_type
=
p_vpar
->
synchro
.
pi_coding_types
[
p_vpar
->
synchro
.
i_start
];
i_coding_type
=
p_vpar
->
synchro
.
pi_coding_types
[
p_vpar
->
synchro
.
i_start
];
/* If duration too high, something happened (pause ?), so don't
* take it into account. */
if
(
tau
<
3
*
p_vpar
->
synchro
.
p_tau
[
i_coding_type
]
||
!
p_vpar
->
synchro
.
pi_meaningful
[
i_coding_type
]
)
{
/* Mean with average tau, to ensure stability. */
/* Mean with average tau, to ensure stability. */
p_vpar
->
synchro
.
p_tau
[
i_coding_type
]
=
p_vpar
->
synchro
.
p_tau
[
i_coding_type
]
=
(
p_vpar
->
synchro
.
pi_meaningful
[
i_coding_type
]
(
p_vpar
->
synchro
.
pi_meaningful
[
i_coding_type
]
...
@@ -394,6 +399,8 @@ void vpar_SynchroEnd( vpar_thread_t * p_vpar, int i_garbage )
...
@@ -394,6 +399,8 @@ void vpar_SynchroEnd( vpar_thread_t * p_vpar, int i_garbage )
{
{
p_vpar
->
synchro
.
pi_meaningful
[
i_coding_type
]
++
;
p_vpar
->
synchro
.
pi_meaningful
[
i_coding_type
]
++
;
}
}
}
#ifdef DEBUG_VPAR
#ifdef DEBUG_VPAR
intf_DbgMsg
(
"vpar synchro debug: finished decoding %s (%lld)"
,
intf_DbgMsg
(
"vpar synchro debug: finished decoding %s (%lld)"
,
i_coding_type
==
B_CODING_TYPE
?
"B"
:
i_coding_type
==
B_CODING_TYPE
?
"B"
:
...
...
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