Commit b93e12fd authored by alexandru_mg3's avatar alexandru_mg3 Committed by Michael Niedermayer

ffplay: fix memleak if avfilter is disabled

parent 10ff2967
...@@ -1831,6 +1831,7 @@ static int video_thread(void *arg) ...@@ -1831,6 +1831,7 @@ static int video_thread(void *arg)
#else #else
ret = get_video_frame(is, frame, &pts_int, &pkt); ret = get_video_frame(is, frame, &pts_int, &pkt);
pos = pkt.pos; pos = pkt.pos;
av_free_packet(&pkt);
#endif #endif
if (ret < 0) goto the_end; if (ret < 0) goto the_end;
...@@ -1841,9 +1842,7 @@ static int video_thread(void *arg) ...@@ -1841,9 +1842,7 @@ static int video_thread(void *arg)
pts = pts_int*av_q2d(is->video_st->time_base); pts = pts_int*av_q2d(is->video_st->time_base);
ret = queue_picture(is, frame, pts, pos); ret = queue_picture(is, frame, pts, pos);
#if !CONFIG_AVFILTER
av_free_packet(&pkt);
#endif
if (ret < 0) if (ret < 0)
goto the_end; goto the_end;
......
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