add more logging information on codecs loaded
Adrian Smith
9 years ago
620 | 620 | |
621 | 621 | dsd2pcm_precalc(); |
622 | 622 | |
623 | LOG_INFO("using dsd"); | |
623 | LOG_INFO("using dsd to decode dsf,dff"); | |
624 | 624 | return &ret; |
625 | 625 | } |
626 | 626 |
636 | 636 | return NULL; |
637 | 637 | } |
638 | 638 | |
639 | LOG_INFO("using faad to decode aac"); | |
639 | 640 | return &ret; |
640 | 641 | } |
711 | 711 | ff_decode, // decode |
712 | 712 | }; |
713 | 713 | |
714 | LOG_INFO("using ffmpeg to decode wma,wmap,wmal"); | |
714 | 715 | return &ret; |
715 | 716 | } |
716 | 717 | |
726 | 727 | ff_decode, // decode |
727 | 728 | }; |
728 | 729 | |
730 | LOG_INFO("using ffmpeg to decode alc"); | |
729 | 731 | return &ret; |
730 | 732 | } |
731 | 733 |
282 | 282 | return NULL; |
283 | 283 | } |
284 | 284 | |
285 | LOG_INFO("using flac to decode flc"); | |
285 | 286 | return &ret; |
286 | 287 | } |
408 | 408 | return NULL; |
409 | 409 | } |
410 | 410 | |
411 | LOG_INFO("using mad to decode mp3"); | |
411 | 412 | return &ret; |
412 | 413 | } |
270 | 270 | |
271 | 271 | m->use16bit = MPG123(m, feature, MPG123_FEATURE_OUTPUT_32BIT); |
272 | 272 | |
273 | LOG_INFO("using mpg to decode mp3"); | |
273 | 274 | return &ret; |
274 | 275 | } |