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
8d1de449
Commit
8d1de449
authored
Mar 08, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: show packet duration in frame
parent
9083d09e
Show 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 @
8d1de449
...
...
@@ -53,6 +53,8 @@
<xsd:attribute
name=
"pkt_pts_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"pkt_dts"
type=
"xsd:long"
/>
<xsd:attribute
name=
"pkt_dts_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"pkt_duration"
type=
"xsd:long"
/>
<xsd:attribute
name=
"pkt_duration_time"
type=
"xsd:float"
/>
<xsd:attribute
name=
"pkt_pos"
type=
"xsd:long"
/>
<!-- audio attributes -->
...
...
ffprobe.c
View file @
8d1de449
...
...
@@ -1567,6 +1567,8 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream)
print_time
(
"pkt_pts_time"
,
frame
->
pkt_pts
,
&
stream
->
time_base
);
print_ts
(
"pkt_dts"
,
frame
->
pkt_dts
);
print_time
(
"pkt_dts_time"
,
frame
->
pkt_dts
,
&
stream
->
time_base
);
print_duration_ts
(
"pkt_duration"
,
frame
->
pkt_duration
);
print_duration_time
(
"pkt_duration_time"
,
frame
->
pkt_duration
,
&
stream
->
time_base
);
if
(
frame
->
pkt_pos
!=
-
1
)
print_fmt
(
"pkt_pos"
,
"%"
PRId64
,
frame
->
pkt_pos
);
else
print_str_opt
(
"pkt_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