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
| 17590 mov | |
| 5373 lea | |
| 3701 add | |
| 3632 cmp | |
| 1740 jmp | |
| 1708 call | |
| 1534 sub | |
| 1281 cmovl | |
| 1272 imul | |
| 1230 push |
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
| export DENO_INSTALL="$HOME/.deno" | |
| export PATH="$DENO_INSTALL/bin:$PATH" | |
| export DENO_TLS_CA_STORE="system" |
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
| #!/bin/env python3 | |
| import array | |
| import sys | |
| import y4m | |
| ref_frame = None | |
| def frame_arrays(frame): |
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
| [binaries] | |
| c = 'aarch64-linux-gnu-gcc' | |
| cpp = 'aarch64-linux-gnu-g++' | |
| ar = 'aarch64-linux-gnu-ar' | |
| strip = 'aarch64-linux-gnu-strip' | |
| pkgconfig = 'pkg-config' | |
| [properties] | |
| needs_exe_wrapper = true |
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
| #!/usr/bin/python3 | |
| import json | |
| import os | |
| import struct | |
| import subprocess | |
| import sys | |
| import tempfile | |
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 f502fee3909d65bc6ca74cb10545a6899b347f35 Mon Sep 17 00:00:00 2001 | |
| From: David Michael Barr <[email protected]> | |
| Date: Fri, 20 Nov 2020 15:44:34 +0900 | |
| Subject: [PATCH] glitch: skip reference refresh of keyframes | |
| --- | |
| src/decode.c | 10 +++++++--- | |
| 1 file changed, 7 insertions(+), 3 deletions(-) | |
| diff --git a/src/decode.c b/src/decode.c |
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 \ |
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) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.