James Almer
James Almer
Wouldn't it be safer to include a known good snapshot of this branch inside the crates folder, and use that instead of a remote private branch that may change in...
Also, the spec states that if reduced_still_picture_header is enabled (currently always forced for still_picture), dimensions in the sequence header and the frame header must be the same, so you should...
If i set a max_width value lower than the width of the actual frames (e.g. a 720x480 y4m source encoded with --max-width=64) i get this error: ``` !! Invalid configuration:...
The first option sounds good. Basically, replacing the hardcoded 65535 with something like min(65535, max_width).
`!! Invalid configuration: invalid width 720 (expected >= 16,
Should be good then. Thanks.
the rav1e-params ffmpeg option is mapped to the rav1e_config_parse() C API function, and none of those you listed are among the supported keys. You can see what's supported in the...
For colorspace you need to use bt2020nc or bt2020c. See https://ffmpeg.org/ffmpeg-codecs.html And i don't know if there's such a feature request.
Are you using a custom build script? Those cflags don't look like the ones in Makefile, which add -std=gnu99 and work just fine with gcc 4.9
You shouldn't discard the option of adding SIMD optimized functions. If what you want to avoid is raw NASM-syntax assembly then there's always intrinsics, that while not as well performing...