From fca6259942b1c7c22f23d315db5caa414f9fdd06 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Fri, 5 Mar 2010 03:34:47 +0000
Subject: [PATCH] Fix 100l pkt->pos typo.

Originally committed as revision 22217 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 ffplay.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffplay.c b/ffplay.c
index 6ef0b25f286..424b5507882 100644
--- 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)
-- 
GitLab