OSDN Git Service

ffplay: use av_frame_get_pkt_pos instead directly accessing pkt pos
authorMarton Balint <cus@passwd.hu>
Sat, 19 Oct 2013 15:25:57 +0000 (17:25 +0200)
committerMarton Balint <cus@passwd.hu>
Sat, 26 Oct 2013 10:23:54 +0000 (12:23 +0200)
Signed-off-by: Marton Balint <cus@passwd.hu>
ffplay.c

index 0be7414..54764c6 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -1715,7 +1715,7 @@ static int get_video_frame(VideoState *is, AVFrame *frame, AVPacket *pkt, int *s
                     !isnan(ptsdiff) && ptsdiff > 0 && ptsdiff < AV_NOSYNC_THRESHOLD &&
                     clockdiff + ptsdiff - is->frame_last_filter_delay < 0 &&
                     is->videoq.nb_packets) {
-                    is->frame_last_dropped_pos = pkt->pos;
+                    is->frame_last_dropped_pos = av_frame_get_pkt_pos(frame);
                     is->frame_last_dropped_pts = dpts;
                     is->frame_last_dropped_serial = *serial;
                     is->frame_drops_early++;
@@ -1983,7 +1983,7 @@ static int video_thread(void *arg)
         }
 #else
         pts = (frame->pts == AV_NOPTS_VALUE) ? NAN : frame->pts * av_q2d(is->video_st->time_base);
-        ret = queue_picture(is, frame, pts, pkt.pos, serial);
+        ret = queue_picture(is, frame, pts, av_frame_get_pkt_pos(frame), serial);
         av_frame_unref(frame);
 #endif