Commit 8709a539 authored by bcoudurier's avatar bcoudurier

In mpegts muxer, free adts context and temporary data

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22428 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0d232c70
......@@ -869,6 +869,8 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
memcpy(ts_st->payload + ts_st->payload_index, buf, size);
ts_st->payload_index += size;
av_free(data);
return 0;
}
......@@ -888,6 +890,7 @@ static int mpegts_write_end(AVFormatContext *s)
mpegts_write_pes(s, st, ts_st->payload, ts_st->payload_index,
ts_st->payload_pts, ts_st->payload_dts);
}
av_freep(&ts_st->adts);
}
put_flush_packet(s->pb);
......
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