Codebase list squeezelite / ae1e690
add dsd to codec help, log resample clips at SDEBUG level Adrian Smith 9 years ago
2 changed file(s) with 8 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
4242 " -a <f>\t\tSpecify sample format (16|24|32) of output file when using -o - to output samples to stdout (interleaved little endian only)\n"
4343 " -b <stream>:<output>\tSpecify internal Stream and Output buffer sizes in Kbytes\n"
4444 " -c <codec1>,<codec2>\tRestrict codecs to those specified, otherwise load all available codecs; known codecs: "
45 "flac,pcm,mp3,ogg,aac"
4546 #if FFMPEG
46 "flac,pcm,mp3,ogg,aac,wma,alac (mad,mpg for specific mp3 codec)\n"
47 #else
48 "flac,pcm,mp3,ogg,aac (mad,mpg for specific mp3 codec)\n"
49 #endif
47 ",wma,alac"
48 #endif
49 #if DSD
50 ",dsd"
51 #endif
52 " (mad,mpg for specific mp3 codec)\n"
5053 " -d <log>=<level>\tSet logging level, logs: all|slimproto|stream|decode|output, level: info|debug|sdebug\n"
5154 " -f <logfile>\t\tWrite debug to logfile\n"
5255 " -m <mac addr>\t\tSet mac address, format: ab:cd:ef:12:34:56\n"
8484
8585 clip_cnt = *(SOXR(r, num_clips, r->resampler));
8686 if (clip_cnt - r->old_clips) {
87 LOG_DEBUG("resampling clips: %u", (unsigned)(clip_cnt - r->old_clips));
87 LOG_SDEBUG("resampling clips: %u", (unsigned)(clip_cnt - r->old_clips));
8888 r->old_clips = clip_cnt;
8989 }
9090 }