diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-06-22 17:45:50 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-07-01 13:25:05 +0800 |
commit | a52993fbd72883a0064f74bd6f9197e40ed9ed7a (patch) | |
tree | d11ff49019b5de1ce04043835b64e18333353d11 /indra/media_plugins/CMakeLists.txt | |
parent | 9b4cbc5a9cbbe9ecbd8366f079a5a44885750095 (diff) |
Revert streaming to use LibVLC on FBSD & GNU/Linux
I couldn't make it to work with gstreamer even though everything was in
place. It was already working anyway with LibVLC, and, Windows & macOS
use it too, so it's actually the more cross-platform solution.
Diffstat (limited to 'indra/media_plugins/CMakeLists.txt')
-rw-r--r-- | indra/media_plugins/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/media_plugins/CMakeLists.txt b/indra/media_plugins/CMakeLists.txt index 9d52b4314f..78bdba8f18 100644 --- a/indra/media_plugins/CMakeLists.txt +++ b/indra/media_plugins/CMakeLists.txt @@ -4,13 +4,13 @@ add_subdirectory(base) if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD") add_subdirectory(example) - add_subdirectory(gstreamer10) + add_subdirectory(libvlc) endif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD") if (LINUX) add_subdirectory(cef) add_subdirectory(example) - add_subdirectory(gstreamer10) + add_subdirectory(libvlc) endif (LINUX) if (DARWIN) |