Currently libvpx7 is only available for Debian/stable (bookworm) but not more for Debian/unstable. Debian unstable/sid currently uses libvpx8 and/or libvpx9.
With libvpx9 installed, but without libvpx7, ScummVM does not start. The console says:
Code: Select all
./scummvm: error while loading shared libraries: libvpx.so.7: cannot open shared object file: No such file or directory
Code: Select all
ln -s /usr/lib/x86_64-linux-gnu/libvpx.so.9 /usr/lib/x86_64-linux-gnu/libvpx.so.7
Better would be a dependency query like libvpx7 >= or so.
Edit: I found the check for VP8/VP9 Decoder here:
https://github.com/scummvm/scummvm/blob ... gure#L5397