-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ffmpeg_4: Enable support for AV1 decoding via dav1d by default #66527
ffmpeg_4: Enable support for AV1 decoding via dav1d by default #66527
Conversation
Imo this is mostly a closure size issue, it looks like we can amend the
Yes, my take at least on the |
@adisbladis thanks for the feedback :)
Any updates?
Sounds good :) And the adoption of AV1 will hopefully progress "fast" (for a codec): https://en.wikipedia.org/wiki/AV1#Adoption I'm just a bit concerned about the performance without proper hardware acceleration, but that'll hopefully change soon as well :) |
@adisbladis I just gave |
The stable version of libaom is unusable grade outdated. On my personal system I build it from a git snapshot (rev 32185d165e0a238a32b20c5bbd59e360bd46d067 currently. Could probably go a bit newer). At least for my mpv closure. Unfortunately libaom API seems to be quite unstable, and bumping it globally might break other users of libaom (that expect 1.0.0) than ffpmeg. My proposal would be that we either build ffmpeg_4 with a known good git revision of libaom, or simply don't support libaom in ffmpeg_4 for the time being (so no encoding, unfortunately), and focus on libdav1d which is both more stable API-wise and faster at decoding. The latter has the benefit of making dav1d the default decoder for AV1 in e.g. mpv (last time I checked it would default to the slower libaom unless you run Edit: Misc clarifications. Change the link into my nixconfig, as it was pointing to a revision of it with not quite working libaom |
Agreed, I already checked what other distributions are doing but it seems like most distributions are also packaging the stable releases: https://repology.org/project/aom/versions
Most packages would hopefully only use it indirectly via ffmpeg which should be fine if ffmpeg still builds (AFAIK). Currently, the only other package with a direct dependency on
I'll update this PR to focus on AV1 decoding via
Yeah, that's a bit annoying - would be great if |
7ca1e64
to
a1a43d9
Compare
This is e.g. required for mpv (depends on ffmpeg_4) to play AV1 videos. Fixes NixOS#54990. But since dav1d is only a AV1 decoder this doesn't support AV1 encoding as well (that would require an additional dependency on libaom). The dependency on dav1d can be disabled by overriding it to null.
a1a43d9
to
aed9694
Compare
This is e.g. required for mpv (depends on ffmpeg_4) to play AV1 videos.
Fixes #54990.
But since dav1d is only a AV1 decoder this doesn't support AV1 encoding
as well (that would require an additional dependency on libaom).
TODOs for review:
av1DecodingSupport
(or addlibaom
as well)?dav1d
tonull
.TODOs:
ffmpeg_4
which causes the many rebuilds (IIRC ~2.5k),that might be avoidable (I'll take a look later).-> It affects the other versions becauseifMinVer
evaluates tonull
and therefore changes the list (could avoid this but that wouldn't match the existing file/code structure).Motivation for this change
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @