Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
382f3a5b
Commit
382f3a5b
authored
Mar 12, 2010
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print skip_frames variable.
Originally committed as revision 22482 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bb55e3a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ffplay.c
ffplay.c
+2
-2
No files found.
ffplay.c
View file @
382f3a5b
...
...
@@ -1282,8 +1282,8 @@ retry:
av_diff
=
0
;
if
(
is
->
audio_st
&&
is
->
video_st
)
av_diff
=
get_audio_clock
(
is
)
-
get_video_clock
(
is
);
printf
(
"%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB f=%"
PRId64
"/%"
PRId64
"
\r
"
,
get_master_clock
(
is
),
av_diff
,
aqsize
/
1024
,
vqsize
/
1024
,
sqsize
,
is
->
faulty_dts
,
is
->
faulty_pts
);
printf
(
"%7.2f A-V:%7.3f
s:%3.1f
aq=%5dKB vq=%5dKB sq=%5dB f=%"
PRId64
"/%"
PRId64
"
\r
"
,
get_master_clock
(
is
),
av_diff
,
FFMAX
(
is
->
skip_frames
-
1
,
0
),
aqsize
/
1024
,
vqsize
/
1024
,
sqsize
,
is
->
faulty_dts
,
is
->
faulty_pts
);
fflush
(
stdout
);
last_time
=
cur_time
;
}
...
...
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