mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 08:05:08 +00:00

...and keep a forwarding header around in VP9, so we don't have to update all references to the class there. In time, we probably want to merge LibGfx/ImageDecoders and LibVideo into LibMedia, but for now I need just this class for the lossy webp decoder. So move just it over. No behvior change.
15 lines
242 B
C++
15 lines
242 B
C++
/*
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGfx/ImageFormats/BooleanDecoder.h>
|
|
|
|
namespace Video::VP9 {
|
|
|
|
using BooleanDecoder = Gfx::BooleanDecoder;
|
|
|
|
}
|