This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ANDROID_SDK="$HOME/Library/Android/sdk" | |
| ANDROID_NDK="$ANDROID_SDK/ndk-bundle" | |
| echo 'include("'$ANDROID_NDK'/build/cmake/android.toolchain.cmake")' > android.toolchain.cmake | |
| cat ../aom/build/cmake/toolchains/armv7-linux-gcc.cmake >> android.toolchain.cmake | |
| export PATH="$PATH:$ANDROID_NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64/bin" | |
| $ANDROID_SDK/cmake/3.6.4111459/bin/cmake \ | |
| -G'Android Gradle - Ninja' \ | |
| -DANDROID_ABI=armeabi-v7a \ | |
| -DANDROID_ARM_NEON=ON \ | |
| -DANDROID_NATIVE_API_LEVEL=26 \ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rust-av/const-all-the-things | |
| rust-av/container_sequence_header | |
| rust-av/ctrlc | |
| rust-av/dispatch-fn | |
| rust-av/hawktrace+rayon | |
| rust-av/hvsacdc | |
| rust-av/iterator-reworks | |
| rust-av/master | |
| rust-av/msacdc | |
| rust-av/nasm-rs-fixups |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| from matplotlib import pyplot as plt | |
| from matplotlib import animation | |
| import multiprocessing | |
| num, den, dpi, fps, dur = 16, 9, 120, 30, 10 | |
| print("%dx%d@%d, %d frames" % (num * dpi, den * dpi, fps, fps * dur)) | |
| fig = plt.figure(figsize=(num, den)) | |
| ax = plt.axes([0, 0, 1, 1], frameon=False) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM rustlang/rust:nightly-bullseye | |
| RUN apt update \ | |
| && apt install -y clang-13 nasm ninja-build python3-pip \ | |
| && apt clean | |
| RUN pip3 install meson \ | |
| && rm -fr /root/.cache | |
| RUN cargo install cargo-fuzz --version=0.11.0 | |
| RUN GIT_SSL_NO_VERIFY=1 git clone --depth=1 -b 1.0.0 https://code.videolan.org/videolan/dav1d.git \ | |
| && mkdir dav1d/build \ |