aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-25 19:31:51 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-25 19:31:51 +0000
commit90c75b1107605d6fb075a5bd0388052d693dd3bc (patch)
treea02b40749cb35ff17ee6428d510e76efee32a0e0
parent2a76d4c8cf1b17799fe8103640ef3d46caf189a3 (diff)
ingore mp3 CRC's for files and not streams
git-svn-id: https://svn.musicpd.org/mpd/trunk@1161 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r--src/decode.c4
-rw-r--r--src/mp3_decode.c11
-rw-r--r--src/mp3_decode.h3
3 files changed, 11 insertions, 7 deletions
diff --git a/src/decode.c b/src/decode.c
index 86f0fc69..7582c4e9 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -291,7 +291,7 @@ void decodeStart(PlayerControl * pc, OutputBuffer * cb, DecoderControl * dc) {
/*if(fileSuffix == DECODE_SUFFIX_MP3 || (inStream.mime &&
0 == strcmp(inStream.mime, "audio/mpeg")))*/
{
- ret = mp3_decode(cb,dc,&inStream);
+ ret = mp3_decode(cb, dc, &inStream, 0);
break;
}
ret = DECODE_ERROR_UNKTYPE;
@@ -299,7 +299,7 @@ void decodeStart(PlayerControl * pc, OutputBuffer * cb, DecoderControl * dc) {
case DECODE_TYPE_FILE:
#ifdef HAVE_MAD
if(suffix == DECODE_SUFFIX_MP3) {
- ret = mp3_decode(cb, dc, &inStream);
+ ret = mp3_decode(cb, dc, &inStream, 1);
break;
}
#endif
diff --git a/src/mp3_decode.c b/src/mp3_decode.c
index 643604fe..c1eea2f0 100644
--- a/src/mp3_decode.c
+++ b/src/mp3_decode.c
@@ -152,7 +152,6 @@ void initMp3DecodeData(mp3DecodeData * data, InputStream * inStream) {
data->inStream = inStream;
mad_stream_init(&data->stream);
- data->stream.options |= MAD_OPTION_IGNORECRC;
mad_frame_init(&data->frame);
mad_synth_init(&data->synth);
mad_timer_reset(&data->timer);
@@ -411,6 +410,7 @@ int getMp3TotalTime(char * file) {
if(openInputStream(&inStream, file) < 0) return -1;
initMp3DecodeData(&data,&inStream);
+ data.stream.options |= MAD_OPTION_IGNORECRC;
if(decodeFirstFrame(&data, NULL)<0) ret = -1;
else ret = data.totalTime+0.5;
mp3DecodeDataFinalize(&data);
@@ -419,9 +419,10 @@ int getMp3TotalTime(char * file) {
}
int openMp3FromInputStream(InputStream * inStream, mp3DecodeData * data,
- DecoderControl * dc)
+ DecoderControl * dc, int ignoreCrc)
{
initMp3DecodeData(data, inStream);
+ if(ignoreCrc) data->stream.options |= MAD_OPTION_IGNORECRC;
if(decodeFirstFrame(data, dc)<0) {
mp3DecodeDataFinalize(data);
return -1;
@@ -561,10 +562,12 @@ void initAudioFormatFromMp3DecodeData(mp3DecodeData * data, AudioFormat * af) {
af->channels = MAD_NCHANNELS(&(data->frame).header);
}
-int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream) {
+int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream,
+ int ignoreCrc)
+{
mp3DecodeData data;
- if(openMp3FromInputStream(inStream, &data, dc) < 0) {
+ if(openMp3FromInputStream(inStream, &data, dc, ignoreCrc) < 0) {
closeInputStream(inStream);
if(!dc->stop) {
ERROR("Input does not appear to be a mp3 bit stream.\n");
diff --git a/src/mp3_decode.h b/src/mp3_decode.h
index e33cd60c..7cc1ecfb 100644
--- a/src/mp3_decode.h
+++ b/src/mp3_decode.h
@@ -29,7 +29,8 @@
/* this is primarily used in tag.c */
int getMp3TotalTime(char * file);
-int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream);
+int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream,
+ int ignoreCrc);
#endif