summaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
authorsaintdev <[email protected]>2007-04-01 04:47:47 +0000
committersaintdev <[email protected]>2007-04-01 04:47:47 +0000
commit6aadb0780a8cab83a9cef4ff2c179c6b318669ab (patch)
treeec230a8d6c1d22aa9e1df1745f6afc948aa8d0b5 /test/test.c
parent2338338511e4b1ef3ec5e85606900a846efa2b42 (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 'test/test.c')
-rw-r--r--test/test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test.c b/test/test.c
index 818ceeae7..30eeb4ddf 100644
--- a/test/test.c
+++ b/test/test.c
@@ -980,9 +980,10 @@ static int CheckOptions( int argc, char ** argv )
}
}
- if (acodec != HB_ACODEC_FAAC && acodec != HB_ACODEC_VORBIS)
+ if (acodec != HB_ACODEC_FAAC)
{
- /* only attempt 5.1 export if exporting to AAC or Vorbis */
+ /* only attempt 5.1 export if exporting to AAC or Vorbis */
+ /* Vorbis doesn't seem to be quite ready yet */
surround = 0;
}