Files
serenity/Userland/Libraries/LibMedia/Video/VP9/BooleanDecoder.h
Zaggy1024 0a525881b6 LibMedia: Rename LibVideo to LibMedia
This change is in preparation for implementing audio codecs into the
library and using audio as timing for video playback.

(cherry picked from commit 7c10e1a08d7a109b63c9258578eb98aa9dcc1425)
2024-07-04 22:09:32 +02:00

16 lines
249 B
C++

/*
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGfx/ImageFormats/BooleanDecoder.h>
namespace Media::Video::VP9 {
using BooleanDecoder = Gfx::BooleanDecoder;
}