mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +00:00
LibAudio: Explicitly support Application metadata block type
This commit is contained in:
parent
95968705ce
commit
706638a0d0
1 changed files with 4 additions and 0 deletions
|
@ -112,6 +112,10 @@ MaybeLoaderError FlacLoaderPlugin::parse_header()
|
||||||
case (FlacMetadataBlockType::SEEKTABLE):
|
case (FlacMetadataBlockType::SEEKTABLE):
|
||||||
TRY(load_seektable(block));
|
TRY(load_seektable(block));
|
||||||
break;
|
break;
|
||||||
|
case FlacMetadataBlockType::APPLICATION:
|
||||||
|
// Note: Third-party library can encode specific data in this.
|
||||||
|
dbgln("Unknown 'Application' metadata block encountered.");
|
||||||
|
[[fallthrough]];
|
||||||
case FlacMetadataBlockType::PADDING:
|
case FlacMetadataBlockType::PADDING:
|
||||||
// Note: A padding block is empty and does not need any treatment.
|
// Note: A padding block is empty and does not need any treatment.
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue