Codebase list squeezelite / 86b602a
add more logging information on codecs loaded Adrian Smith 10 years ago
8 changed file(s) with 9 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
620620
621621 dsd2pcm_precalc();
622622
623 LOG_INFO("using dsd");
623 LOG_INFO("using dsd to decode dsf,dff");
624624 return &ret;
625625 }
626626
636636 return NULL;
637637 }
638638
639 LOG_INFO("using faad to decode aac");
639640 return &ret;
640641 }
711711 ff_decode, // decode
712712 };
713713
714 LOG_INFO("using ffmpeg to decode wma,wmap,wmal");
714715 return &ret;
715716 }
716717
726727 ff_decode, // decode
727728 };
728729
730 LOG_INFO("using ffmpeg to decode alc");
729731 return &ret;
730732 }
731733
282282 return NULL;
283283 }
284284
285 LOG_INFO("using flac to decode flc");
285286 return &ret;
286287 }
408408 return NULL;
409409 }
410410
411 LOG_INFO("using mad to decode mp3");
411412 return &ret;
412413 }
270270
271271 m->use16bit = MPG123(m, feature, MPG123_FEATURE_OUTPUT_32BIT);
272272
273 LOG_INFO("using mpg to decode mp3");
273274 return &ret;
274275 }
378378 pcm_decode, // decode
379379 };
380380
381 LOG_INFO("using pcm");
381 LOG_INFO("using pcm to decode aif,pcm");
382382 return &ret;
383383 }
320320 return NULL;
321321 }
322322
323 LOG_INFO("using vorbis to decode ogg");
323324 return &ret;
324325 }