cros_codecs/codec/
vp8.rs

1// Copyright 2023 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![warn(clippy::missing_panics_doc)]
6#![warn(clippy::panic)]
7#![warn(clippy::unwrap_used)]
8
9mod bool_decoder;
10pub mod parser;
11mod probs;