1// Copyright 2020 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//! Bindings for the `libvda` video decoder and encoder libraries. 6 7#![cfg(any(target_os = "android", target_os = "linux"))] 8 9pub mod decode; 10pub mod encode; 11 12mod bindings; 13mod error; 14mod format; 15 16pub use error::*; 17pub use format::*; 18 19