diff options
author | saintdev <[email protected]> | 2007-04-01 04:47:47 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2007-04-01 04:47:47 +0000 |
commit | 6aadb0780a8cab83a9cef4ff2c179c6b318669ab (patch) | |
tree | ec230a8d6c1d22aa9e1df1745f6afc948aa8d0b5 /libhb/encvorbis.c | |
parent | 2338338511e4b1ef3ec5e85606900a846efa2b42 (diff) |
Fix several MB of memory leaks in lame, and vorbis.
6ch Vorbis doesn't seem quite ready for prime time.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@470 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encvorbis.c')
-rw-r--r-- | libhb/encvorbis.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libhb/encvorbis.c b/libhb/encvorbis.c index 01c71e844..169cb938f 100644 --- a/libhb/encvorbis.c +++ b/libhb/encvorbis.c @@ -120,6 +120,18 @@ int encvorbisInit( hb_work_object_t * w, hb_job_t * job ) **********************************************************************/ void encvorbisClose( hb_work_object_t * w ) { + hb_work_private_t * pv = w->private_data; + + vorbis_block_clear( &pv->vb ); + vorbis_dsp_clear( &pv->vd ); + vorbis_comment_clear( &pv->vc ); + vorbis_info_clear( &pv->vi ); + + hb_list_empty( &pv->list ); + + free( pv->buf ); + free( pv ); + w->private_data = NULL; } /*********************************************************************** |