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
9748bd27
Commit
9748bd27
authored
Apr 22, 2005
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout_synchro: less verbose.
parent
53accaad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/video_output/vout_synchro.c
src/video_output/vout_synchro.c
+5
-1
No files found.
src/video_output/vout_synchro.c
View file @
9748bd27
...
@@ -367,10 +367,12 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
...
@@ -367,10 +367,12 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
if
(
p_synchro
->
i_eta_p
if
(
p_synchro
->
i_eta_p
&&
p_synchro
->
i_eta_p
!=
p_synchro
->
i_n_p
)
&&
p_synchro
->
i_eta_p
!=
p_synchro
->
i_n_p
)
{
{
#if 0
if( !p_synchro->b_quiet )
if( !p_synchro->b_quiet )
msg_Dbg( p_synchro,
msg_Dbg( p_synchro,
"stream periodicity changed from P[%d] to P[%d]",
"stream periodicity changed from P[%d] to P[%d]",
p_synchro->i_n_p, p_synchro->i_eta_p );
p_synchro->i_n_p, p_synchro->i_eta_p );
#endif
p_synchro
->
i_n_p
=
p_synchro
->
i_eta_p
;
p_synchro
->
i_n_p
=
p_synchro
->
i_eta_p
;
}
}
p_synchro
->
i_eta_p
=
p_synchro
->
i_eta_b
=
0
;
p_synchro
->
i_eta_p
=
p_synchro
->
i_eta_b
=
0
;
...
@@ -399,7 +401,7 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
...
@@ -399,7 +401,7 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
#else
#else
if
(
p_synchro
->
i_pic
>=
100
)
if
(
p_synchro
->
i_pic
>=
100
)
{
{
if
(
!
p_synchro
->
b_quiet
)
if
(
!
p_synchro
->
b_quiet
&&
p_synchro
->
i_trashed_pic
!=
0
)
msg_Dbg
(
p_synchro
,
"decoded %d/%d pictures"
,
msg_Dbg
(
p_synchro
,
"decoded %d/%d pictures"
,
p_synchro
->
i_pic
p_synchro
->
i_pic
-
p_synchro
->
i_trashed_pic
,
-
p_synchro
->
i_trashed_pic
,
...
@@ -415,10 +417,12 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
...
@@ -415,10 +417,12 @@ void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
if
(
p_synchro
->
i_eta_b
if
(
p_synchro
->
i_eta_b
&&
p_synchro
->
i_eta_b
!=
p_synchro
->
i_n_b
)
&&
p_synchro
->
i_eta_b
!=
p_synchro
->
i_n_b
)
{
{
#if 0
if( !p_synchro->b_quiet )
if( !p_synchro->b_quiet )
msg_Dbg( p_synchro,
msg_Dbg( p_synchro,
"stream periodicity changed from B[%d] to B[%d]",
"stream periodicity changed from B[%d] to B[%d]",
p_synchro->i_n_b, p_synchro->i_eta_b );
p_synchro->i_n_b, p_synchro->i_eta_b );
#endif
p_synchro
->
i_n_b
=
p_synchro
->
i_eta_b
;
p_synchro
->
i_n_b
=
p_synchro
->
i_eta_b
;
}
}
p_synchro
->
i_eta_b
=
0
;
p_synchro
->
i_eta_b
=
0
;
...
...
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