mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-25 20:22:18 +03:00
LibGfx/ISOBMFF: FileTypeBox is not a FullBox
This commit is contained in:
parent
1e31753382
commit
270d3303ce
Notes:
sideshowbarker
2024-07-17 04:01:41 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/270d3303ce Pull-request: https://github.com/SerenityOS/serenity/pull/23682 Reviewed-by: https://github.com/LucasChollet Reviewed-by: https://github.com/Zaggy1024 Reviewed-by: https://github.com/timschumi ✅
@ -88,7 +88,7 @@ ErrorOr<void> FileTypeBox::read_from_stream(BoxStream& stream)
|
||||
|
||||
void FileTypeBox::dump(String const& prepend) const
|
||||
{
|
||||
FullBox::dump(prepend);
|
||||
Box::dump(prepend);
|
||||
|
||||
auto indented_prepend = add_indent(prepend);
|
||||
|
||||
|
@ -85,7 +85,7 @@ private:
|
||||
virtual void dump(String const& prepend = {}) const override;
|
||||
|
||||
// 4.3 File Type Box
|
||||
struct FileTypeBox final : public FullBox {
|
||||
struct FileTypeBox final : public Box {
|
||||
BOX_SUBTYPE(FileTypeBox);
|
||||
|
||||
BrandIdentifier major_brand { BrandIdentifier::None };
|
||||
|
Loading…
Reference in New Issue
Block a user