BooleanDecoder.h 242 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2023, Nico Weber <thakis@chromium.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibGfx/ImageFormats/BooleanDecoder.h>
  8. namespace Video::VP9 {
  9. using BooleanDecoder = Gfx::BooleanDecoder;
  10. }