test/FakeDecoderAPI: dump tags

This commit is contained in:
Max Kellermann 2014-12-26 22:23:55 +01:00
parent b3435ae432
commit 7077eac589
1 changed files with 6 additions and 1 deletions

View File

@ -145,8 +145,13 @@ decoder_data(gcc_unused Decoder &decoder,
DecoderCommand
decoder_tag(gcc_unused Decoder &decoder,
gcc_unused InputStream *is,
gcc_unused Tag &&tag)
Tag &&tag)
{
fprintf(stderr, "TAG: duration=%f\n", tag.duration.ToDoubleS());
for (const auto &i : tag)
fprintf(stderr, " %s=%s\n", tag_item_names[i.type], i.value);
return DecoderCommand::NONE;
}