Commit b46cdd9d authored by James Almer's avatar James Almer

avformat/ttaenc: add a deinit function

Reviewed-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent a581bb66
......@@ -147,6 +147,7 @@ static int tta_write_trailer(AVFormatContext *s)
avio_wl32(tta->seek_table, crc);
size = avio_close_dyn_buf(tta->seek_table, &ptr);
avio_write(s->pb, ptr, size);
tta->seek_table = NULL;
av_free(ptr);
/* Write audio data */
......@@ -158,6 +159,14 @@ static int tta_write_trailer(AVFormatContext *s)
return 0;
}
static void tta_deinit(AVFormatContext *s)
{
TTAMuxContext *tta = s->priv_data;
ffio_free_dyn_buf(&tta->seek_table);
ff_packet_list_free(&tta->queue, &tta->queue_end);
}
AVOutputFormat ff_tta_muxer = {
.name = "tta",
.long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
......@@ -167,6 +176,7 @@ AVOutputFormat ff_tta_muxer = {
.audio_codec = AV_CODEC_ID_TTA,
.video_codec = AV_CODEC_ID_NONE,
.init = tta_init,
.deinit = tta_deinit,
.write_header = tta_write_header,
.write_packet = tta_write_packet,
.write_trailer = tta_write_trailer,
......
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