mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-25 17:15:42 +02:00
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)
16 lines
249 B
C++
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;
|
|
|
|
}
|