diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index 40dcb3fe6..42a51f6b0 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -57,13 +57,13 @@ jobs: ubuntu-24.04) sudo apt-get update sudo apt-get install autoconf automake build-essential cmake \ - libtool pkg-config nasm zlib1g-dev libvorbis-dev libx264-dev + libtool pkg-config nasm zlib1g-dev libvorbis-dev libx264-dev libx265-dev if [[ "${{ matrix.config.extras }}" ]]; then sudo apt-get install doxygen wget fi ;; macos-14) - brew install automake libtool nasm libpng libvorbis libvpx opus x264 + brew install automake libtool nasm libpng libvorbis libvpx opus x264 x265 ;; esac diff --git a/scripts/build-deps b/scripts/build-deps index 9cc795305..5af6507a8 100755 --- a/scripts/build-deps +++ b/scripts/build-deps @@ -63,6 +63,7 @@ echo ./configure --enable-gpl \ --enable-version3 \ --enable-libx264 \ + --enable-libx265 \ --enable-libxml2 \ --enable-shared \ --enable-sse \