Commit 54daa85a authored by Max Kellermann's avatar Max Kellermann

decoder/flac: support embedded pictures (FLAC__METADATA_TYPE_PICTURE)

parent 575ba519
......@@ -149,6 +149,21 @@ Scan(const FLAC__StreamMetadata_StreamInfo &stream_info,
}
}
static void
Scan(const FLAC__StreamMetadata_Picture &picture, TagHandler &handler) noexcept
{
if (!handler.WantPicture())
return;
if (picture.mime_type != nullptr &&
StringIsEqual(picture.mime_type, "-->"))
/* this is a URL, not image data */
return;
handler.OnPicture(picture.mime_type,
{picture.data, picture.data_length});
}
void
flac_scan_metadata(const FLAC__StreamMetadata *block,
TagHandler &handler) noexcept
......@@ -163,6 +178,10 @@ flac_scan_metadata(const FLAC__StreamMetadata *block,
Scan(block->data.stream_info, handler);
break;
case FLAC__METADATA_TYPE_PICTURE:
Scan(block->data.picture, handler);
break;
default:
break;
}
......
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