mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:28:11 +00:00

Errors are propagated to the user of the decoder so that they can be aware of specific places where a read failed.
17 lines
297 B
C++
17 lines
297 B
C++
/*
|
|
* Copyright (c) 2021, Hunter Salyer <thefalsehonesty@gmail.com>
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Video::VP9 {
|
|
|
|
u8 clip_3(u8 x, u8 y, u8 z);
|
|
u8 round_2(u8 x, u8 n);
|
|
|
|
}
|