X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=check_wav.c;fp=check_wav.c;h=821483274aba25f5f74473d2151a205c8dafee55;hb=8d94b97b75f22826ac6c1c3c990a9adb15a5ca05;hp=3789f30aa5a20ef5433df83362a6be02563c8d17;hpb=2934ee80367ee9d50b99ed8d7f672d1a397b4ce0;p=paraslash.git diff --git a/check_wav.c b/check_wav.c index 3789f30a..82148327 100644 --- a/check_wav.c +++ b/check_wav.c @@ -127,7 +127,7 @@ int check_wav_post_monitor(struct check_wav_context *cwc) unsigned char *a; size_t sz; int ret; - uint16_t bps; /* bits per sample */ + uint16_t format_code, bps; /* bits per sample */ const char *sample_formats[] = {SAMPLE_FORMATS}; if (!btrn) @@ -157,13 +157,24 @@ int check_wav_post_monitor(struct check_wav_context *cwc) cwc->state = CWS_HAVE_HEADER; /* Only set those values which have not already been set. */ cwc->channels = a[22]; + format_code = read_u16(a + 20); + if (format_code != 1 && format_code != 3) { + cwc->state = CWS_NO_HEADER; + goto out; + } cwc->sample_rate = read_u32(a + 24); bps = read_u16(a + 34); - if (bps != 8 && bps != 16) { + if (bps != 8 && bps != 16 && bps != 32) { PARA_WARNING_LOG("%u bps not supported, assuming 16\n", bps); bps = 16; } + if ((bps < 32 && format_code != 1) || (bps == 32 && format_code != 3)) { + PARA_WARNING_LOG("invalid bps/format_code (%u/%u)\n", + bps, format_code); + cwc->state = CWS_NO_HEADER; + goto out; + } /* * 8-bit samples are stored as unsigned bytes, ranging from 0 * to 255. 16-bit samples are stored as 2's-complement signed @@ -171,9 +182,12 @@ int check_wav_post_monitor(struct check_wav_context *cwc) */ if (bps == 8) cwc->sample_format = SF_U8; - else + else if (bps == 16) cwc->sample_format = (a[3] == 'F')? SF_S16_LE : SF_S16_BE; + else /* 32 bit */ + cwc->sample_format = (a[3] == 'F')? + SF_FLOAT_LE : SF_FLOAT_BE; PARA_NOTICE_LOG("%uHz, %s, %s\n", cwc->sample_rate, cwc->channels == 1? "mono" : "stereo", sample_formats[cwc->sample_format]);