mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:07: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):
|
||||
TRY(load_seektable(block));
|
||||
break;
|
||||
case FlacMetadataBlockType::APPLICATION:
|
||||
// Note: Third-party library can encode specific data in this.
|
||||
dbgln("Unknown 'Application' metadata block encountered.");
|
||||
[[fallthrough]];
|
||||
case FlacMetadataBlockType::PADDING:
|
||||
// Note: A padding block is empty and does not need any treatment.
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue