Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
3966a574
Commit
3966a574
authored
15 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
10l fix timestamps (lavfi update broke them)
Originally committed as revision 22218 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fca62599
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ffplay.c
+5
-9
5 additions, 9 deletions
ffplay.c
with
5 additions
and
9 deletions
ffplay.c
+
5
−
9
View file @
3966a574
...
...
@@ -1457,7 +1457,7 @@ static int output_picture2(VideoState *is, AVFrame *src_frame, double pts1, int6
return
queue_picture
(
is
,
src_frame
,
pts
,
pos
);
}
static
int
get_video_frame
(
VideoState
*
is
,
AVFrame
*
frame
,
u
int64_t
*
pts
,
AVPacket
*
pkt
)
static
int
get_video_frame
(
VideoState
*
is
,
AVFrame
*
frame
,
int64_t
*
pts
,
AVPacket
*
pkt
)
{
int
len1
,
got_picture
,
i
;
...
...
@@ -1519,9 +1519,6 @@ static int get_video_frame(VideoState *is, AVFrame *frame, uint64_t *pts, AVPack
else
*
pts
=
0
;
/* put pts into units of 1/AV_TIME_BASE */
*
pts
=
av_rescale_q
(
pts
,
is
->
video_st
->
time_base
,
AV_TIME_BASE_Q
);
// if (len1 < 0)
// break;
if
(
got_picture
)
...
...
@@ -1556,7 +1553,7 @@ static int input_request_frame(AVFilterLink *link)
{
FilterPriv
*
priv
=
link
->
src
->
priv
;
AVFilterPicRef
*
picref
;
u
int64_t
pts
=
0
;
int64_t
pts
=
0
;
AVPacket
pkt
;
int
ret
;
...
...
@@ -1636,7 +1633,7 @@ static int output_query_formats(AVFilterContext *ctx)
}
static
int
get_filtered_video_frame
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
,
u
int64_t
*
pts
)
int64_t
*
pts
)
{
AVFilterPicRef
*
pic
;
...
...
@@ -1674,7 +1671,7 @@ static int video_thread(void *arg)
{
VideoState
*
is
=
arg
;
AVFrame
*
frame
=
avcodec_alloc_frame
();
u
int64_t
pts_int
;
int64_t
pts_int
;
double
pts
;
int
ret
;
...
...
@@ -1737,8 +1734,7 @@ static int video_thread(void *arg)
if
(
!
ret
)
continue
;
pts
=
pts_int
;
pts
/=
AV_TIME_BASE
;
pts
=
pts_int
*
av_q2d
(
is
->
video_st
->
time_base
);
#if CONFIG_AVFILTER
ret
=
output_picture2
(
is
,
frame
,
pts
,
-
1
);
/* fixme: unknown pos */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment