[PATCH] In get_video_frame(), use frame->pkt_pts rather than reordered_opaque, which is deprecated for this specific use.

Stefano Sabatini stefano.sabatini-lala
Sun Jan 16 18:39:34 CET 2011


---
 ffplay.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ffplay.c b/ffplay.c
index d57ad4e..8bf5843 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1570,16 +1570,15 @@ static int get_video_frame(VideoState *is, AVFrame *frame, int64_t *pts, AVPacke
         return 0;
     }
 
-    is->video_st->codec->reordered_opaque = pkt->pts;
     len1 = avcodec_decode_video2(is->video_st->codec,
                                  frame, &got_picture,
                                  pkt);
 
     if (got_picture) {
         if (decoder_reorder_pts == -1) {
-            *pts = guess_correct_pts(&is->pts_ctx, frame->reordered_opaque, pkt->dts);
+            *pts = guess_correct_pts(&is->pts_ctx, frame->pkt_pts, pkt->dts);
         } else if (decoder_reorder_pts) {
-            *pts = frame->reordered_opaque;
+            *pts = frame->pkt_pts;
         } else {
             *pts = pkt->dts;
         }
-- 
1.7.2.3


--FCuugMFkClbJLl1L--



More information about the ffmpeg-devel mailing list