2023-02-11 22:35:26 -03:00
|
|
|
/*
|
2023-05-26 16:04:31 -03:00
|
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
2023-02-11 22:35:26 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-05-26 16:04:31 -03:00
|
|
|
#include <LibGfx/ImageFormats/BooleanDecoder.h>
|
2023-02-11 22:35:26 -03:00
|
|
|
|
|
|
|
|
namespace Video::VP9 {
|
|
|
|
|
|
2023-05-26 16:04:31 -03:00
|
|
|
using BooleanDecoder = Gfx::BooleanDecoder;
|
2023-02-11 22:35:26 -03:00
|
|
|
|
|
|
|
|
}
|