IgorBeg wrote:
From What I understand, with Cin_20240630 the steps are: 1) cd to "cinelerra-5.1" directory 2) make clean 3) export FFMPEG_EXTRA_CFG="--disable-decoder=vvc" ( before running autogen.sh / configure / make ) 4) patch -p1 < alt_shortcuts.patch ( to use standard shortcuts ) 5) ./autogen.sh 6) ./configure --with-single-user --without-shuttle-usb \ --without-vaapi --without-vdpau \ --disable-dav1d \ *--enable-libaom=no ( "--enable-libaom=no" added, without double quote )* 7) make 2>&1 | tee log 8) grep "\*\*\*.*error" -ai log ( Check for obvious build errors ) 9) make install
Andrew_R wrote:
I think --disable-libaom should work, too?
Thank you Andrew_R! "--disable-libaom" instead of "--enable-libaom=no" in ./configure works.