aboutsummaryrefslogtreecommitdiffstats
path: root/src/decode.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-03-22 18:44:15 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-03-22 18:44:15 +0000
commit395281c7a090bebaa3a27b112bd526cf8b42a788 (patch)
tree575984977abbc0496757b050eebbb0ec00d7adcc /src/decode.c
parent80e0fec6835f15e6a81ca1dd24db726c503a56be (diff)
downloadmpd-395281c7a090bebaa3a27b112bd526cf8b42a788.tar.gz
mpd-395281c7a090bebaa3a27b112bd526cf8b42a788.tar.xz
mpd-395281c7a090bebaa3a27b112bd526cf8b42a788.zip
fix error reporting for mp4 files
git-svn-id: https://svn.musicpd.org/mpd/trunk@370 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.c')
-rw-r--r--src/decode.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/decode.c b/src/decode.c
index 334812d8b..3fbbc9c8c 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -116,8 +116,6 @@ int waitOnDecode(PlayerControl * pc, AudioFormat * af, DecoderControl * dc,
if(dc->start || dc->error!=DECODE_ERROR_NOERROR) {
strncpy(pc->erroredFile,pc->file,MAXPATHLEN);
- printf("error: %i, start: %i, decode_pid: %i\n",dc->error,
- dc->start,*decode_pid);
pc->error = PLAYER_ERROR_FILE;
quitDecode(pc,dc);
return -1;
@@ -214,6 +212,7 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc,
int decoderInit(PlayerControl * pc, Buffer * cb, AudioFormat *af,
DecoderControl * dc) {
int pid;
+ int ret;
decode_pid = &(pc->decode_pid);
pid = fork();
@@ -226,36 +225,37 @@ int decoderInit(PlayerControl * pc, Buffer * cb, AudioFormat *af,
switch(pc->decodeType) {
#ifdef HAVE_MAD
case DECODE_TYPE_MP3:
- dc->error = mp3_decode(cb,af,dc);
+ ret = mp3_decode(cb,af,dc);
break;
#endif
#ifdef HAVE_FAAD
case DECODE_TYPE_AAC:
- dc->error = aac_decode(cb,af,dc);
+ ret = aac_decode(cb,af,dc);
break;
case DECODE_TYPE_MP4:
- dc->error = mp4_decode(cb,af,dc);
+ ret = mp4_decode(cb,af,dc);
break;
#endif
#ifdef HAVE_OGG
case DECODE_TYPE_OGG:
- dc->error = ogg_decode(cb,af,dc);
+ ret = ogg_decode(cb,af,dc);
break;
#endif
#ifdef HAVE_FLAC
case DECODE_TYPE_FLAC:
- dc->error = flac_decode(cb,af,dc);
+ ret = flac_decode(cb,af,dc);
break;
#endif
#ifdef HAVE_AUDIOFILE
case DECODE_TYPE_AUDIOFILE:
- dc->error = audiofile_decode(cb,af,dc);
+ ret = audiofile_decode(cb,af,dc);
break;
#endif
default:
- dc->error = DECODE_ERROR_UNKTYPE;
+ ret = DECODE_ERROR_UNKTYPE;
}
- if(dc->error!=DECODE_ERROR_NOERROR) {
+ if(ret<0) {
+ dc->error = DECODE_ERROR_FILE;
dc->start = 0;
dc->stop = 0;
dc->state = DECODE_STATE_STOP;