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
716ae7ca
Commit
716ae7ca
authored
Feb 05, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indent
Originally committed as revision 7844 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b929eb50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
seek_test.c
tests/seek_test.c
+7
-7
No files found.
tests/seek_test.c
View file @
716ae7ca
...
...
@@ -66,13 +66,13 @@ int main(int argc, char **argv)
memset
(
&
pkt
,
0
,
sizeof
(
pkt
));
if
(
ret
>=
0
){
ret
=
av_read_frame
(
ic
,
&
pkt
);
printf
(
"ret:%2d"
,
ret
);
if
(
ret
>=
0
){
st
=
ic
->
streams
[
pkt
.
stream_index
];
printf
(
" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d"
,
pkt
.
stream_index
,
pkt
.
dts
*
av_q2d
(
st
->
time_base
),
pkt
.
pts
*
av_q2d
(
st
->
time_base
),
pkt
.
pos
,
pkt
.
size
,
pkt
.
flags
);
}
printf
(
"
\n
"
);
ret
=
av_read_frame
(
ic
,
&
pkt
);
printf
(
"ret:%2d"
,
ret
);
if
(
ret
>=
0
){
st
=
ic
->
streams
[
pkt
.
stream_index
];
printf
(
" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d"
,
pkt
.
stream_index
,
pkt
.
dts
*
av_q2d
(
st
->
time_base
),
pkt
.
pts
*
av_q2d
(
st
->
time_base
),
pkt
.
pos
,
pkt
.
size
,
pkt
.
flags
);
}
printf
(
"
\n
"
);
}
if
(
i
>
25
)
break
;
...
...
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