OSDN Git Service

Fix 100l pkt->pos typo.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 5 Mar 2010 03:34:47 +0000 (03:34 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 5 Mar 2010 03:34:47 +0000 (03:34 +0000)
Originally committed as revision 22217 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffplay.c

index 6ef0b25..424b550 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -1743,7 +1743,7 @@ static int video_thread(void *arg)
 #if CONFIG_AVFILTER
         ret = output_picture2(is, frame, pts,  -1); /* fixme: unknown pos */
 #else
-        ret = output_picture2(is, frame, pts,  pkt->pos);
+        ret = output_picture2(is, frame, pts,  pkt.pos);
         av_free_packet(&pkt);
 #endif
         if (ret < 0)