Displaying 1 result from an estimated 1 matches for "have_liblam".
Did you mean:
have_libpam
2004 Aug 06
1
ices and VBR mp3s?
...up a small patch for you :)
>
> jack.
>
I worked out a patch for ices-0.2.2 that forces ices to *always* re-encode the stream if Reencode is enabled:
--- CUT HERE ---
--- src/stream.c.orig Thu Jul 26 12:01:55 2001
+++ src/stream.c Thu Mar 7 22:01:51 2002
@@ -174,9 +174,9 @@
#ifdef HAVE_LIBLAME
if (ices_config.reencode)
- /* only actually decode/reencode if the bitrate of the stream != source */
for (stream = ices_config.streams; stream; stream = stream->next)
- if (stream->bitrate != source->bitrate) {
+/* ALWAYS reencode -- bypass bitrate checking */
+{...