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
41db429d
Commit
41db429d
authored
15 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
decoder reorder pts auto detection.
Originally committed as revision 21579 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
6371c81a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ffplay.c
+24
-5
24 additions, 5 deletions
ffplay.c
with
24 additions
and
5 deletions
ffplay.c
+
24
−
5
View file @
41db429d
...
@@ -177,6 +177,12 @@ typedef struct VideoState {
...
@@ -177,6 +177,12 @@ typedef struct VideoState {
// QETimer *video_timer;
// QETimer *video_timer;
char
filename
[
1024
];
char
filename
[
1024
];
int
width
,
height
,
xleft
,
ytop
;
int
width
,
height
,
xleft
,
ytop
;
int64_t
faulty_pts
;
int64_t
faulty_dts
;
int64_t
last_dts_for_fault_detection
;
int64_t
last_pts_for_fault_detection
;
}
VideoState
;
}
VideoState
;
static
void
show_help
(
void
);
static
void
show_help
(
void
);
...
@@ -216,7 +222,7 @@ static enum AVDiscard skip_idct= AVDISCARD_DEFAULT;
...
@@ -216,7 +222,7 @@ static enum AVDiscard skip_idct= AVDISCARD_DEFAULT;
static
enum
AVDiscard
skip_loop_filter
=
AVDISCARD_DEFAULT
;
static
enum
AVDiscard
skip_loop_filter
=
AVDISCARD_DEFAULT
;
static
int
error_recognition
=
FF_ER_CAREFUL
;
static
int
error_recognition
=
FF_ER_CAREFUL
;
static
int
error_concealment
=
3
;
static
int
error_concealment
=
3
;
static
int
decoder_reorder_pts
=
0
;
static
int
decoder_reorder_pts
=
-
1
;
/* current context */
/* current context */
static
int
is_full_screen
;
static
int
is_full_screen
;
...
@@ -1155,8 +1161,8 @@ static void video_refresh_timer(void *opaque)
...
@@ -1155,8 +1161,8 @@ static void video_refresh_timer(void *opaque)
av_diff
=
0
;
av_diff
=
0
;
if
(
is
->
audio_st
&&
is
->
video_st
)
if
(
is
->
audio_st
&&
is
->
video_st
)
av_diff
=
get_audio_clock
(
is
)
-
get_video_clock
(
is
);
av_diff
=
get_audio_clock
(
is
)
-
get_video_clock
(
is
);
printf
(
"%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB
\r
"
,
printf
(
"%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB
f=%Ld/%Ld
\r
"
,
get_master_clock
(
is
),
av_diff
,
aqsize
/
1024
,
vqsize
/
1024
,
sqsize
);
get_master_clock
(
is
),
av_diff
,
aqsize
/
1024
,
vqsize
/
1024
,
sqsize
,
is
->
faulty_dts
,
is
->
faulty_pts
);
fflush
(
stdout
);
fflush
(
stdout
);
last_time
=
cur_time
;
last_time
=
cur_time
;
}
}
...
@@ -1334,6 +1340,8 @@ static int video_thread(void *arg)
...
@@ -1334,6 +1340,8 @@ static int video_thread(void *arg)
if
(
pkt
->
data
==
flush_pkt
.
data
){
if
(
pkt
->
data
==
flush_pkt
.
data
){
avcodec_flush_buffers
(
is
->
video_st
->
codec
);
avcodec_flush_buffers
(
is
->
video_st
->
codec
);
is
->
last_dts_for_fault_detection
=
is
->
last_pts_for_fault_detection
=
INT64_MIN
;
continue
;
continue
;
}
}
...
@@ -1344,7 +1352,18 @@ static int video_thread(void *arg)
...
@@ -1344,7 +1352,18 @@ static int video_thread(void *arg)
frame
,
&
got_picture
,
frame
,
&
got_picture
,
pkt
);
pkt
);
if
(
(
decoder_reorder_pts
||
pkt
->
dts
==
AV_NOPTS_VALUE
)
if
(
pkt
->
dts
!=
AV_NOPTS_VALUE
){
is
->
faulty_dts
+=
pkt
->
dts
<=
is
->
last_dts_for_fault_detection
;
is
->
last_dts_for_fault_detection
=
pkt
->
dts
;
}
if
(
frame
->
reordered_opaque
!=
AV_NOPTS_VALUE
){
is
->
faulty_pts
+=
frame
->
reordered_opaque
<=
is
->
last_pts_for_fault_detection
;
is
->
last_pts_for_fault_detection
=
frame
->
reordered_opaque
;
}
if
(
(
decoder_reorder_pts
==
1
||
decoder_reorder_pts
&&
is
->
faulty_pts
<
is
->
faulty_dts
||
pkt
->
dts
==
AV_NOPTS_VALUE
)
&&
frame
->
reordered_opaque
!=
AV_NOPTS_VALUE
)
&&
frame
->
reordered_opaque
!=
AV_NOPTS_VALUE
)
pts
=
frame
->
reordered_opaque
;
pts
=
frame
->
reordered_opaque
;
else
if
(
pkt
->
dts
!=
AV_NOPTS_VALUE
)
else
if
(
pkt
->
dts
!=
AV_NOPTS_VALUE
)
...
@@ -2486,7 +2505,7 @@ static const OptionDef options[] = {
...
@@ -2486,7 +2505,7 @@ static const OptionDef options[] = {
{
"vismv"
,
HAS_ARG
|
OPT_FUNC2
|
OPT_EXPERT
,
{(
void
*
)
opt_vismv
},
"visualize motion vectors"
,
""
},
{
"vismv"
,
HAS_ARG
|
OPT_FUNC2
|
OPT_EXPERT
,
{(
void
*
)
opt_vismv
},
"visualize motion vectors"
,
""
},
{
"fast"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
fast
},
"non spec compliant optimizations"
,
""
},
{
"fast"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
fast
},
"non spec compliant optimizations"
,
""
},
{
"genpts"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
genpts
},
"generate pts"
,
""
},
{
"genpts"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
genpts
},
"generate pts"
,
""
},
{
"drp"
,
OPT_
BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
decoder_reorder_pts
},
"let decoder reorder pts"
,
""
},
{
"drp"
,
OPT_
INT
|
OPT_EXPERT
,
{(
void
*
)
&
decoder_reorder_pts
},
"let decoder reorder pts
0=off 1=on -1=auto
"
,
""
},
{
"lowres"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
lowres
},
""
,
""
},
{
"lowres"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
lowres
},
""
,
""
},
{
"skiploop"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
skip_loop_filter
},
""
,
""
},
{
"skiploop"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
skip_loop_filter
},
""
,
""
},
{
"skipframe"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
skip_frame
},
""
,
""
},
{
"skipframe"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
skip_frame
},
""
,
""
},
...
...
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