[FFmpeg-cvslog] ffplay: use AVFrame accessor.

Nicolas George git at videolan.org
Thu May 3 19:05:31 CEST 2012


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sun Apr 29 11:17:16 2012 +0200| [234e00259ba036b53dc24f78f23c6afe8f108d74] | committer: Nicolas George

ffplay: use AVFrame accessor.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=234e00259ba036b53dc24f78f23c6afe8f108d74
---

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

diff --git a/ffplay.c b/ffplay.c
index 4cc1a82..4015aaf 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1500,7 +1500,7 @@ static int get_video_frame(VideoState *is, AVFrame *frame, int64_t *pts, AVPacke
         int ret = 1;
 
         if (decoder_reorder_pts == -1) {
-            *pts = *(int64_t*)av_opt_ptr(avcodec_get_frame_class(), frame, "best_effort_timestamp");
+            *pts = av_frame_get_best_effort_timestamp(frame);
         } else if (decoder_reorder_pts) {
             *pts = frame->pkt_pts;
         } else {



More information about the ffmpeg-cvslog mailing list