Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-04 00:21:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-05 06:22:10 +0400
commit406e9647a08701d6b51f2e8abcb0166c74230917 (patch)
tree6ef55a32aa96810927e4ea71027997b1573ec200 /ffplay.c
parent738c603a22dc84f403ab5f23586383195efe1a70 (diff)
ffplay: Avoid directly accessing AVFrame fields that differ between forks.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 51753e24aa..c1fe937ec4 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1486,7 +1486,7 @@ static int get_video_frame(VideoState *is, AVFrame *frame, int64_t *pts, AVPacke
int ret = 1;
if (decoder_reorder_pts == -1) {
- *pts = frame->best_effort_timestamp;
+ *pts = *(int64_t*)av_opt_ptr(avcodec_get_frame_class(), frame, "best_effort_timestamp");
} else if (decoder_reorder_pts) {
*pts = frame->pkt_pts;
} else {