summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)AuthorFilesLines
2024-05-21WiX: enable sharding for parallel compressionL. E. Segovia1-1/+1
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1474>
2023-06-04android: remove all traces of gnustlMatthew Waters1-6/+3
The relevant c++ standard library is now automaticaly added by the compiler/linker and our gross hack involving gnustl.pc/la is not longer needed. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1191>
2022-07-07msvc: Remove msvcrt.propsSeungha Yang3-37/+0
Almost everything in the Visual Studio property file is wrong or unnecessary. * WIN32_LEAN_AND_MEAN: Should not be defined globally, but per source file defined when needed. * Don't force ancient target * Global CRT attributes set by us is not a desired configuration, but application should consider it by itself * DO NOT FORCE MSVCRT: We moved to UCRT a couple of years ago. So it will cause linking problem when application calls CRT functions Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/888>
2022-07-07msvc: Remove release.propsSeungha Yang1-21/+0
It's not referenced at all and unnecessary. Application can configure its own properties for release build. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/888>
2022-07-07msvc: Remove Windows Driver Kit SDK dependencySeungha Yang3-16/+0
Just unnecessary Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/888>
2022-07-07msvc: Remove unnecessary global definesSeungha Yang3-13/+0
* WINVER/_WIN32_WINNT/_WIN64_WINNT: This must be set by user. Don't force ancient target * WIN32/WIN64/_WINDOWS/HAVE_WIN32: Why? * _USRDLL: Ancient MFC related define. Should be done by user Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/888>
2022-07-07msvc: Remove outdated stuffSeungha Yang11-555/+0
We use files under "vs-1.0" directory Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/888>
2022-06-21android: fix build with android gradle plugin 7.2Matthew Waters1-1/+1
> [CXX1415] .../gstreamer/subprojects/gst-examples/playback/player/android/app/build/.cxx/Debug/5f6v5o23/arm64-v8a/android_gradle_build.json debug|arm64-v8a : gstreamer_android-debug-gst-build-arm64-v8a.abi 'gst-build-arm64-v8a' is invalid. Valid values are 'armeabi-v7a, arm64-v8a, x86, x86_64' Move arch-specific directories into their own subdirectory. It seems like somewhere in gradle is assuming the last path component is the abi of the built files when that may not actually be the case. Workaround this. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1284 Fixes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/issues/103 Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/886>
2022-04-01android: Use GStreamer.java installed by GStreamer coreXavier Claessens2-110/+5
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/843>
2022-04-01android: Remove code that has been moved to GStreamer coreXavier Claessens1-598/+4
Reuse the same mechanism than gstreamer-full: Expose gst_init_static_plugins() symbol, called by gst_init() to register static plugins, and drop all JNI code that got moved to libgstreamer. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/588>
2022-03-04Add support for MSYS2Andoni Morales Alastruey1-0/+11
This is the initial commit to start supporting MSYS2 (https://www.msys2.org/) in favor of the old MSYS/MinGW. MSYS2 brings several important improvements: * Project with active development * In sync with latest Cygwin * Up-to-date packages * Package manager Here is a more detailed writeup of MSYS2 from Git's migration https://github.com/git/git/commit/df5218b4c30b2fa1ba0d1ada4166ad85bc83be26 The old msys will still be supported to ease the migration but a deprecation warning will be shown to migrate to MSYS2 Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/743>
2020-11-04android: Implement gst_init_static_plugins()Xavier Claessens1-3/+2
This is the same symbol defined in libgstreamer-full and called by gst_init(). Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/629>
2020-07-12Add a uwp-universal target to build all uwp arches at onceNirbheek Chauhan1-0/+0
This is identical to how the cross-android-universal target works. Supported UWP arches are: x86, x86_64, arm64. This covers 100% of Windows 10 machines: https://docs.microsoft.com/en-us/windows/msix/package/device-architecture Advantages are the same as Android: 1. Most people will build apps that target multiple (or all) archs 2. Easier to build and ship all arches at once 3. Easier to download two tarballs rather than six Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/551>
2020-06-12README: Recommend enabling developer mode.Nirbheek Chauhan1-0/+0
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/509>
2020-04-03ndk-build: keep linking to GSTREAMER_EXTRA_LIBS explicitlyMart Raudsepp1-1/+1
When removing hogweed linkage for gio workaround, the $GSTREAMER_EXTRA_LIBS entry got removed from GSTREAMER_ANDROID_LIBS as well. Add it back, so it works as intended in commit d4d75a04065 and needed linkages like EGL work again via GSTREAMER_EXTRA_LIBS `-l` entries (instead of having to workaround via TARGET_LDFLAGS). Fixes: e3892148653bd96a1d1f8f370809762dc8903795
2020-03-02data: Move from gnutls to openssl for android/iosNirbheek Chauhan3-7/+5
2020-02-20Fixed plugins' java code not being copiedFanchao L1-2/+2
2019-08-12android: Adjust gstreamer-1.0.mk for NDK r20Jan Schmidt1-7/+13
Fix NDK build with newest NDK. Cerbero itself has a separate problem trying to use r20, but this enables using the GStreamer SDK with NDK 20.
2019-02-25README.md: Document which Visual Studio workload is neededNirbheek Chauhan1-0/+0
2019-02-08README: Convert to markdown, add more infoNirbheek Chauhan5-0/+0
Add screenshots for Windows installation steps and add new sections about cross-compilation and enabling qt5.
2019-02-07ios-templates: update for GTlsBackend changesMatthew Waters2-8/+18
https://gitlab.freedesktop.org/gstreamer/cerbero/issues/64
2019-02-04Extend licensing scheme, install & package licensesNirbheek Chauhan8-0/+3205
Licensing was incorrect, incomplete, and at best, ambiguous. Some recipes were picking one license when there were many, others were listing all the licenses and you had to pick one. On the other hand, many projects are licensed under multiple BSD-like licenses, and you must adhere to the terms of all of them, and there was no way to know how from the binary packages. Now we have an extended syntax for declaring the licensing properties of a recipe. The licenses array can now also contain dictionaries with License enums as keys and relative paths to files in the source tree as values. All files specified in this way will be copied into `share/licenses/$recipe_name`. Common license texts which are copied verbatim by projects without adding any specific author/copyright information have been copied into `data/licenses/` and will be copied into `share/licenses/$recipe_name` when a license is specified without a corresponding source tree file. `share/licenses/$recipe_name/README-LICENSE-INFO.txt` contains a disclaimer that this is not legal advice, and uses (AND) and (OR) operators to declare the combinations of licenses you can pick when adhering to the license requirements of a project. `share/licenses/$recipe_name` is, of course, now also copied into the devel binary packages. I have made a best-effort to check and update the licenses in each recipe, but I have probably missed things. Reviews and updates are welcome. I also did not bother updating the toolchain recipe licenses too carefully since we do not ship them with our binary packages; except mingw-runtime.recipe (which does have an updated license).
2018-12-17ndk-build: support a multiple architecture buildGeunsik Lim1-4/+0
Fixed issue https://gitlab.freedesktop.org/gstreamer/gst-docs/issues/27. This commit is to support that developers can specify a multiple values with 'APP_ABI' of Application.mk file. The recent Adroid NDK tool provides the multiple architecture build as well as a single architecture build. * Reference: * https://developer.android.com/ndk/guides/abis?hl=en#gc * How to evaluate with this commit ```bash $ cd {your_work_dir}/gst-docs/examples/tutorials/android/android-tutorial-1/jni $ cat ./Application.mk | grep APP_ABI APP_ABI = armeabi armeabi-v7a arm64-v8a x86 x86_64 $ ndk-build (with android-ndk-r16b) $ tree ../libs/ ../libs/ |-- arm64-v8a | |-- libc++_shared.so | |-- libgstreamer_android.so | `-- libtutorial-1.so |-- armeabi (Note: It will be deprected since android-ndk-r18b.) | |-- libc++_shared.so | |-- libgstreamer_android.so | `-- libtutorial-1.so |-- armeabi-v7a | |-- libc++_shared.so | |-- libgstreamer_android.so | `-- libtutorial-1.so |-- x86 | |-- libc++_shared.so | |-- libgstreamer_android.so | `-- libtutorial-1.so `-- x86_64 |-- libc++_shared.so |-- libgstreamer_android.so `-- libtutorial-1.so ``` * Self assessment: * Local test with ndk-build: It's okay. * Local test with gst-docs (./android-tutorial-{1-5}/)
2018-12-13ndk-build: add path to libc++_shared to the linker command lineMathieu Duponchelle1-1/+4
2018-11-30ndk-build: don't advertise symbols from non-explicitly linked librariesMatthew Waters2-9/+32
Instead pass -Wl,exclude-libs,$lib for each library *NOT* mentioned explicitly on the command line so those symbols aren't placed in exported symbol tables. Fixes numerous linking errors in dependant libraries that are extremely likely to be unused directly. This does however mean that any symbols and libraries that are used need to be present in the command line explicitly using either GSTREAMER_EXTRA_DEPS (for pkg-config) or -l$lib arguments. Fixes https://gitlab.freedesktop.org/gstreamer/cerbero/issues/52 Fixes https://gitlab.freedesktop.org/gstreamer/gst-libav/issues/37
2018-11-12ndk-build: fix app compile/link commands for ndk r18Matthew Waters1-3/+2
Use the GLOBAL_* arguments as well
2018-11-12ndk-build: Use the value of the old_library field for the static libraryMatthew Waters1-1/+9
Fixes cases where there is no static library to link to (e.g. libc++_shared.so) or the possibility that the static library is different from the .la file name.
2018-11-10ndk-build: GStreamer: Fix: Streams may be not closed in copyFile methodH1Gdev1-12/+33
Streams always will be closed. https://gitlab.freedesktop.org/gstreamer/cerbero/issues/75
2018-10-16android/ndk-build: update for glib tls API additionsMatthew Waters2-3/+23
The previously used GStreamer custom custom patch to load certificate files from the CA_CERTIFICATES environment variable is no longer effective with glib-networking 2.58 and instead API was added to the upcoming glib 2.60 release (backported to glib 2.58 in GStreamer's cerbero) to set the default TLS database. This patch makes use of the new API to set the default TLS database and behaves similarly as the previous CA_CERTIFICATES environment variable. https://bugzilla.gnome.org/show_bug.cgi?id=796702
2018-08-28ndk-build: fix gio module loading for meson changesMatthew Waters2-6/+5
gio modules are not in a specific (static/) subdirectory anymore. Also change how we reference the modules as using -L will preferentially locate the shared library over the static library. Add the full path to the static library module instead.
2018-02-08Revert "gst-android: Remove uneeded static plugin path"Matthew Waters1-1/+6
This reverts commit d9914b60e86af229aa78eedf2ab605b30ac0fc96. The static plugins are still in $prefix/lib/gstreamer-1.0 so a -L path is still needed to reference them to be able to find them. https://bugzilla.gnome.org/show_bug.cgi?id=791854
2018-01-26gst-android: Use $(hide) instead of @Nicolas Dufresne1-19/+19
This makes V=1 works, helping a lot when we need to debug our makefiles. https://bugzilla.gnome.org/show_bug.cgi?id=791854
2018-01-26gst-android: Move comment before the ruleNicolas Dufresne1-3/+2
The @# break when running on Windows https://bugzilla.gnome.org/show_bug.cgi?id=791854
2018-01-26gst-android: Add an .exe suffix to gold on windowsNicolas Dufresne1-1/+3
https://bugzilla.gnome.org/show_bug.cgi?id=791854
2018-01-26gst-android: Remove uneeded static plugin pathNicolas Dufresne1-6/+1
We have the same plugin API for static and non-static now. https://bugzilla.gnome.org/show_bug.cgi?id=791854
2017-11-29android/ndk-build: don't use line continuation with shell pipesMatthew Waters1-8/+4
gradle/android-studio do not seem to like it at all. https://bugzilla.gnome.org/show_bug.cgi?id=773401
2017-11-29android/ndk-build: update sysroot parameters for ndk-r16Matthew Waters2-5/+16
This allows building a precompiled GStreamer application against android-ndk-r16. Headers for all platforms have been moved to a single location. See https://android.googlesource.com/platform/ndk/+/master/docs/UnifiedHeaders.md
2017-10-24xcode template: fix gst_ios_init declarationNicola Murino1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=789385
2017-05-09Remove duplicated static gstreamer buildNicolas Dufresne1-2/+1
The plugin interface now supports building once for both static and dynamic modules. https://bugzilla.gnome.org/show_bug.cgi?id=779344
2017-03-08Fix the build according to the plugin renameNicolas Dufresne1-12/+0
Plugins have been rename so their library name now matches their plugin name.
2017-01-05android: Put assets in src/main/assets by defaultArun Raghavan1-6/+10
This seems to be the correct place to put it, and newer versions of Android Studio don't seem to pick up just assets/. Also adding a way to customise this for apps that wish to do so (via the GSTREAMER_ASSETS_DIR variable). https://bugzilla.gnome.org/show_bug.cgi?id=774728
2017-01-04ndk-build: Provide API for requesting the Java VMSebastian Dröge1-2/+14
This is used by the androidmedia plugin and potentially others.
2016-10-24xcode data: Fix typo in ca-certificates.crtOlivier Crête1-1/+1
2016-08-12android: Fix Android build on WindowsAndy Devar1-13/+15
Windows a) requires quotes around commands if you | them and b) remembers empty quotes in Makefiles and confuses the shell with them. https://bugzilla.gnome.org/show_bug.cgi?id=768326
2016-08-10android: Fix soname with custom GStreamer .so filenamesSebastian Dröge1-1/+1
2016-07-06android: Remove \n from the source generatorSebastian Dröge1-4/+4
On OSX they apparently end up as literal '\n' in the code instead of newlines. https://bugzilla.gnome.org/show_bug.cgi?id=768456
2016-07-04android: Instead of cat | sed, use sed directly on the fileSebastian Dröge1-4/+2
Windows has no cat so it doesn't work. We lose some symmetry in the code in exchange for Windows portability. https://bugzilla.gnome.org/show_bug.cgi?id=768326
2016-07-01android: Silence the sed linesOlivier Crête1-2/+2
2016-06-30android: Fix sed substitutions to actually consider the configurationSebastian Dröge1-3/+3
https://bugzilla.gnome.org/show_bug.cgi?id=767096
2016-06-07android: Don't use 'sed -i' to be compatible with BSD sedSebastian Dröge1-18/+26
Based on a patch by Milos Pesic <msg4misa@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=767096