Commit 6bb166aa authored by Max Kellermann's avatar Max Kellermann

decoder_api: log the decoder plugin name

parent cca9bc51
...@@ -115,6 +115,8 @@ decoder_stream_decode(const struct decoder_plugin *plugin, ...@@ -115,6 +115,8 @@ decoder_stream_decode(const struct decoder_plugin *plugin,
assert(input_stream->ready); assert(input_stream->ready);
assert(decoder->dc->state == DECODE_STATE_START); assert(decoder->dc->state == DECODE_STATE_START);
g_debug("probing plugin %s", plugin->name);
if (decoder->dc->command == DECODE_COMMAND_STOP) if (decoder->dc->command == DECODE_COMMAND_STOP)
return true; return true;
...@@ -146,6 +148,8 @@ decoder_file_decode(const struct decoder_plugin *plugin, ...@@ -146,6 +148,8 @@ decoder_file_decode(const struct decoder_plugin *plugin,
assert(g_path_is_absolute(path)); assert(g_path_is_absolute(path));
assert(decoder->dc->state == DECODE_STATE_START); assert(decoder->dc->state == DECODE_STATE_START);
g_debug("probing plugin %s", plugin->name);
if (decoder->dc->command == DECODE_COMMAND_STOP) if (decoder->dc->command == DECODE_COMMAND_STOP)
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment