diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-05 03:34:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-05 03:34:47 +0000 |
commit | fca6259942b1c7c22f23d315db5caa414f9fdd06 (patch) | |
tree | 1b099d9bc2f1801830cd53dc6aa2392eefe85602 /ffplay.c | |
parent | 917d2bb348077079df64056a5dd6f4285aedcacb (diff) | |
download | ffmpeg-fca6259942b1c7c22f23d315db5caa414f9fdd06.tar.gz |
Fix 100l pkt->pos typo.
Originally committed as revision 22217 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |