├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-image-tags.yml ├── .pre-commit-config.yaml ├── LICENSE.LGPL ├── MANIFEST.in.in ├── Makefile ├── README.md ├── cerbero-uninstalled ├── cerbero-uninstalled.bat ├── cerbero-uninstalled.ps1 ├── cerbero ├── __init__.py ├── bootstrap │ ├── __init__.py │ ├── android.py │ ├── bootstrapper.py │ ├── build_tools.py │ ├── ios.py │ ├── linux.py │ ├── osx.py │ ├── rust.py │ └── windows.py ├── build │ ├── __init__.py │ ├── build.py │ ├── cookbook.py │ ├── filesprovider.py │ ├── oven.py │ ├── recipe.py │ └── source.py ├── commands │ ├── __init__.py │ ├── add_package.py │ ├── add_recipe.py │ ├── bootstrap.py │ ├── build.py │ ├── bundlesource.py │ ├── cache.py │ ├── check.py │ ├── checkpackage.py │ ├── debugpackages.py │ ├── deps.py │ ├── edit_cache.py │ ├── fetch.py │ ├── genlibfiles.py │ ├── gensdkshell.py │ ├── genvsprops.py │ ├── genxcconfig.py │ ├── graph.py │ ├── info.py │ ├── list.py │ ├── package.py │ ├── rdeps.py │ ├── runit.py │ ├── shell.py │ ├── tag.py │ └── wipe.py ├── config.py ├── enums.py ├── errors.py ├── hacks.py ├── ide │ ├── __init__.py │ ├── pkgconfig.py │ ├── vs │ │ ├── __init__.py │ │ ├── env.py │ │ ├── genlib.py │ │ ├── pkgconfig2vsprops.py │ │ ├── props.py │ │ └── vsprops.py │ └── xcode │ │ ├── __init__.py │ │ ├── fwlib.py │ │ └── xcconfig.py ├── main.py ├── packages │ ├── __init__.py │ ├── android.py │ ├── debian.py │ ├── disttarball.py │ ├── linux.py │ ├── ninja_syntax.py │ ├── osx │ │ ├── __init__.py │ │ ├── buildtools.py │ │ ├── bundles.py │ │ ├── distribution.py │ │ ├── info_plist.py │ │ └── packager.py │ ├── package.py │ ├── packager.py │ ├── packagesstore.py │ ├── rpm.py │ ├── windows │ │ ├── __init__.py │ │ ├── wix_on_ninja.py │ │ └── wrapper.py │ └── wix.py ├── tools │ ├── __init__.py │ ├── depstracker.py │ ├── libtool.py │ ├── osxrelocator.py │ ├── osxuniversalgenerator.py │ ├── pkgconfig.py │ └── strip.py └── utils │ ├── __init__.py │ ├── git.py │ ├── manifest.py │ ├── messages.py │ ├── msbuild.py │ ├── shell.py │ ├── svn.py │ └── tar.py ├── ci ├── cerbero_setup.sh ├── checks_setup.sh ├── docker_android_setup.sh ├── docker_setup.sh ├── examples_setup.sh ├── exists_branch_in_user_repo.sh ├── generate_rules.py └── run_retry.sh ├── config ├── android.config ├── build-tools.cbc ├── cross-android-arm64.cbc ├── cross-android-armv7.cbc ├── cross-android-universal.cbc ├── cross-android-x86-64.cbc ├── cross-android-x86.cbc ├── cross-ios-arm64.cbc ├── cross-ios-universal.cbc ├── cross-ios-x86-64.cbc ├── cross-lin-arm.cbc ├── cross-lin-arm64.cbc ├── cross-lin-x86.cbc ├── cross-macos-arm64.cbc ├── cross-macos-universal.cbc ├── cross-macos-x86-64.cbc ├── cross-uwp-universal.cbc ├── cross-win-arm64.cbc ├── cross-win-armv7.cbc ├── cross-win32.cbc ├── cross-win64.cbc ├── darwin.config ├── ios.config ├── linux.config ├── mingw-multilib-lin.cbc ├── mingw-multilib-win.cbc ├── osx-x86-64.cbc ├── win32.cbc ├── win64.cbc └── windows.config ├── data ├── autotools │ ├── config.guess │ └── config.sub ├── images │ ├── git-installer-PATH.png │ ├── git-installer-line-endings.png │ ├── msys-install-packages.png │ ├── py-installer-page1.png │ ├── py-installer-page3.png │ ├── vs-installer-uwp-workload.png │ ├── vs2017-installer-workloads.png │ └── windows-settings-developer-mode.png ├── licenses │ ├── Apache-2.0.txt │ ├── GPL-2+.txt │ ├── GPL-3+.txt │ ├── LGPL-2+.txt │ ├── LGPL-2.1+.txt │ ├── LGPL-3+.txt │ ├── MPL-1.1.txt │ └── MPL-2.txt ├── mobile │ ├── FindGStreamerMobile.cmake │ ├── gst_ios_init.m.in │ └── gstreamer_android-1.0.c.in ├── msys2 │ └── profile.d │ │ └── aliases.sh ├── ndk-build │ ├── fontconfig │ │ ├── fonts.conf │ │ └── fonts │ │ │ └── Ubuntu-R.ttf │ ├── gstreamer-1.0.mk │ ├── gstreamer_android-1.0.c.in │ ├── gstreamer_prebuilt.mk │ ├── tools.mk │ └── tools │ │ └── windows │ │ ├── libiconv2.dll │ │ ├── libintl3.dll │ │ ├── pkg-config.exe │ │ ├── regex2.dll │ │ └── sed.exe ├── vs-1.0 │ ├── gst-sdk-template │ │ ├── Scripts │ │ │ └── 1033 │ │ │ │ └── default.js │ │ └── gst-template.vcxproj │ ├── msvc │ │ ├── common.props │ │ ├── x86.props │ │ └── x86_64.props │ └── wizard │ │ ├── gst-sdk-template.ico │ │ ├── gst-sdk-template.vsdir │ │ └── gst-sdk-template.vsz ├── wix │ ├── Config.wxi │ ├── installer.wxs │ └── wixui_Mondo_GStreamer.wxi └── xcode │ └── templates │ └── ios │ ├── GStreamer Base.xctemplate │ ├── TemplateInfo.plist │ ├── fontconfig │ │ ├── fonts.conf │ │ └── fonts │ │ │ └── Ubuntu-R.ttf │ ├── gst_ios_init.h │ ├── gst_ios_init.m │ └── main.m │ ├── GStreamer Empty Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Master-Detail Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Page-Based Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Single View Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Tabbed Application.xctemplate │ └── TemplateInfo.plist │ └── GStreamer Utility Application.xctemplate │ └── TemplateInfo.plist ├── docs └── toolchains.md ├── packages ├── base-crypto.package ├── base-system-1.0.package ├── custom.py ├── gstreamer-1.0-capture.package ├── gstreamer-1.0-codecs-gpl.package ├── gstreamer-1.0-codecs-restricted.package ├── gstreamer-1.0-codecs.package ├── gstreamer-1.0-core.package ├── gstreamer-1.0-devtools.package ├── gstreamer-1.0-dvd.package ├── gstreamer-1.0-editing.package ├── gstreamer-1.0-effects.package ├── gstreamer-1.0-encoding.package ├── gstreamer-1.0-libav.package ├── gstreamer-1.0-net-restricted.package ├── gstreamer-1.0-net.package ├── gstreamer-1.0-playback.package ├── gstreamer-1.0-python.package ├── gstreamer-1.0-qt5.package ├── gstreamer-1.0-qt6.package ├── gstreamer-1.0-system.package ├── gstreamer-1.0-visualizers.package ├── gstreamer-1.0-vs-templates.package ├── gstreamer-1.0 │ ├── background.png │ ├── background_dark.png │ ├── banner.bmp │ ├── dialog.bmp │ ├── gstreamer-1.0.package │ ├── icon.ico │ ├── license.rtf │ ├── license.txt │ ├── license_unwrapped.txt │ └── post_install_ios └── vsintegration-1.0.package ├── recipes-toolchain ├── binutils.recipe ├── binutils │ ├── 0002-check-for-unusual-file-harder.patch │ ├── 0010-bfd-Increase-_bfd_coff_max_nscns-to-65279.patch │ ├── 0110-binutils-mingw-gnu-print.patch │ ├── 0410-windres-handle-spaces.patch │ ├── 0500-fix-weak-undef-symbols-after-image-base-change.patch │ ├── 2001-ld-option-to-move-default-bases-under-4GB.patch │ ├── 2003-Restore-old-behaviour-of-windres-so-that-options-con.patch │ ├── 3001-hack-libiberty-link-order.patch │ ├── libiberty-unlink-handle-windows-nul.patch │ └── reproducible-import-libraries.patch ├── gcc-bootstrap.recipe ├── gcc-sources.recipe ├── gcc-sources │ ├── 0003-Windows-Follow-Posix-dir-exists-semantics-more-close.patch │ ├── 0005-Windows-Don-t-ignore-native-system-header-dir.patch │ ├── 0007-Build-EXTRA_GNATTOOLS-for-Ada.patch │ ├── 0008-Prettify-linking-no-undefined.patch │ ├── 0011-Enable-shared-gnat-implib.patch │ ├── 0012-Handle-spaces-in-path-for-default-manifest.patch │ ├── 0014-gcc-9-branch-clone_function_name_1-Retain-any-stdcall-suffix.patch │ ├── 0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch │ ├── 0021-PR14940-Allow-a-PCH-to-be-mapped-to-a-different-addr.patch │ ├── 0140-gcc-Enable-diagnostic-colors-under-mintty.patch │ ├── 0200-add-m-no-align-vector-insn-option-for-i386.patch │ ├── 10000-gcc-cp-Make-lang.in-Fix-spurious-directory-separator.patch │ ├── 2001-gcc-update-to-14.1.0.patch │ └── 9999-gcc-build-without-sysroot-hack.patch ├── gcc.recipe ├── gendef.recipe ├── gmp.recipe ├── gmp │ ├── 0001-gmp-Do-not-declare-functions-as-dllimport.patch │ └── 0002-gmp-add-macro-to-let-applications-link-static.patch ├── isl.recipe ├── isl │ └── isl-0.14.1-no-undefined.patch ├── mingw-w64-crt.recipe ├── mingw-w64-headers.recipe ├── mingw-w64-sources.recipe ├── mingw-w64 │ ├── 0001-Allow-to-use-bessel-and-complex-functions-without-un.patch │ └── 0002-Bug-1829971-Update-to-MinGW-trunk-r-firefox-build-sy.patch ├── mpc.recipe ├── mpfr.recipe ├── toolchain.recipe ├── windows-default-manifest.recipe ├── winpthreads.recipe ├── winpthreads │ └── 0001-Define-__-de-register_frame_info-in-fake-libgcc_s.patch └── winstorecompat.recipe ├── recipes ├── a52dec.recipe ├── a52dec │ ├── 0001-Add-Meson-build.patch │ └── 0002-Skip-getopt-copy-when-provided-by-the-system.patch ├── angle-uwp.recipe ├── bash-completion.recipe ├── build-tools │ ├── autoconf.recipe │ ├── automake.recipe │ ├── bindgen-cli.recipe │ ├── bison.recipe │ ├── cargo-c.recipe │ ├── cargo-c │ │ └── 0.10.17-Cargo.lock │ ├── cmake.recipe │ ├── dragonfire.recipe │ ├── flex.recipe │ ├── flex │ │ └── 0001-Add-generic-configure-patches-for-the-libtool-flat_n.patch │ ├── gas-preprocessor.recipe │ ├── gettext-m4.recipe │ ├── glib-tools.recipe │ ├── glib-tools │ │ └── 0001-meson-Disable-tests-fail-on-our-ancient-MinGW.patch │ ├── gnu-sed.recipe │ ├── gobject-introspection-m4.recipe │ ├── gperf.recipe │ ├── gperf │ │ ├── 0000-workaround-implicit-function-declaration-warnings.patch │ │ ├── 0001-tests-allow-passing-of-input-as-filename-argument-in.patch │ │ ├── 0002-doc-fix-up-hashbang-lines-for-perl-scripts.patch │ │ ├── 0003-doc-texi2html-add-outdir-option.patch │ │ └── 0004-Add-meson-build-system-support.patch │ ├── gtk-doc-lite.recipe │ ├── libclang.recipe │ ├── libtool.recipe │ ├── libtool │ │ ├── 0001-Add-support-for-weak_framework-linking-on-Darwin.patch │ │ └── 0001-support-gcc-toolchain-argument.patch │ ├── m4.recipe │ ├── m4 │ │ └── 0001-build-disable-documentation-build.patch │ ├── meson.recipe │ ├── mingw-regex │ │ └── 0001-Fix-compilation.patch │ ├── moltenvk-tools.recipe │ ├── moltenvk-tools │ │ └── ifdef-new-metal-types.patch │ ├── nasm.recipe │ ├── ninja.recipe │ ├── ninja │ │ └── 0001-configure.py-Look-for-cl.exe-before-assuming-MSVC.patch │ ├── vala-m4.recipe │ ├── wine-mono.recipe │ ├── winetricks.recipe │ └── wix.recipe ├── bzip2.recipe ├── bzip2 │ └── add-meson-build-files.patch ├── ca-certificates.recipe ├── ca-certificates │ └── ca-certificates.crt ├── cairo.recipe ├── cdparanoia.recipe ├── cdparanoia │ └── 0001-Add-Meson-build.patch ├── curl.recipe ├── custom.py ├── dav1d.recipe ├── directx-headers.recipe ├── directxmath.recipe ├── directxmath │ └── 0001-Add-DirectXMath-wrap.patch ├── docbook-xml.recipe ├── docbook-xsl.recipe ├── dump-versions.recipe ├── expat.recipe ├── ffmpeg.recipe ├── ffmpeg │ ├── 0001-Add-Meson-build.patch │ └── fix-textrels.patch ├── flac.recipe ├── flac │ └── 0001-Add-Meson-build.patch ├── fmt.recipe ├── fontconfig.recipe ├── fontconfig │ ├── 0001-fcobjs-Remove-duplicate-function-prototypes.patch │ └── 0001-meson-Always-write-utf-8-files-with-LF-newlines.patch ├── freetype.recipe ├── frei0r-plugins.recipe ├── frei0r-plugins │ ├── 0001-cmake-Fix-c99-standard-flag-wiping-out-cross-compila.patch │ └── 0002-Fix-configuring-with-CMake-version-4.patch ├── fribidi.recipe ├── gdk-pixbuf.recipe ├── glib-networking.recipe ├── glib.recipe ├── glib │ ├── 0001-Add-support-for-loading-GIO-modules-from-the-distro-.patch │ ├── 0002-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch │ ├── 0003-giomodule-do-not-try-to-load-modules-from-gio-module.patch │ ├── 0004-Unhide-_g_io_modules_ensure_extension_points_registe.patch │ ├── 0005-gtypes.h-workaround-for-g_uint64_checked_mul-issue-w.patch │ ├── 0006-gio-fix-duplicate-g_trace_-symbols-in-static-libs-wi.patch │ └── uwp │ │ ├── 0001-gio-Disable-generic-DNS-record-lookup-on-UWP.patch │ │ ├── 0002-glib-Never-use-MessageBox-on-UWP-apps.patch │ │ ├── 0003-gpoll-UWP-does-not-need-to-poll-a-msg_fd.patch │ │ ├── 0004-win_iconv-Use-LoadPackagedLibrary-when-building-UWP-.patch │ │ ├── 0005-goption-Do-not-call-GetCommandlineW-on-UWP.patch │ │ ├── 0006-gmodule-Fix-some-more-WinRT-incompatibilities.patch │ │ ├── 0007-gutils-Can-t-fetch-the-username-on-UWP.patch │ │ ├── 0008-gutils-GetWindowsDirectory-is-not-available-on-WinRT.patch │ │ ├── 0009-gutils-GetModuleHandle-is-not-available-on-WinRT.patch │ │ ├── 0010-glocalfile-File-user-info-is-not-supported-on-WinRT.patch │ │ ├── 0011-gwin32-Stub-out-all-version-checking-on-WinRT.patch │ │ ├── 0012-gsocket-if_nametoindex-is-not-available-on-WinRT.patch │ │ ├── 0013-gio-ginetaddress-Fix-build-on-WinRT.patch │ │ ├── 0014-WIP-gspawn-Do-not-allow-spawning-or-making-pipes-on-.patch │ │ ├── 0015-WIP-glib-giowin32-Disallow-invalid-usage-of-GIOChann.patch │ │ ├── 0016-WIP-glocalfile-Trash-as-a-concept-does-not-exist-on-.patch │ │ ├── 0017-TODO-gdate-gstdio-Abort-when-trying-to-use-unsupport.patch │ │ ├── 0018-gio-Disable-win32-API-and-modules-when-unavailable-o.patch │ │ ├── 0019-TODO-gdbus-Completely-disable-when-building-for-WinR.patch │ │ ├── 0020-WIP-glib-Implement-get_special_folder-for-UWP-apps.patch │ │ ├── 0021-WIP-gtimezone-Partially-port-to-WinRT.patch │ │ ├── 0022-TODO-gutils-Hard-code-windows-version-detection-in-g.patch │ │ ├── 0023-TODO-gio-gcontenttype-Needs-porting-to-WinRT-model.patch │ │ └── 0024-meson-Add-workaround-for-Visual-Studio-2019-ARM-buil.patch ├── gobject-introspection.recipe ├── gobject-introspection │ ├── 0001-Revert-build-Do-not-compile-uninstalled-GIR-into-typ.patch │ ├── 0002-Revert-build-Do-not-install-generated-GLib-GIR-files.patch │ ├── 0003-girepository-Load-typelibs-from-a-relocatable-prefix.patch │ ├── 0004-build-Fix-b_vscrt-value-use-without-converting-it-to.patch │ ├── 0005-windows-Do-not-use-msvc-syntax-for-pkg-config-parsin.patch │ ├── 0006-tests-Fix-path-parsing-for-Windows.patch │ └── 0007-g-ir-tools-Support-reading-rspfiles-for-arguments.patch ├── graphene.recipe ├── gst-android-1.0.recipe ├── gst-devtools-1.0.recipe ├── gst-editing-services-1.0.recipe ├── gst-libav-1.0.recipe ├── gst-plugins-bad-1.0.recipe ├── gst-plugins-base-1.0.recipe ├── gst-plugins-good-1.0.recipe ├── gst-plugins-rs.recipe ├── gst-plugins-ugly-1.0.recipe ├── gst-python-1.0.recipe ├── gst-rtsp-server-1.0.recipe ├── gst-shell.recipe ├── gstreamer-1.0-osx-framework.recipe ├── gstreamer-1.0.recipe ├── gstreamer-ios-templates.recipe ├── harfbuzz.recipe ├── json-glib.recipe ├── ladspa.recipe ├── lame.recipe ├── lame │ ├── 0001-lame-add-meson-build-based-on-wrapdb-wrap-lame_3.100.patch │ └── 0002-lame.def-remove-decoder-symbols.patch ├── lcevcdec.recipe ├── lcevcdec │ ├── 0001-win32-Make-it-build-on-32-bit-Windows.patch │ ├── 0002-cmake-Don-t-modify-CMAKE_MODULE_PATH-before-running-.patch │ ├── 0003-pc-file-Put-C-lib-in-private-deps-when-doing-static-.patch │ └── 0004-cmake-Use-libc-on-Apple-platforms.patch ├── libass.recipe ├── libass │ ├── 0001-android-support.patch │ └── 0001-meson-fix-build-on-iOS-with-host_system-set-to-iOS.patch ├── libdca.recipe ├── libdca │ ├── 0001-Add-Meson-build.patch │ ├── 0002-Add-shared-library-support.patch │ └── 0003-Allow-building-with-MSVC.patch ├── libdv.recipe ├── libdv │ ├── 0001-Add-Meson-build-system-definitions.patch │ ├── 0001-quant-Fix-buffer-overflow-detected-by-ASAN.patch │ ├── 0002-meson-work-around-brokenness-in-public-dv_types.h-he.patch │ ├── 0004-meson-Fix-build-on-macOS-and-iOS.patch │ ├── 0005-libdv-encode.c-fix-undefined-behavior-compiler-warni.patch │ ├── 0006-libdv-fallback-to-localtime_s-or-localtime-if-localt.patch │ ├── 0007-libdv-use-win32-thread-primitives-on-Windows.patch │ ├── 0008-libdv-fix-build-if-__attribute__-destructor-is-not-a.patch │ ├── 0009-meson-fix-symbol-export-on-MSVC.patch │ ├── 0010-meson-pick-up-endianness-from-config.h.patch │ ├── 0013-libdv-don-t-spam-stderr-if-there-s-no-audio.patch │ └── 0014-libdv-Fix-compilation-on-older-Android-versions.patch ├── libdvdnav.recipe ├── libdvdnav │ └── 0001-Add-Meson-build.patch ├── libdvdread.recipe ├── libdvdread │ ├── 0001-Add-Meson-build.patch │ └── 0002-Fix-MSVC-compatibility.patch ├── libffi.recipe ├── libiconv.recipe ├── libiconv │ ├── 0001-Use-correct-autotools-versions.patch │ └── 0002-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch ├── libjpeg-turbo.recipe ├── libltc.recipe ├── libltc │ ├── 0001-Add-minimal-meson-build-system.patch │ └── 0001-Fix-Windows-build.patch ├── libnice.recipe ├── libogg.recipe ├── libogg │ ├── 0001-Add-Meson-build-system.patch │ └── 0002-meson-fix-exports-and-library-name-with-MingW.patch ├── libpng.recipe ├── libpng │ ├── 0002-cmake-Force-enable-pkg-config-modules-everywhere.patch │ └── 0003-cmake-Fix-naming-convention-breaking-rustc-library-l.patch ├── libproxy.recipe ├── libpsl.recipe ├── librsvg.recipe ├── librsvg │ ├── 0001-makedef-rework-flags-to-work-with-Ubuntu-and-Fedora.patch │ ├── 0002-meson-Consider-native-dependencies-also-on-Linux.patch │ ├── 0003-cargo_wrapper-py-Allow-setting-the-optimization-leve.patch │ └── 0004-meson-Do-not-forcibly-version-the-shared-library-nam.patch ├── librtmp.recipe ├── librtmp │ ├── 0001-librtmp-add-Meson-build.patch │ ├── 0003-Port-to-openssl-1.1.1.patch │ ├── 0004-Port-to-newer-MSVC.patch │ ├── 0005-Fix-debug-build.patch │ └── 0006-Add-license-for-vcpkg-changes.patch ├── libsoup.recipe ├── libsrtp.recipe ├── libsrtp │ ├── 0001-Fix-building-with-gcc-10.patch │ ├── 0001-meson-Fix-check-for-size_t-on-MSVC.patch │ └── libsrtp-meson-port.patch ├── libtheora.recipe ├── libtheora │ ├── 0001-Add-meson-build-system.patch │ ├── 0001-meson-fix-build-with-assembly-enabled-on-32-bit-x86.patch │ └── 0001-theora-fix-library-so-versioning-and-add-darwin_vers.patch ├── libunwind.recipe ├── libunwind │ └── 0001-Fix-compilation-with--fno-common.patch ├── libvorbis.recipe ├── libvorbis │ └── 0001-Add-Meson-build.patch ├── libvpx.recipe ├── libvpx │ └── 0003-Add-Meson-build.patch ├── libxml2.recipe ├── libxml2 │ └── 0001-meson-Make-tests-optional.patch ├── mingw-runtime.recipe ├── moltenvk.recipe ├── mpg123.recipe ├── mpg123 │ └── 0001-Add-Meson-build.patch ├── nghttp2.recipe ├── nghttp2 │ └── 0001-Expose-NGHTTP2_STATICLIB-on-the-pkg-config-file.patch ├── opencore-amr.recipe ├── opencore-amr │ └── 0001-Add-Meson-build-system.patch ├── openh264.recipe ├── openh264 │ └── 0001-build-Add-missing-flags-for-x86-asm-support.patch ├── openjpeg.recipe ├── openssl.recipe ├── openssl │ ├── 0001-Load-ca-certificate.crt-from-PREFIX-etc-ssl-on-macOS.patch │ └── 0002-windows-makefile.tmpl-Generate-and-install-pkgconfig.patch ├── opus.recipe ├── opus │ ├── 0001-celt-Force-stack-alignment-for-functions-using-__m12.patch │ └── 0001-meson-fix-get_version.py-to-try-the-package_version-.patch ├── orc.recipe ├── pango.recipe ├── pcre2.recipe ├── pcre2 │ ├── 0001-Add-meson-build-files-based-on-wrap-pcre2_10.42-1.patch │ ├── 0002-meson-add-build-options-for-8-16-32-bit-libs-and-dis.patch │ ├── 0003-meson-define-SUPPORT_PCRE2_16-etc-as-well-if-those-a.patch │ └── 0004-meson-fix-library-versioning.patch ├── pixman.recipe ├── pkg-config.recipe ├── pkg-config │ ├── 0001-Add-Meson-build-optionally-with-internal-glib-subpro.patch │ ├── 0001-Automatically-detect-prefix-on-macOS-too.patch │ └── 0001-Fix-glib-build-on-Windows.patch ├── proxy-libintl.recipe ├── proxy-libintl │ └── 0001-Rename-symbols-for-compatibility-with-gettext.patch ├── pycairo.recipe ├── pygobject.recipe ├── pygobject │ ├── 0001-gi-Call-os.add_dll_directory-on-Windows-when-possibl.patch │ └── 0002-Fix-syntax-error-for-missing.patch ├── qrencode.recipe ├── sbc.recipe ├── sbc │ ├── 0001-sbc-Use-stdint.h.patch │ ├── 0002-Don-t-use-NEON-with-aarch64-on-Clang.patch │ ├── 0003-sbc.h-Define-ssize_t-when-building-with-MSVC.patch │ ├── 0004-Add-support-for-Meson-build-system.patch │ └── 0005-Fix-build-with-MSVC.patch ├── soundtouch.recipe ├── soundtouch │ └── 0001-Add-Meson-build.patch ├── spandsp.recipe ├── spandsp │ ├── 0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch │ ├── 0002-Delete-redundant-function-prototype-in-header.patch │ ├── 0003-FS-6010-resolve.patch │ ├── 0004-Fix-build-for-windows-using-mingw.patch │ └── 0005-Add-Meson-build.patch ├── speex.recipe ├── speex │ └── 0001-Add-Meson-build-system.patch ├── sqlite3.recipe ├── sqlite3 │ └── 0001-Add-meson-build-file-from-wrapdb.patch ├── srt.recipe ├── svt-av1.recipe ├── svt-jpeg-xs.recipe ├── taglib.recipe ├── taglib │ ├── 0001-Re-add-support-for-std-atomic.patch │ ├── 0002-Build-a-static-and-non-static-version.patch │ └── 0003-Require-CMake-version-3.5-1148.patch ├── tiff.recipe ├── tiff │ ├── 0001-Add-meson-build-based-on-wrapdb-version-4.5.0-3.patch │ ├── 0002-tiff-add-gl-option-to-disable-OpenGL-support.patch │ ├── 0003-tiff-add-tests-option-to-disable-building-of-tests.patch │ └── 0004-tiff-fix-library-name-and-lib-versioning.patch ├── tinyalsa.recipe ├── tinyalsa │ └── 0001-meson-add-attributes-h-and-plugin-h.patch ├── vo-aacenc.recipe ├── vo-aacenc │ └── 0001-Add-Meson-build.patch ├── vsintegration-1.0.recipe ├── vulkan-android.recipe ├── vvdec.recipe ├── vvdec │ ├── 0001-Do-not-set-_WIN32_WINNT-in-CMake.patch │ └── 0002-Remove-include-stdio.h-from-sei.h.patch ├── wavpack.recipe ├── wavpack │ ├── 0001-cmake-Don-t-name-MSVC-DLL-wavpackdll.dll.patch │ ├── 0002-cmake-Set-SOVERSION-to-match-Autotools.patch │ └── 0003-cmake-Skip-setting-ASM-up-with-MSVC.patch ├── webrtc-audio-processing.recipe ├── webrtc-audio-processing │ └── 0001-Fix-build-with-GCC-15.1.patch ├── webview2.recipe ├── winpthreads-runtime.recipe ├── x264.recipe ├── x264 │ ├── 0001-Add-Meson-build.patch │ ├── 0001-meson-Do-not-use-native-true-for-find_program.patch │ └── fix-textrels.patch ├── x265-10bit.recipe ├── x265-12bit.recipe ├── x265-src.recipe ├── x265.recipe ├── x265 │ ├── 0001-add-android-support.patch │ ├── 0002-install-shared-library-without-tag.patch │ ├── 0003-cmake-Use-GNUInstallDirs-to-remove-uncertainty.patch │ ├── 0004-cmake-Use-the-Meson-convention-for-exporting-static-.patch │ ├── 0005-cmake-Disable-version-detection-using-git.patch │ ├── 0006-Fix-CMake-build-error-with-latest-CMake-4.0-release.patch │ └── 0007-Fix-for-CMake-Build-Errors-in-MacOS.patch ├── zbar.recipe ├── zbar │ └── 0001-Add-Meson-build.patch ├── zlib.recipe └── zlib │ ├── 0001-Add-a-meson-port.patch │ ├── 0001-meson-add-the-DSTDC-define-to-include-standard-C-hea.patch │ └── 0001-zconf.h-Check-that-HAVE_UNISTD_H-is-not-0.patch ├── ruff.toml ├── setup.py ├── test ├── __init__.py ├── pkgconfig │ ├── glib-2.0.pc │ ├── gmodule-2.0.pc │ ├── gmodule-no-export-2.0.pc │ ├── gobject-2.0.pc │ ├── gstreamer-0.10.pc │ ├── gthread-2.0.pc │ └── libxml-2.0.pc ├── projects │ ├── autotools │ │ ├── Makefile.am │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── data │ │ │ ├── Makefile.am │ │ │ └── file1.txt │ │ └── src │ │ │ └── Makefile.am │ ├── cmake │ │ ├── CMakeLists.txt │ │ └── data │ │ │ └── file1.txt │ └── meson │ │ ├── data │ │ └── file1.txt │ │ └── meson.build ├── recipes │ ├── autotools-cerbero.recipe │ ├── cmake-cerbero.recipe │ └── meson-cerbero.recipe ├── test_build_common.py ├── test_cerbero_build_build.py ├── test_cerbero_build_cookbook.py ├── test_cerbero_build_filesprovider.py ├── test_cerbero_build_recipe.py ├── test_cerbero_build_recipe_default.py ├── test_cerbero_build_source_localdir.py ├── test_cerbero_config.py ├── test_cerbero_config_variants.py ├── test_cerbero_ide_pkgconfig.py ├── test_cerbero_ide_xcode_xcconfig.py ├── test_cerbero_packages_disttarball.py ├── test_cerbero_packages_linux.py ├── test_cerbero_packages_osx_info_plist.py ├── test_cerbero_packages_package.py ├── test_cerbero_packages_packagemaker.py ├── test_cerbero_packages_packagesstore.py ├── test_cerbero_packages_wix.py ├── test_cerbero_tools_osxuniversalgenerator.py ├── test_common.py └── test_packages_common.py └── tools ├── bootstrap-debian.sh ├── bootstrap-redhat.sh ├── bootstrap-windows.ps1 ├── build-toolchains.sh ├── cerbero.cbc.template ├── certdata2pem.py ├── chroot.sh ├── common.ps1 └── show-coverage.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-image-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/.gitlab-image-tags.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /MANIFEST.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/MANIFEST.in.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/README.md -------------------------------------------------------------------------------- /cerbero-uninstalled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero-uninstalled -------------------------------------------------------------------------------- /cerbero-uninstalled.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero-uninstalled.bat -------------------------------------------------------------------------------- /cerbero-uninstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero-uninstalled.ps1 -------------------------------------------------------------------------------- /cerbero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/__init__.py -------------------------------------------------------------------------------- /cerbero/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/__init__.py -------------------------------------------------------------------------------- /cerbero/bootstrap/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/android.py -------------------------------------------------------------------------------- /cerbero/bootstrap/bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/bootstrapper.py -------------------------------------------------------------------------------- /cerbero/bootstrap/build_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/build_tools.py -------------------------------------------------------------------------------- /cerbero/bootstrap/ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/ios.py -------------------------------------------------------------------------------- /cerbero/bootstrap/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/linux.py -------------------------------------------------------------------------------- /cerbero/bootstrap/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/osx.py -------------------------------------------------------------------------------- /cerbero/bootstrap/rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/rust.py -------------------------------------------------------------------------------- /cerbero/bootstrap/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/bootstrap/windows.py -------------------------------------------------------------------------------- /cerbero/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/__init__.py -------------------------------------------------------------------------------- /cerbero/build/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/build.py -------------------------------------------------------------------------------- /cerbero/build/cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/cookbook.py -------------------------------------------------------------------------------- /cerbero/build/filesprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/filesprovider.py -------------------------------------------------------------------------------- /cerbero/build/oven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/oven.py -------------------------------------------------------------------------------- /cerbero/build/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/recipe.py -------------------------------------------------------------------------------- /cerbero/build/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/build/source.py -------------------------------------------------------------------------------- /cerbero/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/__init__.py -------------------------------------------------------------------------------- /cerbero/commands/add_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/add_package.py -------------------------------------------------------------------------------- /cerbero/commands/add_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/add_recipe.py -------------------------------------------------------------------------------- /cerbero/commands/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/bootstrap.py -------------------------------------------------------------------------------- /cerbero/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/build.py -------------------------------------------------------------------------------- /cerbero/commands/bundlesource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/bundlesource.py -------------------------------------------------------------------------------- /cerbero/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/cache.py -------------------------------------------------------------------------------- /cerbero/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/check.py -------------------------------------------------------------------------------- /cerbero/commands/checkpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/checkpackage.py -------------------------------------------------------------------------------- /cerbero/commands/debugpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/debugpackages.py -------------------------------------------------------------------------------- /cerbero/commands/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/deps.py -------------------------------------------------------------------------------- /cerbero/commands/edit_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/edit_cache.py -------------------------------------------------------------------------------- /cerbero/commands/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/fetch.py -------------------------------------------------------------------------------- /cerbero/commands/genlibfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/genlibfiles.py -------------------------------------------------------------------------------- /cerbero/commands/gensdkshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/gensdkshell.py -------------------------------------------------------------------------------- /cerbero/commands/genvsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/genvsprops.py -------------------------------------------------------------------------------- /cerbero/commands/genxcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/genxcconfig.py -------------------------------------------------------------------------------- /cerbero/commands/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/graph.py -------------------------------------------------------------------------------- /cerbero/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/info.py -------------------------------------------------------------------------------- /cerbero/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/list.py -------------------------------------------------------------------------------- /cerbero/commands/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/package.py -------------------------------------------------------------------------------- /cerbero/commands/rdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/rdeps.py -------------------------------------------------------------------------------- /cerbero/commands/runit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/runit.py -------------------------------------------------------------------------------- /cerbero/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/shell.py -------------------------------------------------------------------------------- /cerbero/commands/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/tag.py -------------------------------------------------------------------------------- /cerbero/commands/wipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/commands/wipe.py -------------------------------------------------------------------------------- /cerbero/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/config.py -------------------------------------------------------------------------------- /cerbero/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/enums.py -------------------------------------------------------------------------------- /cerbero/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/errors.py -------------------------------------------------------------------------------- /cerbero/hacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/hacks.py -------------------------------------------------------------------------------- /cerbero/ide/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/pkgconfig.py -------------------------------------------------------------------------------- /cerbero/ide/vs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/vs/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/env.py -------------------------------------------------------------------------------- /cerbero/ide/vs/genlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/genlib.py -------------------------------------------------------------------------------- /cerbero/ide/vs/pkgconfig2vsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/pkgconfig2vsprops.py -------------------------------------------------------------------------------- /cerbero/ide/vs/props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/props.py -------------------------------------------------------------------------------- /cerbero/ide/vs/vsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/vs/vsprops.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/xcode/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/fwlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/xcode/fwlib.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/xcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/ide/xcode/xcconfig.py -------------------------------------------------------------------------------- /cerbero/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/main.py -------------------------------------------------------------------------------- /cerbero/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/__init__.py -------------------------------------------------------------------------------- /cerbero/packages/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/android.py -------------------------------------------------------------------------------- /cerbero/packages/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/debian.py -------------------------------------------------------------------------------- /cerbero/packages/disttarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/disttarball.py -------------------------------------------------------------------------------- /cerbero/packages/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/linux.py -------------------------------------------------------------------------------- /cerbero/packages/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/ninja_syntax.py -------------------------------------------------------------------------------- /cerbero/packages/osx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/__init__.py -------------------------------------------------------------------------------- /cerbero/packages/osx/buildtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/buildtools.py -------------------------------------------------------------------------------- /cerbero/packages/osx/bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/bundles.py -------------------------------------------------------------------------------- /cerbero/packages/osx/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/distribution.py -------------------------------------------------------------------------------- /cerbero/packages/osx/info_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/info_plist.py -------------------------------------------------------------------------------- /cerbero/packages/osx/packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/osx/packager.py -------------------------------------------------------------------------------- /cerbero/packages/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/package.py -------------------------------------------------------------------------------- /cerbero/packages/packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/packager.py -------------------------------------------------------------------------------- /cerbero/packages/packagesstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/packagesstore.py -------------------------------------------------------------------------------- /cerbero/packages/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/rpm.py -------------------------------------------------------------------------------- /cerbero/packages/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/windows/__init__.py -------------------------------------------------------------------------------- /cerbero/packages/windows/wix_on_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/windows/wix_on_ninja.py -------------------------------------------------------------------------------- /cerbero/packages/windows/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/windows/wrapper.py -------------------------------------------------------------------------------- /cerbero/packages/wix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/packages/wix.py -------------------------------------------------------------------------------- /cerbero/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/__init__.py -------------------------------------------------------------------------------- /cerbero/tools/depstracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/depstracker.py -------------------------------------------------------------------------------- /cerbero/tools/libtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/libtool.py -------------------------------------------------------------------------------- /cerbero/tools/osxrelocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/osxrelocator.py -------------------------------------------------------------------------------- /cerbero/tools/osxuniversalgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/osxuniversalgenerator.py -------------------------------------------------------------------------------- /cerbero/tools/pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/pkgconfig.py -------------------------------------------------------------------------------- /cerbero/tools/strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/tools/strip.py -------------------------------------------------------------------------------- /cerbero/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/__init__.py -------------------------------------------------------------------------------- /cerbero/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/git.py -------------------------------------------------------------------------------- /cerbero/utils/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/manifest.py -------------------------------------------------------------------------------- /cerbero/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/messages.py -------------------------------------------------------------------------------- /cerbero/utils/msbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/msbuild.py -------------------------------------------------------------------------------- /cerbero/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/shell.py -------------------------------------------------------------------------------- /cerbero/utils/svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/svn.py -------------------------------------------------------------------------------- /cerbero/utils/tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/cerbero/utils/tar.py -------------------------------------------------------------------------------- /ci/cerbero_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/cerbero_setup.sh -------------------------------------------------------------------------------- /ci/checks_setup.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | set -e 4 | 5 | python3 -m pip install pre-commit==3.6.0 -------------------------------------------------------------------------------- /ci/docker_android_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/docker_android_setup.sh -------------------------------------------------------------------------------- /ci/docker_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/docker_setup.sh -------------------------------------------------------------------------------- /ci/examples_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/examples_setup.sh -------------------------------------------------------------------------------- /ci/exists_branch_in_user_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/exists_branch_in_user_repo.sh -------------------------------------------------------------------------------- /ci/generate_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/generate_rules.py -------------------------------------------------------------------------------- /ci/run_retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ci/run_retry.sh -------------------------------------------------------------------------------- /config/android.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/android.config -------------------------------------------------------------------------------- /config/build-tools.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/build-tools.cbc -------------------------------------------------------------------------------- /config/cross-android-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-android-arm64.cbc -------------------------------------------------------------------------------- /config/cross-android-armv7.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-android-armv7.cbc -------------------------------------------------------------------------------- /config/cross-android-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-android-universal.cbc -------------------------------------------------------------------------------- /config/cross-android-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-android-x86-64.cbc -------------------------------------------------------------------------------- /config/cross-android-x86.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-android-x86.cbc -------------------------------------------------------------------------------- /config/cross-ios-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-ios-arm64.cbc -------------------------------------------------------------------------------- /config/cross-ios-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-ios-universal.cbc -------------------------------------------------------------------------------- /config/cross-ios-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-ios-x86-64.cbc -------------------------------------------------------------------------------- /config/cross-lin-arm.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-lin-arm.cbc -------------------------------------------------------------------------------- /config/cross-lin-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-lin-arm64.cbc -------------------------------------------------------------------------------- /config/cross-lin-x86.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-lin-x86.cbc -------------------------------------------------------------------------------- /config/cross-macos-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-macos-arm64.cbc -------------------------------------------------------------------------------- /config/cross-macos-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-macos-universal.cbc -------------------------------------------------------------------------------- /config/cross-macos-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-macos-x86-64.cbc -------------------------------------------------------------------------------- /config/cross-uwp-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-uwp-universal.cbc -------------------------------------------------------------------------------- /config/cross-win-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-win-arm64.cbc -------------------------------------------------------------------------------- /config/cross-win-armv7.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-win-armv7.cbc -------------------------------------------------------------------------------- /config/cross-win32.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-win32.cbc -------------------------------------------------------------------------------- /config/cross-win64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/cross-win64.cbc -------------------------------------------------------------------------------- /config/darwin.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/darwin.config -------------------------------------------------------------------------------- /config/ios.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/ios.config -------------------------------------------------------------------------------- /config/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/linux.config -------------------------------------------------------------------------------- /config/mingw-multilib-lin.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/mingw-multilib-lin.cbc -------------------------------------------------------------------------------- /config/mingw-multilib-win.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/mingw-multilib-win.cbc -------------------------------------------------------------------------------- /config/osx-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/osx-x86-64.cbc -------------------------------------------------------------------------------- /config/win32.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/win32.cbc -------------------------------------------------------------------------------- /config/win64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/win64.cbc -------------------------------------------------------------------------------- /config/windows.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/config/windows.config -------------------------------------------------------------------------------- /data/autotools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/autotools/config.guess -------------------------------------------------------------------------------- /data/autotools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/autotools/config.sub -------------------------------------------------------------------------------- /data/images/git-installer-PATH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/git-installer-PATH.png -------------------------------------------------------------------------------- /data/images/git-installer-line-endings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/git-installer-line-endings.png -------------------------------------------------------------------------------- /data/images/msys-install-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/msys-install-packages.png -------------------------------------------------------------------------------- /data/images/py-installer-page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/py-installer-page1.png -------------------------------------------------------------------------------- /data/images/py-installer-page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/py-installer-page3.png -------------------------------------------------------------------------------- /data/images/vs-installer-uwp-workload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/vs-installer-uwp-workload.png -------------------------------------------------------------------------------- /data/images/vs2017-installer-workloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/vs2017-installer-workloads.png -------------------------------------------------------------------------------- /data/images/windows-settings-developer-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/images/windows-settings-developer-mode.png -------------------------------------------------------------------------------- /data/licenses/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/Apache-2.0.txt -------------------------------------------------------------------------------- /data/licenses/GPL-2+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/GPL-2+.txt -------------------------------------------------------------------------------- /data/licenses/GPL-3+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/GPL-3+.txt -------------------------------------------------------------------------------- /data/licenses/LGPL-2+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/LGPL-2+.txt -------------------------------------------------------------------------------- /data/licenses/LGPL-2.1+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/LGPL-2.1+.txt -------------------------------------------------------------------------------- /data/licenses/LGPL-3+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/LGPL-3+.txt -------------------------------------------------------------------------------- /data/licenses/MPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/MPL-1.1.txt -------------------------------------------------------------------------------- /data/licenses/MPL-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/licenses/MPL-2.txt -------------------------------------------------------------------------------- /data/mobile/FindGStreamerMobile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/mobile/FindGStreamerMobile.cmake -------------------------------------------------------------------------------- /data/mobile/gst_ios_init.m.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/mobile/gst_ios_init.m.in -------------------------------------------------------------------------------- /data/mobile/gstreamer_android-1.0.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/mobile/gstreamer_android-1.0.c.in -------------------------------------------------------------------------------- /data/msys2/profile.d/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/msys2/profile.d/aliases.sh -------------------------------------------------------------------------------- /data/ndk-build/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/fontconfig/fonts.conf -------------------------------------------------------------------------------- /data/ndk-build/fontconfig/fonts/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/fontconfig/fonts/Ubuntu-R.ttf -------------------------------------------------------------------------------- /data/ndk-build/gstreamer-1.0.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/gstreamer-1.0.mk -------------------------------------------------------------------------------- /data/ndk-build/gstreamer_android-1.0.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/gstreamer_android-1.0.c.in -------------------------------------------------------------------------------- /data/ndk-build/gstreamer_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/gstreamer_prebuilt.mk -------------------------------------------------------------------------------- /data/ndk-build/tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools.mk -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools/windows/libiconv2.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools/windows/libintl3.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/pkg-config.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools/windows/pkg-config.exe -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools/windows/regex2.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/ndk-build/tools/windows/sed.exe -------------------------------------------------------------------------------- /data/vs-1.0/gst-sdk-template/Scripts/1033/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/gst-sdk-template/Scripts/1033/default.js -------------------------------------------------------------------------------- /data/vs-1.0/gst-sdk-template/gst-template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/gst-sdk-template/gst-template.vcxproj -------------------------------------------------------------------------------- /data/vs-1.0/msvc/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/msvc/common.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/x86.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/msvc/x86.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/x86_64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/msvc/x86_64.props -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.ico -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.vsdir -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.vsz -------------------------------------------------------------------------------- /data/wix/Config.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/wix/Config.wxi -------------------------------------------------------------------------------- /data/wix/installer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/wix/installer.wxs -------------------------------------------------------------------------------- /data/wix/wixui_Mondo_GStreamer.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/wix/wixui_Mondo_GStreamer.wxi -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts.conf -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts/Ubuntu-R.ttf -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.h -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.m -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/main.m -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Empty Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Empty Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Master-Detail Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Master-Detail Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Page-Based Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Page-Based Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Single View Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Single View Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Tabbed Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Tabbed Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Utility Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/data/xcode/templates/ios/GStreamer Utility Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /docs/toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/docs/toolchains.md -------------------------------------------------------------------------------- /packages/base-crypto.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/base-crypto.package -------------------------------------------------------------------------------- /packages/base-system-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/base-system-1.0.package -------------------------------------------------------------------------------- /packages/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/custom.py -------------------------------------------------------------------------------- /packages/gstreamer-1.0-capture.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-capture.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs-gpl.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-codecs-gpl.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs-restricted.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-codecs-restricted.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-codecs.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-core.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-core.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-devtools.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-devtools.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-dvd.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-dvd.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-editing.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-editing.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-effects.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-effects.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-encoding.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-encoding.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-libav.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-libav.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-net-restricted.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-net-restricted.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-net.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-net.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-playback.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-playback.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-python.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-python.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-qt5.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-qt5.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-qt6.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-qt6.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-system.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-system.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-visualizers.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-visualizers.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-vs-templates.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0-vs-templates.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/background.png -------------------------------------------------------------------------------- /packages/gstreamer-1.0/background_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/background_dark.png -------------------------------------------------------------------------------- /packages/gstreamer-1.0/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/banner.bmp -------------------------------------------------------------------------------- /packages/gstreamer-1.0/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/dialog.bmp -------------------------------------------------------------------------------- /packages/gstreamer-1.0/gstreamer-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/gstreamer-1.0.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/icon.ico -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/license.rtf -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/license.txt -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license_unwrapped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/license_unwrapped.txt -------------------------------------------------------------------------------- /packages/gstreamer-1.0/post_install_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/gstreamer-1.0/post_install_ios -------------------------------------------------------------------------------- /packages/vsintegration-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/packages/vsintegration-1.0.package -------------------------------------------------------------------------------- /recipes-toolchain/binutils.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils.recipe -------------------------------------------------------------------------------- /recipes-toolchain/binutils/0002-check-for-unusual-file-harder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/0002-check-for-unusual-file-harder.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/0010-bfd-Increase-_bfd_coff_max_nscns-to-65279.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/0010-bfd-Increase-_bfd_coff_max_nscns-to-65279.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/0110-binutils-mingw-gnu-print.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/0110-binutils-mingw-gnu-print.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/0410-windres-handle-spaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/0410-windres-handle-spaces.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/0500-fix-weak-undef-symbols-after-image-base-change.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/0500-fix-weak-undef-symbols-after-image-base-change.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/2001-ld-option-to-move-default-bases-under-4GB.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/2001-ld-option-to-move-default-bases-under-4GB.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/2003-Restore-old-behaviour-of-windres-so-that-options-con.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/2003-Restore-old-behaviour-of-windres-so-that-options-con.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/3001-hack-libiberty-link-order.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/3001-hack-libiberty-link-order.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/libiberty-unlink-handle-windows-nul.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/libiberty-unlink-handle-windows-nul.patch -------------------------------------------------------------------------------- /recipes-toolchain/binutils/reproducible-import-libraries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/binutils/reproducible-import-libraries.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-bootstrap.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-bootstrap.recipe -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources.recipe -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0003-Windows-Follow-Posix-dir-exists-semantics-more-close.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0003-Windows-Follow-Posix-dir-exists-semantics-more-close.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0005-Windows-Don-t-ignore-native-system-header-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0005-Windows-Don-t-ignore-native-system-header-dir.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0007-Build-EXTRA_GNATTOOLS-for-Ada.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0007-Build-EXTRA_GNATTOOLS-for-Ada.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0008-Prettify-linking-no-undefined.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0008-Prettify-linking-no-undefined.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0011-Enable-shared-gnat-implib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0011-Enable-shared-gnat-implib.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0012-Handle-spaces-in-path-for-default-manifest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0012-Handle-spaces-in-path-for-default-manifest.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0014-gcc-9-branch-clone_function_name_1-Retain-any-stdcall-suffix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0014-gcc-9-branch-clone_function_name_1-Retain-any-stdcall-suffix.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0021-PR14940-Allow-a-PCH-to-be-mapped-to-a-different-addr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0021-PR14940-Allow-a-PCH-to-be-mapped-to-a-different-addr.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0140-gcc-Enable-diagnostic-colors-under-mintty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0140-gcc-Enable-diagnostic-colors-under-mintty.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/0200-add-m-no-align-vector-insn-option-for-i386.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/0200-add-m-no-align-vector-insn-option-for-i386.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/10000-gcc-cp-Make-lang.in-Fix-spurious-directory-separator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/10000-gcc-cp-Make-lang.in-Fix-spurious-directory-separator.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/2001-gcc-update-to-14.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/2001-gcc-update-to-14.1.0.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc-sources/9999-gcc-build-without-sysroot-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc-sources/9999-gcc-build-without-sysroot-hack.patch -------------------------------------------------------------------------------- /recipes-toolchain/gcc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gcc.recipe -------------------------------------------------------------------------------- /recipes-toolchain/gendef.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gendef.recipe -------------------------------------------------------------------------------- /recipes-toolchain/gmp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gmp.recipe -------------------------------------------------------------------------------- /recipes-toolchain/gmp/0001-gmp-Do-not-declare-functions-as-dllimport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gmp/0001-gmp-Do-not-declare-functions-as-dllimport.patch -------------------------------------------------------------------------------- /recipes-toolchain/gmp/0002-gmp-add-macro-to-let-applications-link-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/gmp/0002-gmp-add-macro-to-let-applications-link-static.patch -------------------------------------------------------------------------------- /recipes-toolchain/isl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/isl.recipe -------------------------------------------------------------------------------- /recipes-toolchain/isl/isl-0.14.1-no-undefined.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/isl/isl-0.14.1-no-undefined.patch -------------------------------------------------------------------------------- /recipes-toolchain/mingw-w64-crt.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mingw-w64-crt.recipe -------------------------------------------------------------------------------- /recipes-toolchain/mingw-w64-headers.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mingw-w64-headers.recipe -------------------------------------------------------------------------------- /recipes-toolchain/mingw-w64-sources.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mingw-w64-sources.recipe -------------------------------------------------------------------------------- /recipes-toolchain/mingw-w64/0001-Allow-to-use-bessel-and-complex-functions-without-un.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mingw-w64/0001-Allow-to-use-bessel-and-complex-functions-without-un.patch -------------------------------------------------------------------------------- /recipes-toolchain/mingw-w64/0002-Bug-1829971-Update-to-MinGW-trunk-r-firefox-build-sy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mingw-w64/0002-Bug-1829971-Update-to-MinGW-trunk-r-firefox-build-sy.patch -------------------------------------------------------------------------------- /recipes-toolchain/mpc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mpc.recipe -------------------------------------------------------------------------------- /recipes-toolchain/mpfr.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/mpfr.recipe -------------------------------------------------------------------------------- /recipes-toolchain/toolchain.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/toolchain.recipe -------------------------------------------------------------------------------- /recipes-toolchain/windows-default-manifest.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/windows-default-manifest.recipe -------------------------------------------------------------------------------- /recipes-toolchain/winpthreads.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/winpthreads.recipe -------------------------------------------------------------------------------- /recipes-toolchain/winpthreads/0001-Define-__-de-register_frame_info-in-fake-libgcc_s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/winpthreads/0001-Define-__-de-register_frame_info-in-fake-libgcc_s.patch -------------------------------------------------------------------------------- /recipes-toolchain/winstorecompat.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes-toolchain/winstorecompat.recipe -------------------------------------------------------------------------------- /recipes/a52dec.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/a52dec.recipe -------------------------------------------------------------------------------- /recipes/a52dec/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/a52dec/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/a52dec/0002-Skip-getopt-copy-when-provided-by-the-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/a52dec/0002-Skip-getopt-copy-when-provided-by-the-system.patch -------------------------------------------------------------------------------- /recipes/angle-uwp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/angle-uwp.recipe -------------------------------------------------------------------------------- /recipes/bash-completion.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/bash-completion.recipe -------------------------------------------------------------------------------- /recipes/build-tools/autoconf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/autoconf.recipe -------------------------------------------------------------------------------- /recipes/build-tools/automake.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/automake.recipe -------------------------------------------------------------------------------- /recipes/build-tools/bindgen-cli.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/bindgen-cli.recipe -------------------------------------------------------------------------------- /recipes/build-tools/bison.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/bison.recipe -------------------------------------------------------------------------------- /recipes/build-tools/cargo-c.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/cargo-c.recipe -------------------------------------------------------------------------------- /recipes/build-tools/cargo-c/0.10.17-Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/cargo-c/0.10.17-Cargo.lock -------------------------------------------------------------------------------- /recipes/build-tools/cmake.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/cmake.recipe -------------------------------------------------------------------------------- /recipes/build-tools/dragonfire.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/dragonfire.recipe -------------------------------------------------------------------------------- /recipes/build-tools/flex.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/flex.recipe -------------------------------------------------------------------------------- /recipes/build-tools/flex/0001-Add-generic-configure-patches-for-the-libtool-flat_n.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/flex/0001-Add-generic-configure-patches-for-the-libtool-flat_n.patch -------------------------------------------------------------------------------- /recipes/build-tools/gas-preprocessor.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gas-preprocessor.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gettext-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gettext-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/glib-tools.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/glib-tools.recipe -------------------------------------------------------------------------------- /recipes/build-tools/glib-tools/0001-meson-Disable-tests-fail-on-our-ancient-MinGW.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/glib-tools/0001-meson-Disable-tests-fail-on-our-ancient-MinGW.patch -------------------------------------------------------------------------------- /recipes/build-tools/gnu-sed.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gnu-sed.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gobject-introspection-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gobject-introspection-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gperf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gperf/0000-workaround-implicit-function-declaration-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf/0000-workaround-implicit-function-declaration-warnings.patch -------------------------------------------------------------------------------- /recipes/build-tools/gperf/0001-tests-allow-passing-of-input-as-filename-argument-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf/0001-tests-allow-passing-of-input-as-filename-argument-in.patch -------------------------------------------------------------------------------- /recipes/build-tools/gperf/0002-doc-fix-up-hashbang-lines-for-perl-scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf/0002-doc-fix-up-hashbang-lines-for-perl-scripts.patch -------------------------------------------------------------------------------- /recipes/build-tools/gperf/0003-doc-texi2html-add-outdir-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf/0003-doc-texi2html-add-outdir-option.patch -------------------------------------------------------------------------------- /recipes/build-tools/gperf/0004-Add-meson-build-system-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gperf/0004-Add-meson-build-system-support.patch -------------------------------------------------------------------------------- /recipes/build-tools/gtk-doc-lite.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/gtk-doc-lite.recipe -------------------------------------------------------------------------------- /recipes/build-tools/libclang.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/libclang.recipe -------------------------------------------------------------------------------- /recipes/build-tools/libtool.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/libtool.recipe -------------------------------------------------------------------------------- /recipes/build-tools/libtool/0001-Add-support-for-weak_framework-linking-on-Darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/libtool/0001-Add-support-for-weak_framework-linking-on-Darwin.patch -------------------------------------------------------------------------------- /recipes/build-tools/libtool/0001-support-gcc-toolchain-argument.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/libtool/0001-support-gcc-toolchain-argument.patch -------------------------------------------------------------------------------- /recipes/build-tools/m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/m4/0001-build-disable-documentation-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/m4/0001-build-disable-documentation-build.patch -------------------------------------------------------------------------------- /recipes/build-tools/meson.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/meson.recipe -------------------------------------------------------------------------------- /recipes/build-tools/mingw-regex/0001-Fix-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/mingw-regex/0001-Fix-compilation.patch -------------------------------------------------------------------------------- /recipes/build-tools/moltenvk-tools.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/moltenvk-tools.recipe -------------------------------------------------------------------------------- /recipes/build-tools/moltenvk-tools/ifdef-new-metal-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/moltenvk-tools/ifdef-new-metal-types.patch -------------------------------------------------------------------------------- /recipes/build-tools/nasm.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/nasm.recipe -------------------------------------------------------------------------------- /recipes/build-tools/ninja.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/ninja.recipe -------------------------------------------------------------------------------- /recipes/build-tools/ninja/0001-configure.py-Look-for-cl.exe-before-assuming-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/ninja/0001-configure.py-Look-for-cl.exe-before-assuming-MSVC.patch -------------------------------------------------------------------------------- /recipes/build-tools/vala-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/vala-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/wine-mono.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/wine-mono.recipe -------------------------------------------------------------------------------- /recipes/build-tools/winetricks.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/winetricks.recipe -------------------------------------------------------------------------------- /recipes/build-tools/wix.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/build-tools/wix.recipe -------------------------------------------------------------------------------- /recipes/bzip2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/bzip2.recipe -------------------------------------------------------------------------------- /recipes/bzip2/add-meson-build-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/bzip2/add-meson-build-files.patch -------------------------------------------------------------------------------- /recipes/ca-certificates.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ca-certificates.recipe -------------------------------------------------------------------------------- /recipes/ca-certificates/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ca-certificates/ca-certificates.crt -------------------------------------------------------------------------------- /recipes/cairo.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/cairo.recipe -------------------------------------------------------------------------------- /recipes/cdparanoia.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/cdparanoia.recipe -------------------------------------------------------------------------------- /recipes/cdparanoia/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/cdparanoia/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/curl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/curl.recipe -------------------------------------------------------------------------------- /recipes/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/custom.py -------------------------------------------------------------------------------- /recipes/dav1d.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/dav1d.recipe -------------------------------------------------------------------------------- /recipes/directx-headers.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/directx-headers.recipe -------------------------------------------------------------------------------- /recipes/directxmath.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/directxmath.recipe -------------------------------------------------------------------------------- /recipes/directxmath/0001-Add-DirectXMath-wrap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/directxmath/0001-Add-DirectXMath-wrap.patch -------------------------------------------------------------------------------- /recipes/docbook-xml.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/docbook-xml.recipe -------------------------------------------------------------------------------- /recipes/docbook-xsl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/docbook-xsl.recipe -------------------------------------------------------------------------------- /recipes/dump-versions.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/dump-versions.recipe -------------------------------------------------------------------------------- /recipes/expat.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/expat.recipe -------------------------------------------------------------------------------- /recipes/ffmpeg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ffmpeg.recipe -------------------------------------------------------------------------------- /recipes/ffmpeg/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ffmpeg/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/ffmpeg/fix-textrels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ffmpeg/fix-textrels.patch -------------------------------------------------------------------------------- /recipes/flac.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/flac.recipe -------------------------------------------------------------------------------- /recipes/flac/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/flac/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/fmt.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/fmt.recipe -------------------------------------------------------------------------------- /recipes/fontconfig.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/fontconfig.recipe -------------------------------------------------------------------------------- /recipes/fontconfig/0001-fcobjs-Remove-duplicate-function-prototypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/fontconfig/0001-fcobjs-Remove-duplicate-function-prototypes.patch -------------------------------------------------------------------------------- /recipes/fontconfig/0001-meson-Always-write-utf-8-files-with-LF-newlines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/fontconfig/0001-meson-Always-write-utf-8-files-with-LF-newlines.patch -------------------------------------------------------------------------------- /recipes/freetype.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/freetype.recipe -------------------------------------------------------------------------------- /recipes/frei0r-plugins.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/frei0r-plugins.recipe -------------------------------------------------------------------------------- /recipes/frei0r-plugins/0001-cmake-Fix-c99-standard-flag-wiping-out-cross-compila.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/frei0r-plugins/0001-cmake-Fix-c99-standard-flag-wiping-out-cross-compila.patch -------------------------------------------------------------------------------- /recipes/frei0r-plugins/0002-Fix-configuring-with-CMake-version-4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/frei0r-plugins/0002-Fix-configuring-with-CMake-version-4.patch -------------------------------------------------------------------------------- /recipes/fribidi.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/fribidi.recipe -------------------------------------------------------------------------------- /recipes/gdk-pixbuf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gdk-pixbuf.recipe -------------------------------------------------------------------------------- /recipes/glib-networking.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib-networking.recipe -------------------------------------------------------------------------------- /recipes/glib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib.recipe -------------------------------------------------------------------------------- /recipes/glib/0001-Add-support-for-loading-GIO-modules-from-the-distro-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0001-Add-support-for-loading-GIO-modules-from-the-distro-.patch -------------------------------------------------------------------------------- /recipes/glib/0002-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0002-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch -------------------------------------------------------------------------------- /recipes/glib/0003-giomodule-do-not-try-to-load-modules-from-gio-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0003-giomodule-do-not-try-to-load-modules-from-gio-module.patch -------------------------------------------------------------------------------- /recipes/glib/0004-Unhide-_g_io_modules_ensure_extension_points_registe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0004-Unhide-_g_io_modules_ensure_extension_points_registe.patch -------------------------------------------------------------------------------- /recipes/glib/0005-gtypes.h-workaround-for-g_uint64_checked_mul-issue-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0005-gtypes.h-workaround-for-g_uint64_checked_mul-issue-w.patch -------------------------------------------------------------------------------- /recipes/glib/0006-gio-fix-duplicate-g_trace_-symbols-in-static-libs-wi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/0006-gio-fix-duplicate-g_trace_-symbols-in-static-libs-wi.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0001-gio-Disable-generic-DNS-record-lookup-on-UWP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0001-gio-Disable-generic-DNS-record-lookup-on-UWP.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0002-glib-Never-use-MessageBox-on-UWP-apps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0002-glib-Never-use-MessageBox-on-UWP-apps.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0003-gpoll-UWP-does-not-need-to-poll-a-msg_fd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0003-gpoll-UWP-does-not-need-to-poll-a-msg_fd.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0004-win_iconv-Use-LoadPackagedLibrary-when-building-UWP-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0004-win_iconv-Use-LoadPackagedLibrary-when-building-UWP-.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0005-goption-Do-not-call-GetCommandlineW-on-UWP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0005-goption-Do-not-call-GetCommandlineW-on-UWP.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0006-gmodule-Fix-some-more-WinRT-incompatibilities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0006-gmodule-Fix-some-more-WinRT-incompatibilities.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0007-gutils-Can-t-fetch-the-username-on-UWP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0007-gutils-Can-t-fetch-the-username-on-UWP.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0008-gutils-GetWindowsDirectory-is-not-available-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0008-gutils-GetWindowsDirectory-is-not-available-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0009-gutils-GetModuleHandle-is-not-available-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0009-gutils-GetModuleHandle-is-not-available-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0010-glocalfile-File-user-info-is-not-supported-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0010-glocalfile-File-user-info-is-not-supported-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0011-gwin32-Stub-out-all-version-checking-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0011-gwin32-Stub-out-all-version-checking-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0012-gsocket-if_nametoindex-is-not-available-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0012-gsocket-if_nametoindex-is-not-available-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0013-gio-ginetaddress-Fix-build-on-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0013-gio-ginetaddress-Fix-build-on-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0014-WIP-gspawn-Do-not-allow-spawning-or-making-pipes-on-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0014-WIP-gspawn-Do-not-allow-spawning-or-making-pipes-on-.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0015-WIP-glib-giowin32-Disallow-invalid-usage-of-GIOChann.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0015-WIP-glib-giowin32-Disallow-invalid-usage-of-GIOChann.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0016-WIP-glocalfile-Trash-as-a-concept-does-not-exist-on-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0016-WIP-glocalfile-Trash-as-a-concept-does-not-exist-on-.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0017-TODO-gdate-gstdio-Abort-when-trying-to-use-unsupport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0017-TODO-gdate-gstdio-Abort-when-trying-to-use-unsupport.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0018-gio-Disable-win32-API-and-modules-when-unavailable-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0018-gio-Disable-win32-API-and-modules-when-unavailable-o.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0019-TODO-gdbus-Completely-disable-when-building-for-WinR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0019-TODO-gdbus-Completely-disable-when-building-for-WinR.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0020-WIP-glib-Implement-get_special_folder-for-UWP-apps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0020-WIP-glib-Implement-get_special_folder-for-UWP-apps.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0021-WIP-gtimezone-Partially-port-to-WinRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0021-WIP-gtimezone-Partially-port-to-WinRT.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0022-TODO-gutils-Hard-code-windows-version-detection-in-g.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0022-TODO-gutils-Hard-code-windows-version-detection-in-g.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0023-TODO-gio-gcontenttype-Needs-porting-to-WinRT-model.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0023-TODO-gio-gcontenttype-Needs-porting-to-WinRT-model.patch -------------------------------------------------------------------------------- /recipes/glib/uwp/0024-meson-Add-workaround-for-Visual-Studio-2019-ARM-buil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/glib/uwp/0024-meson-Add-workaround-for-Visual-Studio-2019-ARM-buil.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection.recipe -------------------------------------------------------------------------------- /recipes/gobject-introspection/0001-Revert-build-Do-not-compile-uninstalled-GIR-into-typ.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0001-Revert-build-Do-not-compile-uninstalled-GIR-into-typ.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0002-Revert-build-Do-not-install-generated-GLib-GIR-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0002-Revert-build-Do-not-install-generated-GLib-GIR-files.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0003-girepository-Load-typelibs-from-a-relocatable-prefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0003-girepository-Load-typelibs-from-a-relocatable-prefix.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0004-build-Fix-b_vscrt-value-use-without-converting-it-to.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0004-build-Fix-b_vscrt-value-use-without-converting-it-to.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0005-windows-Do-not-use-msvc-syntax-for-pkg-config-parsin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0005-windows-Do-not-use-msvc-syntax-for-pkg-config-parsin.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0006-tests-Fix-path-parsing-for-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0006-tests-Fix-path-parsing-for-Windows.patch -------------------------------------------------------------------------------- /recipes/gobject-introspection/0007-g-ir-tools-Support-reading-rspfiles-for-arguments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gobject-introspection/0007-g-ir-tools-Support-reading-rspfiles-for-arguments.patch -------------------------------------------------------------------------------- /recipes/graphene.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/graphene.recipe -------------------------------------------------------------------------------- /recipes/gst-android-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-android-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-devtools-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-devtools-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-editing-services-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-editing-services-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-libav-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-libav-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-bad-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-plugins-bad-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-base-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-plugins-base-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-good-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-plugins-good-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-rs.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-plugins-rs.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-ugly-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-plugins-ugly-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-python-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-python-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-rtsp-server-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-rtsp-server-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-shell.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gst-shell.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-1.0-osx-framework.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gstreamer-1.0-osx-framework.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gstreamer-1.0.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-ios-templates.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/gstreamer-ios-templates.recipe -------------------------------------------------------------------------------- /recipes/harfbuzz.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/harfbuzz.recipe -------------------------------------------------------------------------------- /recipes/json-glib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/json-glib.recipe -------------------------------------------------------------------------------- /recipes/ladspa.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/ladspa.recipe -------------------------------------------------------------------------------- /recipes/lame.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lame.recipe -------------------------------------------------------------------------------- /recipes/lame/0001-lame-add-meson-build-based-on-wrapdb-wrap-lame_3.100.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lame/0001-lame-add-meson-build-based-on-wrapdb-wrap-lame_3.100.patch -------------------------------------------------------------------------------- /recipes/lame/0002-lame.def-remove-decoder-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lame/0002-lame.def-remove-decoder-symbols.patch -------------------------------------------------------------------------------- /recipes/lcevcdec.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lcevcdec.recipe -------------------------------------------------------------------------------- /recipes/lcevcdec/0001-win32-Make-it-build-on-32-bit-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lcevcdec/0001-win32-Make-it-build-on-32-bit-Windows.patch -------------------------------------------------------------------------------- /recipes/lcevcdec/0002-cmake-Don-t-modify-CMAKE_MODULE_PATH-before-running-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lcevcdec/0002-cmake-Don-t-modify-CMAKE_MODULE_PATH-before-running-.patch -------------------------------------------------------------------------------- /recipes/lcevcdec/0003-pc-file-Put-C-lib-in-private-deps-when-doing-static-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lcevcdec/0003-pc-file-Put-C-lib-in-private-deps-when-doing-static-.patch -------------------------------------------------------------------------------- /recipes/lcevcdec/0004-cmake-Use-libc-on-Apple-platforms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/lcevcdec/0004-cmake-Use-libc-on-Apple-platforms.patch -------------------------------------------------------------------------------- /recipes/libass.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libass.recipe -------------------------------------------------------------------------------- /recipes/libass/0001-android-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libass/0001-android-support.patch -------------------------------------------------------------------------------- /recipes/libass/0001-meson-fix-build-on-iOS-with-host_system-set-to-iOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libass/0001-meson-fix-build-on-iOS-with-host_system-set-to-iOS.patch -------------------------------------------------------------------------------- /recipes/libdca.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdca.recipe -------------------------------------------------------------------------------- /recipes/libdca/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdca/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/libdca/0002-Add-shared-library-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdca/0002-Add-shared-library-support.patch -------------------------------------------------------------------------------- /recipes/libdca/0003-Allow-building-with-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdca/0003-Allow-building-with-MSVC.patch -------------------------------------------------------------------------------- /recipes/libdv.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv.recipe -------------------------------------------------------------------------------- /recipes/libdv/0001-Add-Meson-build-system-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0001-Add-Meson-build-system-definitions.patch -------------------------------------------------------------------------------- /recipes/libdv/0001-quant-Fix-buffer-overflow-detected-by-ASAN.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0001-quant-Fix-buffer-overflow-detected-by-ASAN.patch -------------------------------------------------------------------------------- /recipes/libdv/0002-meson-work-around-brokenness-in-public-dv_types.h-he.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0002-meson-work-around-brokenness-in-public-dv_types.h-he.patch -------------------------------------------------------------------------------- /recipes/libdv/0004-meson-Fix-build-on-macOS-and-iOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0004-meson-Fix-build-on-macOS-and-iOS.patch -------------------------------------------------------------------------------- /recipes/libdv/0005-libdv-encode.c-fix-undefined-behavior-compiler-warni.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0005-libdv-encode.c-fix-undefined-behavior-compiler-warni.patch -------------------------------------------------------------------------------- /recipes/libdv/0006-libdv-fallback-to-localtime_s-or-localtime-if-localt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0006-libdv-fallback-to-localtime_s-or-localtime-if-localt.patch -------------------------------------------------------------------------------- /recipes/libdv/0007-libdv-use-win32-thread-primitives-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0007-libdv-use-win32-thread-primitives-on-Windows.patch -------------------------------------------------------------------------------- /recipes/libdv/0008-libdv-fix-build-if-__attribute__-destructor-is-not-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0008-libdv-fix-build-if-__attribute__-destructor-is-not-a.patch -------------------------------------------------------------------------------- /recipes/libdv/0009-meson-fix-symbol-export-on-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0009-meson-fix-symbol-export-on-MSVC.patch -------------------------------------------------------------------------------- /recipes/libdv/0010-meson-pick-up-endianness-from-config.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0010-meson-pick-up-endianness-from-config.h.patch -------------------------------------------------------------------------------- /recipes/libdv/0013-libdv-don-t-spam-stderr-if-there-s-no-audio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0013-libdv-don-t-spam-stderr-if-there-s-no-audio.patch -------------------------------------------------------------------------------- /recipes/libdv/0014-libdv-Fix-compilation-on-older-Android-versions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdv/0014-libdv-Fix-compilation-on-older-Android-versions.patch -------------------------------------------------------------------------------- /recipes/libdvdnav.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdvdnav.recipe -------------------------------------------------------------------------------- /recipes/libdvdnav/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdvdnav/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/libdvdread.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdvdread.recipe -------------------------------------------------------------------------------- /recipes/libdvdread/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdvdread/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/libdvdread/0002-Fix-MSVC-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libdvdread/0002-Fix-MSVC-compatibility.patch -------------------------------------------------------------------------------- /recipes/libffi.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libffi.recipe -------------------------------------------------------------------------------- /recipes/libiconv.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libiconv.recipe -------------------------------------------------------------------------------- /recipes/libiconv/0001-Use-correct-autotools-versions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libiconv/0001-Use-correct-autotools-versions.patch -------------------------------------------------------------------------------- /recipes/libiconv/0002-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libiconv/0002-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch -------------------------------------------------------------------------------- /recipes/libjpeg-turbo.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libjpeg-turbo.recipe -------------------------------------------------------------------------------- /recipes/libltc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libltc.recipe -------------------------------------------------------------------------------- /recipes/libltc/0001-Add-minimal-meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libltc/0001-Add-minimal-meson-build-system.patch -------------------------------------------------------------------------------- /recipes/libltc/0001-Fix-Windows-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libltc/0001-Fix-Windows-build.patch -------------------------------------------------------------------------------- /recipes/libnice.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libnice.recipe -------------------------------------------------------------------------------- /recipes/libogg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libogg.recipe -------------------------------------------------------------------------------- /recipes/libogg/0001-Add-Meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libogg/0001-Add-Meson-build-system.patch -------------------------------------------------------------------------------- /recipes/libogg/0002-meson-fix-exports-and-library-name-with-MingW.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libogg/0002-meson-fix-exports-and-library-name-with-MingW.patch -------------------------------------------------------------------------------- /recipes/libpng.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libpng.recipe -------------------------------------------------------------------------------- /recipes/libpng/0002-cmake-Force-enable-pkg-config-modules-everywhere.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libpng/0002-cmake-Force-enable-pkg-config-modules-everywhere.patch -------------------------------------------------------------------------------- /recipes/libpng/0003-cmake-Fix-naming-convention-breaking-rustc-library-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libpng/0003-cmake-Fix-naming-convention-breaking-rustc-library-l.patch -------------------------------------------------------------------------------- /recipes/libproxy.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libproxy.recipe -------------------------------------------------------------------------------- /recipes/libpsl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libpsl.recipe -------------------------------------------------------------------------------- /recipes/librsvg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librsvg.recipe -------------------------------------------------------------------------------- /recipes/librsvg/0001-makedef-rework-flags-to-work-with-Ubuntu-and-Fedora.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librsvg/0001-makedef-rework-flags-to-work-with-Ubuntu-and-Fedora.patch -------------------------------------------------------------------------------- /recipes/librsvg/0002-meson-Consider-native-dependencies-also-on-Linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librsvg/0002-meson-Consider-native-dependencies-also-on-Linux.patch -------------------------------------------------------------------------------- /recipes/librsvg/0003-cargo_wrapper-py-Allow-setting-the-optimization-leve.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librsvg/0003-cargo_wrapper-py-Allow-setting-the-optimization-leve.patch -------------------------------------------------------------------------------- /recipes/librsvg/0004-meson-Do-not-forcibly-version-the-shared-library-nam.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librsvg/0004-meson-Do-not-forcibly-version-the-shared-library-nam.patch -------------------------------------------------------------------------------- /recipes/librtmp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp.recipe -------------------------------------------------------------------------------- /recipes/librtmp/0001-librtmp-add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp/0001-librtmp-add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/librtmp/0003-Port-to-openssl-1.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp/0003-Port-to-openssl-1.1.1.patch -------------------------------------------------------------------------------- /recipes/librtmp/0004-Port-to-newer-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp/0004-Port-to-newer-MSVC.patch -------------------------------------------------------------------------------- /recipes/librtmp/0005-Fix-debug-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp/0005-Fix-debug-build.patch -------------------------------------------------------------------------------- /recipes/librtmp/0006-Add-license-for-vcpkg-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/librtmp/0006-Add-license-for-vcpkg-changes.patch -------------------------------------------------------------------------------- /recipes/libsoup.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libsoup.recipe -------------------------------------------------------------------------------- /recipes/libsrtp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libsrtp.recipe -------------------------------------------------------------------------------- /recipes/libsrtp/0001-Fix-building-with-gcc-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libsrtp/0001-Fix-building-with-gcc-10.patch -------------------------------------------------------------------------------- /recipes/libsrtp/0001-meson-Fix-check-for-size_t-on-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libsrtp/0001-meson-Fix-check-for-size_t-on-MSVC.patch -------------------------------------------------------------------------------- /recipes/libsrtp/libsrtp-meson-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libsrtp/libsrtp-meson-port.patch -------------------------------------------------------------------------------- /recipes/libtheora.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libtheora.recipe -------------------------------------------------------------------------------- /recipes/libtheora/0001-Add-meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libtheora/0001-Add-meson-build-system.patch -------------------------------------------------------------------------------- /recipes/libtheora/0001-meson-fix-build-with-assembly-enabled-on-32-bit-x86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libtheora/0001-meson-fix-build-with-assembly-enabled-on-32-bit-x86.patch -------------------------------------------------------------------------------- /recipes/libtheora/0001-theora-fix-library-so-versioning-and-add-darwin_vers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libtheora/0001-theora-fix-library-so-versioning-and-add-darwin_vers.patch -------------------------------------------------------------------------------- /recipes/libunwind.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libunwind.recipe -------------------------------------------------------------------------------- /recipes/libunwind/0001-Fix-compilation-with--fno-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libunwind/0001-Fix-compilation-with--fno-common.patch -------------------------------------------------------------------------------- /recipes/libvorbis.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libvorbis.recipe -------------------------------------------------------------------------------- /recipes/libvorbis/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libvorbis/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/libvpx.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libvpx.recipe -------------------------------------------------------------------------------- /recipes/libvpx/0003-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libvpx/0003-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/libxml2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libxml2.recipe -------------------------------------------------------------------------------- /recipes/libxml2/0001-meson-Make-tests-optional.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/libxml2/0001-meson-Make-tests-optional.patch -------------------------------------------------------------------------------- /recipes/mingw-runtime.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/mingw-runtime.recipe -------------------------------------------------------------------------------- /recipes/moltenvk.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/moltenvk.recipe -------------------------------------------------------------------------------- /recipes/mpg123.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/mpg123.recipe -------------------------------------------------------------------------------- /recipes/mpg123/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/mpg123/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/nghttp2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/nghttp2.recipe -------------------------------------------------------------------------------- /recipes/nghttp2/0001-Expose-NGHTTP2_STATICLIB-on-the-pkg-config-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/nghttp2/0001-Expose-NGHTTP2_STATICLIB-on-the-pkg-config-file.patch -------------------------------------------------------------------------------- /recipes/opencore-amr.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/opencore-amr.recipe -------------------------------------------------------------------------------- /recipes/opencore-amr/0001-Add-Meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/opencore-amr/0001-Add-Meson-build-system.patch -------------------------------------------------------------------------------- /recipes/openh264.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openh264.recipe -------------------------------------------------------------------------------- /recipes/openh264/0001-build-Add-missing-flags-for-x86-asm-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openh264/0001-build-Add-missing-flags-for-x86-asm-support.patch -------------------------------------------------------------------------------- /recipes/openjpeg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openjpeg.recipe -------------------------------------------------------------------------------- /recipes/openssl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openssl.recipe -------------------------------------------------------------------------------- /recipes/openssl/0001-Load-ca-certificate.crt-from-PREFIX-etc-ssl-on-macOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openssl/0001-Load-ca-certificate.crt-from-PREFIX-etc-ssl-on-macOS.patch -------------------------------------------------------------------------------- /recipes/openssl/0002-windows-makefile.tmpl-Generate-and-install-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/openssl/0002-windows-makefile.tmpl-Generate-and-install-pkgconfig.patch -------------------------------------------------------------------------------- /recipes/opus.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/opus.recipe -------------------------------------------------------------------------------- /recipes/opus/0001-celt-Force-stack-alignment-for-functions-using-__m12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/opus/0001-celt-Force-stack-alignment-for-functions-using-__m12.patch -------------------------------------------------------------------------------- /recipes/opus/0001-meson-fix-get_version.py-to-try-the-package_version-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/opus/0001-meson-fix-get_version.py-to-try-the-package_version-.patch -------------------------------------------------------------------------------- /recipes/orc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/orc.recipe -------------------------------------------------------------------------------- /recipes/pango.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pango.recipe -------------------------------------------------------------------------------- /recipes/pcre2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pcre2.recipe -------------------------------------------------------------------------------- /recipes/pcre2/0001-Add-meson-build-files-based-on-wrap-pcre2_10.42-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pcre2/0001-Add-meson-build-files-based-on-wrap-pcre2_10.42-1.patch -------------------------------------------------------------------------------- /recipes/pcre2/0002-meson-add-build-options-for-8-16-32-bit-libs-and-dis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pcre2/0002-meson-add-build-options-for-8-16-32-bit-libs-and-dis.patch -------------------------------------------------------------------------------- /recipes/pcre2/0003-meson-define-SUPPORT_PCRE2_16-etc-as-well-if-those-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pcre2/0003-meson-define-SUPPORT_PCRE2_16-etc-as-well-if-those-a.patch -------------------------------------------------------------------------------- /recipes/pcre2/0004-meson-fix-library-versioning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pcre2/0004-meson-fix-library-versioning.patch -------------------------------------------------------------------------------- /recipes/pixman.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pixman.recipe -------------------------------------------------------------------------------- /recipes/pkg-config.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pkg-config.recipe -------------------------------------------------------------------------------- /recipes/pkg-config/0001-Add-Meson-build-optionally-with-internal-glib-subpro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pkg-config/0001-Add-Meson-build-optionally-with-internal-glib-subpro.patch -------------------------------------------------------------------------------- /recipes/pkg-config/0001-Automatically-detect-prefix-on-macOS-too.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pkg-config/0001-Automatically-detect-prefix-on-macOS-too.patch -------------------------------------------------------------------------------- /recipes/pkg-config/0001-Fix-glib-build-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pkg-config/0001-Fix-glib-build-on-Windows.patch -------------------------------------------------------------------------------- /recipes/proxy-libintl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/proxy-libintl.recipe -------------------------------------------------------------------------------- /recipes/proxy-libintl/0001-Rename-symbols-for-compatibility-with-gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/proxy-libintl/0001-Rename-symbols-for-compatibility-with-gettext.patch -------------------------------------------------------------------------------- /recipes/pycairo.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pycairo.recipe -------------------------------------------------------------------------------- /recipes/pygobject.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pygobject.recipe -------------------------------------------------------------------------------- /recipes/pygobject/0001-gi-Call-os.add_dll_directory-on-Windows-when-possibl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pygobject/0001-gi-Call-os.add_dll_directory-on-Windows-when-possibl.patch -------------------------------------------------------------------------------- /recipes/pygobject/0002-Fix-syntax-error-for-missing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/pygobject/0002-Fix-syntax-error-for-missing.patch -------------------------------------------------------------------------------- /recipes/qrencode.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/qrencode.recipe -------------------------------------------------------------------------------- /recipes/sbc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc.recipe -------------------------------------------------------------------------------- /recipes/sbc/0001-sbc-Use-stdint.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc/0001-sbc-Use-stdint.h.patch -------------------------------------------------------------------------------- /recipes/sbc/0002-Don-t-use-NEON-with-aarch64-on-Clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc/0002-Don-t-use-NEON-with-aarch64-on-Clang.patch -------------------------------------------------------------------------------- /recipes/sbc/0003-sbc.h-Define-ssize_t-when-building-with-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc/0003-sbc.h-Define-ssize_t-when-building-with-MSVC.patch -------------------------------------------------------------------------------- /recipes/sbc/0004-Add-support-for-Meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc/0004-Add-support-for-Meson-build-system.patch -------------------------------------------------------------------------------- /recipes/sbc/0005-Fix-build-with-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sbc/0005-Fix-build-with-MSVC.patch -------------------------------------------------------------------------------- /recipes/soundtouch.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/soundtouch.recipe -------------------------------------------------------------------------------- /recipes/soundtouch/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/soundtouch/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/spandsp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp.recipe -------------------------------------------------------------------------------- /recipes/spandsp/0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp/0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch -------------------------------------------------------------------------------- /recipes/spandsp/0002-Delete-redundant-function-prototype-in-header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp/0002-Delete-redundant-function-prototype-in-header.patch -------------------------------------------------------------------------------- /recipes/spandsp/0003-FS-6010-resolve.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp/0003-FS-6010-resolve.patch -------------------------------------------------------------------------------- /recipes/spandsp/0004-Fix-build-for-windows-using-mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp/0004-Fix-build-for-windows-using-mingw.patch -------------------------------------------------------------------------------- /recipes/spandsp/0005-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/spandsp/0005-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/speex.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/speex.recipe -------------------------------------------------------------------------------- /recipes/speex/0001-Add-Meson-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/speex/0001-Add-Meson-build-system.patch -------------------------------------------------------------------------------- /recipes/sqlite3.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sqlite3.recipe -------------------------------------------------------------------------------- /recipes/sqlite3/0001-Add-meson-build-file-from-wrapdb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/sqlite3/0001-Add-meson-build-file-from-wrapdb.patch -------------------------------------------------------------------------------- /recipes/srt.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/srt.recipe -------------------------------------------------------------------------------- /recipes/svt-av1.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/svt-av1.recipe -------------------------------------------------------------------------------- /recipes/svt-jpeg-xs.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/svt-jpeg-xs.recipe -------------------------------------------------------------------------------- /recipes/taglib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/taglib.recipe -------------------------------------------------------------------------------- /recipes/taglib/0001-Re-add-support-for-std-atomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/taglib/0001-Re-add-support-for-std-atomic.patch -------------------------------------------------------------------------------- /recipes/taglib/0002-Build-a-static-and-non-static-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/taglib/0002-Build-a-static-and-non-static-version.patch -------------------------------------------------------------------------------- /recipes/taglib/0003-Require-CMake-version-3.5-1148.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/taglib/0003-Require-CMake-version-3.5-1148.patch -------------------------------------------------------------------------------- /recipes/tiff.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tiff.recipe -------------------------------------------------------------------------------- /recipes/tiff/0001-Add-meson-build-based-on-wrapdb-version-4.5.0-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tiff/0001-Add-meson-build-based-on-wrapdb-version-4.5.0-3.patch -------------------------------------------------------------------------------- /recipes/tiff/0002-tiff-add-gl-option-to-disable-OpenGL-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tiff/0002-tiff-add-gl-option-to-disable-OpenGL-support.patch -------------------------------------------------------------------------------- /recipes/tiff/0003-tiff-add-tests-option-to-disable-building-of-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tiff/0003-tiff-add-tests-option-to-disable-building-of-tests.patch -------------------------------------------------------------------------------- /recipes/tiff/0004-tiff-fix-library-name-and-lib-versioning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tiff/0004-tiff-fix-library-name-and-lib-versioning.patch -------------------------------------------------------------------------------- /recipes/tinyalsa.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tinyalsa.recipe -------------------------------------------------------------------------------- /recipes/tinyalsa/0001-meson-add-attributes-h-and-plugin-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/tinyalsa/0001-meson-add-attributes-h-and-plugin-h.patch -------------------------------------------------------------------------------- /recipes/vo-aacenc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vo-aacenc.recipe -------------------------------------------------------------------------------- /recipes/vo-aacenc/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vo-aacenc/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/vsintegration-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vsintegration-1.0.recipe -------------------------------------------------------------------------------- /recipes/vulkan-android.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vulkan-android.recipe -------------------------------------------------------------------------------- /recipes/vvdec.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vvdec.recipe -------------------------------------------------------------------------------- /recipes/vvdec/0001-Do-not-set-_WIN32_WINNT-in-CMake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vvdec/0001-Do-not-set-_WIN32_WINNT-in-CMake.patch -------------------------------------------------------------------------------- /recipes/vvdec/0002-Remove-include-stdio.h-from-sei.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/vvdec/0002-Remove-include-stdio.h-from-sei.h.patch -------------------------------------------------------------------------------- /recipes/wavpack.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/wavpack.recipe -------------------------------------------------------------------------------- /recipes/wavpack/0001-cmake-Don-t-name-MSVC-DLL-wavpackdll.dll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/wavpack/0001-cmake-Don-t-name-MSVC-DLL-wavpackdll.dll.patch -------------------------------------------------------------------------------- /recipes/wavpack/0002-cmake-Set-SOVERSION-to-match-Autotools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/wavpack/0002-cmake-Set-SOVERSION-to-match-Autotools.patch -------------------------------------------------------------------------------- /recipes/wavpack/0003-cmake-Skip-setting-ASM-up-with-MSVC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/wavpack/0003-cmake-Skip-setting-ASM-up-with-MSVC.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/webrtc-audio-processing.recipe -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0001-Fix-build-with-GCC-15.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/webrtc-audio-processing/0001-Fix-build-with-GCC-15.1.patch -------------------------------------------------------------------------------- /recipes/webview2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/webview2.recipe -------------------------------------------------------------------------------- /recipes/winpthreads-runtime.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/winpthreads-runtime.recipe -------------------------------------------------------------------------------- /recipes/x264.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x264.recipe -------------------------------------------------------------------------------- /recipes/x264/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x264/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/x264/0001-meson-Do-not-use-native-true-for-find_program.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x264/0001-meson-Do-not-use-native-true-for-find_program.patch -------------------------------------------------------------------------------- /recipes/x264/fix-textrels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x264/fix-textrels.patch -------------------------------------------------------------------------------- /recipes/x265-10bit.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265-10bit.recipe -------------------------------------------------------------------------------- /recipes/x265-12bit.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265-12bit.recipe -------------------------------------------------------------------------------- /recipes/x265-src.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265-src.recipe -------------------------------------------------------------------------------- /recipes/x265.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265.recipe -------------------------------------------------------------------------------- /recipes/x265/0001-add-android-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0001-add-android-support.patch -------------------------------------------------------------------------------- /recipes/x265/0002-install-shared-library-without-tag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0002-install-shared-library-without-tag.patch -------------------------------------------------------------------------------- /recipes/x265/0003-cmake-Use-GNUInstallDirs-to-remove-uncertainty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0003-cmake-Use-GNUInstallDirs-to-remove-uncertainty.patch -------------------------------------------------------------------------------- /recipes/x265/0004-cmake-Use-the-Meson-convention-for-exporting-static-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0004-cmake-Use-the-Meson-convention-for-exporting-static-.patch -------------------------------------------------------------------------------- /recipes/x265/0005-cmake-Disable-version-detection-using-git.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0005-cmake-Disable-version-detection-using-git.patch -------------------------------------------------------------------------------- /recipes/x265/0006-Fix-CMake-build-error-with-latest-CMake-4.0-release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0006-Fix-CMake-build-error-with-latest-CMake-4.0-release.patch -------------------------------------------------------------------------------- /recipes/x265/0007-Fix-for-CMake-Build-Errors-in-MacOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/x265/0007-Fix-for-CMake-Build-Errors-in-MacOS.patch -------------------------------------------------------------------------------- /recipes/zbar.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zbar.recipe -------------------------------------------------------------------------------- /recipes/zbar/0001-Add-Meson-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zbar/0001-Add-Meson-build.patch -------------------------------------------------------------------------------- /recipes/zlib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zlib.recipe -------------------------------------------------------------------------------- /recipes/zlib/0001-Add-a-meson-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zlib/0001-Add-a-meson-port.patch -------------------------------------------------------------------------------- /recipes/zlib/0001-meson-add-the-DSTDC-define-to-include-standard-C-hea.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zlib/0001-meson-add-the-DSTDC-define-to-include-standard-C-hea.patch -------------------------------------------------------------------------------- /recipes/zlib/0001-zconf.h-Check-that-HAVE_UNISTD_H-is-not-0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/recipes/zlib/0001-zconf.h-Check-that-HAVE_UNISTD_H-is-not-0.patch -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/pkgconfig/glib-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/glib-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gmodule-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/gmodule-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gmodule-no-export-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/gmodule-no-export-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gobject-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/gobject-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gstreamer-0.10.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/gstreamer-0.10.pc -------------------------------------------------------------------------------- /test/pkgconfig/gthread-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/gthread-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/libxml-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/pkgconfig/libxml-2.0.pc -------------------------------------------------------------------------------- /test/projects/autotools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/autotools/Makefile.am -------------------------------------------------------------------------------- /test/projects/autotools/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/autotools/autogen.sh -------------------------------------------------------------------------------- /test/projects/autotools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/autotools/configure.ac -------------------------------------------------------------------------------- /test/projects/autotools/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/autotools/data/Makefile.am -------------------------------------------------------------------------------- /test/projects/autotools/data/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/projects/autotools/src/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/projects/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /test/projects/cmake/data/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/projects/meson/data/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/projects/meson/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/projects/meson/meson.build -------------------------------------------------------------------------------- /test/recipes/autotools-cerbero.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/recipes/autotools-cerbero.recipe -------------------------------------------------------------------------------- /test/recipes/cmake-cerbero.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/recipes/cmake-cerbero.recipe -------------------------------------------------------------------------------- /test/recipes/meson-cerbero.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/recipes/meson-cerbero.recipe -------------------------------------------------------------------------------- /test/test_build_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_build_common.py -------------------------------------------------------------------------------- /test/test_cerbero_build_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_build.py -------------------------------------------------------------------------------- /test/test_cerbero_build_cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_cookbook.py -------------------------------------------------------------------------------- /test/test_cerbero_build_filesprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_filesprovider.py -------------------------------------------------------------------------------- /test/test_cerbero_build_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_recipe.py -------------------------------------------------------------------------------- /test/test_cerbero_build_recipe_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_recipe_default.py -------------------------------------------------------------------------------- /test/test_cerbero_build_source_localdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_build_source_localdir.py -------------------------------------------------------------------------------- /test/test_cerbero_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_config.py -------------------------------------------------------------------------------- /test/test_cerbero_config_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_config_variants.py -------------------------------------------------------------------------------- /test/test_cerbero_ide_pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_ide_pkgconfig.py -------------------------------------------------------------------------------- /test/test_cerbero_ide_xcode_xcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_ide_xcode_xcconfig.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_disttarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_disttarball.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_linux.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_osx_info_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_osx_info_plist.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_package.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_packagemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_packagemaker.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_packagesstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_packagesstore.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_wix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_packages_wix.py -------------------------------------------------------------------------------- /test/test_cerbero_tools_osxuniversalgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_cerbero_tools_osxuniversalgenerator.py -------------------------------------------------------------------------------- /test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_common.py -------------------------------------------------------------------------------- /test/test_packages_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/test/test_packages_common.py -------------------------------------------------------------------------------- /tools/bootstrap-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/bootstrap-debian.sh -------------------------------------------------------------------------------- /tools/bootstrap-redhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/bootstrap-redhat.sh -------------------------------------------------------------------------------- /tools/bootstrap-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/bootstrap-windows.ps1 -------------------------------------------------------------------------------- /tools/build-toolchains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/build-toolchains.sh -------------------------------------------------------------------------------- /tools/cerbero.cbc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/cerbero.cbc.template -------------------------------------------------------------------------------- /tools/certdata2pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/certdata2pem.py -------------------------------------------------------------------------------- /tools/chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/chroot.sh -------------------------------------------------------------------------------- /tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/common.ps1 -------------------------------------------------------------------------------- /tools/show-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GStreamer/cerbero/HEAD/tools/show-coverage.py --------------------------------------------------------------------------------