diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2002-09-19 18:34:47 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2002-09-19 18:34:47 +0000 |
commit | 1a2540214e0f66669aaa86d2111ec7eeaf29d884 (patch) | |
tree | 3a3e4a4fd8bb8f07fcec3418fb134fe27e0ec0b6 /m4 | |
parent | ae08fc4b1d5fa4fedce62e5223651572b5eb62b5 (diff) |
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...)
Diffstat (limited to 'm4')
-rw-r--r-- | m4/vorbis.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/vorbis.m4 b/m4/vorbis.m4 index 98fa5d9d2..d311a410a 100644 --- a/m4/vorbis.m4 +++ b/m4/vorbis.m4 @@ -54,6 +54,7 @@ dnl #include <stdlib.h> #include <string.h> #include <vorbis/codec.h> +#include <vorbis/vorbisenc.h> 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 */ |