Commit f8d7de22 authored by michaelni's avatar michaelni

memory leak fix by (Tom Dexter <devel at www dot digitalaudiorock dot com>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2216 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8f2d1f68
......@@ -555,6 +555,7 @@ static void flush_packet_queue(AVFormatContext *s)
if (!pktl)
break;
s->packet_buffer = pktl->next;
av_free_packet(&pktl->pkt);
av_free(pktl);
}
}
......@@ -594,9 +595,9 @@ static void av_estimate_timings_from_pts(AVFormatContext *ic)
if (pkt->pts != AV_NOPTS_VALUE) {
if (st->start_time == AV_NOPTS_VALUE)
st->start_time = (int64_t)((double)pkt->pts * ic->pts_num * (double)AV_TIME_BASE / ic->pts_den);
}
av_free_packet(pkt);
}
}
av_free_packet(pkt);
}
/* we compute the minimum start_time and use it as default */
start_time = MAXINT64;
......
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