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
c49e960a
Commit
c49e960a
authored
Jun 17, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: dump AVPacket.convergence_duration.
parent
9ae3e455
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
ffprobe.xsd
doc/ffprobe.xsd
+2
-0
ffprobe.c
ffprobe.c
+2
-0
No files found.
doc/ffprobe.xsd
View file @
c49e960a
...
...
@@ -39,6 +39,8 @@
<xsd:attribute
name=
"dts_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"duration"
type=
"xsd:long"
/>
<xsd:attribute
name=
"duration_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"convergence_duration"
type=
"xsd:long"
/>
<xsd:attribute
name=
"convergence_duration_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"size"
type=
"xsd:long"
use=
"required"
/>
<xsd:attribute
name=
"pos"
type=
"xsd:long"
/>
<xsd:attribute
name=
"flags"
type=
"xsd:string"
use=
"required"
/>
...
...
ffprobe.c
View file @
c49e960a
...
...
@@ -1581,6 +1581,8 @@ static void show_packet(WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pk
print_time
(
"dts_time"
,
pkt
->
dts
,
&
st
->
time_base
);
print_duration_ts
(
"duration"
,
pkt
->
duration
);
print_duration_time
(
"duration_time"
,
pkt
->
duration
,
&
st
->
time_base
);
print_duration_ts
(
"convergence_duration"
,
pkt
->
convergence_duration
);
print_duration_time
(
"convergence_duration_time"
,
pkt
->
convergence_duration
,
&
st
->
time_base
);
print_val
(
"size"
,
pkt
->
size
,
unit_byte_str
);
if
(
pkt
->
pos
!=
-
1
)
print_fmt
(
"pos"
,
"%"
PRId64
,
pkt
->
pos
);
else
print_str_opt
(
"pos"
,
"N/A"
);
...
...
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