mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
LibAudio: Explicitly support Application metadata block type
This commit is contained in:
parent
95968705ce
commit
706638a0d0
Notes:
sideshowbarker
2024-07-17 16:23:55 +09:00
Author: https://github.com/LucasChollet
Commit: 706638a0d0
Pull-request: https://github.com/SerenityOS/serenity/pull/15466
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/kleinesfilmroellchen ✅
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