AC_CHECK_LIB([faad], [NeAACDecOpen], [], have_faad=no)
if test "$have_faad" = "yes"; then
AC_DEFINE(HAVE_FAAD, 1, define to 1 if you want to build the aacdec filter)
+ filter_cmdline_objs="$filter_cmdline_objs mp3dec_filter.cmdline"
+ audiod_cmdline_objs="$audiod_cmdline_objs mp3dec_filter.cmdline"
all_errlist_objs="$all_errlist_objs aac_common aacdec_filter aac_afh"
filter_errlist_objs="$filter_errlist_objs aacdec_filter aac_common"
afh_errlist_objs="$afh_errlist_objs aac_common aac_afh"
#define MP3DEC_FILTER_ERRORS \
PARA_ERROR(MAD_FRAME_DECODE, "mad frame decode error"), \
PARA_ERROR(MP3DEC_OVERRUN, "mp3 output buffer overrun"), \
+ PARA_ERROR(MP3DEC_SYNTAX, "syntax error in mp3dec config"), \
#define FILTER_ERRORS \
/** \file mp3dec_filter.c Paraslash's mp3 decoder. */
#include "para.h"
+#include "mp3dec_filter.cmdline.h"
#include "list.h"
#include "sched.h"
#include "filter.h"
#include <mad.h>
#include "string.h"
-/** The output buffer size. */
-#define MP3_OUTBUF_SIZE (128 * 1024)
-
/** Convert a sample value from libmad to a signed short. */
#define MAD_TO_SHORT(f) (f) >= MAD_F_ONE? SHRT_MAX :\
(f) <= -MAD_F_ONE? -SHRT_MAX : (signed short) ((f) >> (MAD_F_FRACBITS - 15))
static void mp3dec_open(struct filter_node *fn)
{
struct private_mp3dec_data *pmd = para_calloc(sizeof(*pmd));
+ struct mp3dec_filter_args_info *mp3_conf = fn->conf;
fn->private_data = pmd;
mad_stream_init(&pmd->stream);
mad_frame_init(&pmd->frame);
mad_synth_init(&pmd->synth);
fn->loaded = 0;
- fn->bufsize = MP3_OUTBUF_SIZE;
+ fn->bufsize = mp3_conf->bufsize_arg * 1024;
fn->buf = para_calloc(fn->bufsize);
+ if (mp3_conf->ignore_crc_given)
+ mad_stream_options(&pmd->stream, MAD_OPTION_IGNORECRC);
+}
+
+static int mp3dec_parse_config(int argc, char **argv, void **config)
+{
+ int ret;
+ struct mp3dec_filter_args_info *mp3_conf;
+
+ mp3_conf = para_calloc(sizeof(*mp3_conf));
+ ret = -E_MP3DEC_SYNTAX;
+ if (mp3dec_cmdline_parser(argc, argv, mp3_conf))
+ goto err;
+ ret = -ERRNO_TO_PARA_ERROR(EINVAL);
+ if (mp3_conf->bufsize_arg < 32)
+ goto err;
+ if (mp3_conf->bufsize_arg >= INT_MAX / 1024)
+ goto err;
+ *config = mp3_conf;
+ return 1;
+err:
+ free(mp3_conf);
+ return ret;
}
/**
f->open = mp3dec_open;
f->convert = mp3dec;
f->close = mp3dec_close;
+ f->parse_config = mp3dec_parse_config;
}
--- /dev/null
+option "bufsize" b
+#~~~~~~~~~~~~~~~~~
+"size of output buffer"
+int typestr="kilobyte"
+default="128"
+optional
+details="
+ Increase this if you encounter output buffer overrun
+ errors. Smaller values make the mp3dec filter use less
+ memory. The minimal size is 32K.
+"
+
+option "ignore-crc" i
+#~~~~~~~~~~~~~~~~~~~~
+"ignore CRC information in the audio stream."
+flag off
+details="
+ This causes frames with CRC errors to be decoded and played
+ anyway. This option is not recommended, but since some encoders
+ have been known to generate bad CRC information, this option
+ is a work-around to play streams from such encoders.
+"