Commit b76402a9 authored by michael's avatar michael

Fix 100l pkt->pos typo.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22217 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0df353ed
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment