mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
BUG=None TEST=media/libvda/bindgen.sh Change-Id: Icef4201663543abe7f52a595c72fd6321d5a8968 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3574975 Reviewed-by: Alexandre Courbot <acourbot@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
46 lines
1.5 KiB
Bash
Executable file
46 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# 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.
|
|
#
|
|
# Regenerate libvda bindgen bindings.
|
|
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/../.."
|
|
|
|
source tools/impl/bindgen-common.sh
|
|
|
|
bindgen_generate \
|
|
--allowlist-type='video_.*' \
|
|
"${BINDGEN_PLATFORM2}/arc/vm/libvda/libvda_common.h" \
|
|
> media/libvda/src/bindings.rs
|
|
|
|
bindgen_generate \
|
|
--raw-line 'pub use crate::bindings::*;' \
|
|
--allowlist-function 'initialize' \
|
|
--allowlist-function 'deinitialize' \
|
|
--allowlist-function 'get_vda_capabilities' \
|
|
--allowlist-function 'init_decode_session' \
|
|
--allowlist-function 'close_decode_session' \
|
|
--allowlist-function 'vda_.*' \
|
|
--allowlist-type 'vda_.*' \
|
|
--blocklist-type 'video_.*' \
|
|
"${BINDGEN_PLATFORM2}/arc/vm/libvda/libvda_decode.h" \
|
|
-- \
|
|
-I "${BINDGEN_PLATFORM2}" \
|
|
> media/libvda/src/decode/bindings.rs
|
|
|
|
bindgen_generate \
|
|
--raw-line 'pub use crate::bindings::*;' \
|
|
--allowlist-function 'initialize_encode' \
|
|
--allowlist-function 'deinitialize_encode' \
|
|
--allowlist-function 'get_vea_capabilities' \
|
|
--allowlist-function 'init_encode_session' \
|
|
--allowlist-function 'close_encode_session' \
|
|
--allowlist-function 'vea_.*' \
|
|
--allowlist-type 'vea_.*' \
|
|
--blocklist-type 'video_.*' \
|
|
"${BINDGEN_PLATFORM2}/arc/vm/libvda/libvda_encode.h" \
|
|
-- \
|
|
-I "${BINDGEN_PLATFORM2}" \
|
|
> media/libvda/src/encode/bindings.rs
|