Parcourir la source

Cleanup

master
Ray Burgemeestre il y a 5 mois
Parent
révision
2cd430e648
1 fichiers modifiés avec 0 ajouts et 13 suppressions
  1. +0
    -13
      ffmpeg/Makefile

+ 0
- 13
ffmpeg/Makefile Voir le fichier

@@ -35,12 +35,7 @@ ubuntu2204:
bash ../ubuntu2204.sh chown $$(id -u):$$(id -g) . -R # fix permissions

ubuntu2404:
# sometimes got 404 on videolan/x264
#git clone https://code.videolan.org/videolan/x264
#git clone git://source.ffmpeg.org/ffmpeg.git
#git clone https://github.com/rayburgemeestre/x264
git clone -b stable https://code.videolan.org/videolan/x264
#git clone https://github.com/rayburgemeestre/ffmpeg
git clone -b n7.1 https://github.com/FFmpeg/FFmpeg ffmpeg

bash ../ubuntu2404.sh make ffmpeg_impl
@@ -62,11 +57,6 @@ ffmpeg_impl:

pushd x264 && \
echo pass
#git checkout 2451a7282463f68e532f2eee090a70ab139bb3e7
# ^ parent of 71ed44c7312438fac7c5c5301e45522e57127db4, which is where they dropped support for:
# libavcodec/libx264.c:282:9: error: 'x264_bit_depth' undeclared (first use in this function); did you mean 'x264_picture_t'?
# if (x264_bit_depth > 8)
# ^~~~~~~~~~~~~~
pushd x264 && \
./configure --cxx=$$(which c++) --enable-static --enable-shared --prefix=$$(realpath $$PWD/../x264_out) && \
make -j $$(nproc) && \
@@ -78,11 +68,8 @@ ffmpeg_impl:
make install

pushd ffmpeg && git checkout n7.1
#git checkout 71052d85c16bd65fa1e3e01d9040f9a3925efd7a # or my muxing code won't work, they've modified the example since fba1592f35501bff0f28d7885f4128dfc7b82777
pushd ffmpeg && \
./configure --cxx=$$(which c++) --enable-static --enable-shared --enable-libx264 --enable-gpl --enable-swresample --disable-libdrm --prefix=$$(realpath $$PWD/../ffmpeg_out) && \
# sed -i.bak 's/HAVE_ARC4RANDOM 1/HAVE_ARC4RANDOM 0/g' ./config.h && \
# patch libavcodec/x86/mathops.h 5.1-0004-fix-binutils.patch && \
make -j $$(nproc) && \
make install


Chargement…
Annuler
Enregistrer