From 95099ed623b9d98e445889f9567f0a79ca6ab1cd Mon Sep 17 00:00:00 2001 From: "David I. Lehn" Date: Thu, 19 Sep 2002 18:34:47 +0000 Subject: Revert the revert to 1.0.0 vorbis.m4 code. Original commit message from CVS: Revert the revert to 1.0.0 vorbis.m4 code. This bugfix has been accepted upstream to fix a segfault due to a bogus function parameter. (the cause of the segfault should probably be fixed but until then...) --- m4/vorbis.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'm4') diff --git a/m4/vorbis.m4 b/m4/vorbis.m4 index 98fa5d9d..d311a410 100644 --- a/m4/vorbis.m4 +++ b/m4/vorbis.m4 @@ -54,6 +54,7 @@ dnl #include #include #include +#include int main () { @@ -62,7 +63,7 @@ int main () vorbis_info vi; vorbis_info_init (&vi); - vorbis_encode_init (&vi, 2, 44100, -1, 128, -1); + vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1); vorbis_analysis_init (&vd, &vi); vorbis_block_init (&vd, &vb); /* this function was added in 1.0rc3, so this is what we're testing for */ -- cgit