mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 02:02:52 +00:00
4fea399df9
crosvm is switching the import style to use one import per line. While more verbose, this will greatly reduce the occurence of merge conflicts going forward. Note: This is using a nightly feature of rustfmt. So it's a one-off re-format only. We are considering adding a nightly toolchain to enable the feature permanently. BUG=b:239937122 TEST=CQ Change-Id: Id2dd4dbdc0adfc4f8f3dd1d09da1daafa2a39992 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3784345 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
30 lines
956 B
Rust
30 lines
956 B
Rust
// Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
pub mod avcodec;
|
|
mod avutil;
|
|
pub use avutil::*;
|
|
mod error;
|
|
pub use error::*;
|
|
mod ffi;
|
|
pub mod swscale;
|
|
|
|
pub use ffi::AVPixelFormat_AV_PIX_FMT_NV12;
|
|
pub use ffi::AV_CODEC_CAP_DR1;
|
|
pub use ffi::FF_PROFILE_H264_BASELINE;
|
|
pub use ffi::FF_PROFILE_H264_EXTENDED;
|
|
pub use ffi::FF_PROFILE_H264_HIGH;
|
|
pub use ffi::FF_PROFILE_H264_HIGH_10;
|
|
pub use ffi::FF_PROFILE_H264_HIGH_422;
|
|
pub use ffi::FF_PROFILE_H264_HIGH_444_PREDICTIVE;
|
|
pub use ffi::FF_PROFILE_H264_MAIN;
|
|
pub use ffi::FF_PROFILE_H264_MULTIVIEW_HIGH;
|
|
pub use ffi::FF_PROFILE_H264_STEREO_HIGH;
|
|
pub use ffi::FF_PROFILE_HEVC_MAIN;
|
|
pub use ffi::FF_PROFILE_HEVC_MAIN_10;
|
|
pub use ffi::FF_PROFILE_HEVC_MAIN_STILL_PICTURE;
|
|
pub use ffi::FF_PROFILE_VP9_0;
|
|
pub use ffi::FF_PROFILE_VP9_1;
|
|
pub use ffi::FF_PROFILE_VP9_2;
|
|
pub use ffi::FF_PROFILE_VP9_3;
|