decoder/vorbis: log libvorbis version on startup
This commit is contained in:
parent
13b78d0d89
commit
af49cace8d
@ -171,6 +171,16 @@ vorbis_interleave(float *dest, const float *const*src,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* public */
|
/* public */
|
||||||
|
|
||||||
|
static bool
|
||||||
|
vorbis_init(gcc_unused const config_param ¶m)
|
||||||
|
{
|
||||||
|
#ifndef HAVE_TREMOR
|
||||||
|
LogDebug(vorbis_domain, vorbis_version_string());
|
||||||
|
#endif
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
vorbis_stream_decode(Decoder &decoder,
|
vorbis_stream_decode(Decoder &decoder,
|
||||||
InputStream &input_stream)
|
InputStream &input_stream)
|
||||||
@ -337,7 +347,7 @@ static const char *const vorbis_mime_types[] = {
|
|||||||
|
|
||||||
const struct DecoderPlugin vorbis_decoder_plugin = {
|
const struct DecoderPlugin vorbis_decoder_plugin = {
|
||||||
"vorbis",
|
"vorbis",
|
||||||
nullptr,
|
vorbis_init,
|
||||||
nullptr,
|
nullptr,
|
||||||
vorbis_stream_decode,
|
vorbis_stream_decode,
|
||||||
nullptr,
|
nullptr,
|
||||||
|
Loading…
Reference in New Issue
Block a user