start work on nihed-cros-libva
authorKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 20 Oct 2023 16:33:27 +0000 (18:33 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 20 Oct 2023 16:33:27 +0000 (18:33 +0200)
commit683627242f69bed0b818d976d4b03d651e529697
tree9f111742113c869c94eddc1c6cc95007cbad992e
parent549511e9deafd9ec08b3c80489e7e85c5f5f0b3b
start work on nihed-cros-libva

This is a fork of cros-libva at v0.0.3 without history preserved.
The current commit corresponds to the checkout at that tag with
unneeded files removed.
24 files changed:
nihed-cros-libva/Cargo.toml [new file with mode: 0644]
nihed-cros-libva/LICENSE [new file with mode: 0644]
nihed-cros-libva/README.md [new file with mode: 0644]
nihed-cros-libva/bindgen.sh [new file with mode: 0755]
nihed-cros-libva/build.rs [new file with mode: 0644]
nihed-cros-libva/libva-wrapper.h [new file with mode: 0644]
nihed-cros-libva/src/bindings.rs [new file with mode: 0644]
nihed-cros-libva/src/bindings/va.rs [new file with mode: 0644]
nihed-cros-libva/src/bindings/va/constants.rs [new file with mode: 0644]
nihed-cros-libva/src/buffer.rs [new file with mode: 0644]
nihed-cros-libva/src/buffer/h264.rs [new file with mode: 0644]
nihed-cros-libva/src/buffer/mpeg2.rs [new file with mode: 0644]
nihed-cros-libva/src/buffer/vp8.rs [new file with mode: 0644]
nihed-cros-libva/src/buffer/vp9.rs [new file with mode: 0644]
nihed-cros-libva/src/config.rs [new file with mode: 0644]
nihed-cros-libva/src/context.rs [new file with mode: 0644]
nihed-cros-libva/src/display.rs [new file with mode: 0644]
nihed-cros-libva/src/generic_value.rs [new file with mode: 0644]
nihed-cros-libva/src/image.rs [new file with mode: 0644]
nihed-cros-libva/src/lib.rs [new file with mode: 0644]
nihed-cros-libva/src/picture.rs [new file with mode: 0644]
nihed-cros-libva/src/status.rs [new file with mode: 0644]
nihed-cros-libva/src/surface.rs [new file with mode: 0644]
nihed-cros-libva/src/usage_hint.rs [new file with mode: 0644]