summaryrefslogtreecommitdiff
path: root/formats
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-04-19 08:38:16 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-04-19 08:38:16 -0500
commite756a9e063dd71cf49abec6b03c305b54e837f39 (patch)
tree4a8b1e352e93d63ffc35d92b2e8f2fe8f8fa4dee /formats
parentb0c72da6fc52353dbab770306dc7d62b022c6448 (diff)
parent4fb9f5d60ec0a5a4e607fb2517e95a95abee53af (diff)
Merge "format_ogg_vorbis: Clear ogg/vorbis data structures on close"
Diffstat (limited to 'formats')
-rw-r--r--formats/format_ogg_vorbis.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/formats/format_ogg_vorbis.c b/formats/format_ogg_vorbis.c
index d4212a169..c0f8c197d 100644
--- a/formats/format_ogg_vorbis.c
+++ b/formats/format_ogg_vorbis.c
@@ -158,6 +158,7 @@ static int ogg_vorbis_rewrite(struct ast_filestream *s,
if (vorbis_encode_init_vbr(&tmp->vi, 1, DEFAULT_SAMPLE_RATE, 0.4)) {
ast_log(LOG_ERROR, "Unable to initialize Vorbis encoder!\n");
+ vorbis_info_clear(&tmp->vi);
return -1;
}
@@ -273,6 +274,13 @@ static void ogg_vorbis_close(struct ast_filestream *fs)
* and write out the rest of the data */
vorbis_analysis_wrote(&s->vd, 0);
write_stream(s, fs->f);
+
+ /* Cleanup */
+ ogg_stream_clear(&s->os);
+ vorbis_block_clear(&s->vb);
+ vorbis_dsp_clear(&s->vd);
+ vorbis_comment_clear(&s->vc);
+ vorbis_info_clear(&s->vi);
} else {
/* clear OggVorbis_File handle */
ov_clear(&s->ov_f);