New upstream version 22.0.3+dfsg1
This commit is contained in:
parent
665f64a933
commit
cdc9a9fc87
334 changed files with 14525 additions and 2639 deletions
7
plugins/vlc-video/data/locale/gd-GB.ini
Normal file
7
plugins/vlc-video/data/locale/gd-GB.ini
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Playlist="Liosta-chluiche"
|
||||
PlayPause="Cluich/Cuir ’na stad"
|
||||
Restart="Ath-thòisich"
|
||||
Stop="Cuir stad air"
|
||||
PlaylistNext="Air adhart"
|
||||
PlaylistPrev="Air ais"
|
||||
|
||||
15
plugins/vlc-video/data/locale/ka-GE.ini
Normal file
15
plugins/vlc-video/data/locale/ka-GE.ini
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
VLCSource="VLC ვიდეო-წყარო"
|
||||
Playlist="დასაკრავი სია"
|
||||
LoopPlaylist="დასაკრავი სიის გამეორება დაუსრულებლად"
|
||||
Shuffle="დასაკრავი სიის არევა"
|
||||
PlaybackBehavior="მოქმედება ხილვადობის ცვლილებისას"
|
||||
PlaybackBehavior.StopRestart="შეწყვეტა თუ უხილავია, თავიდან გაშვება თუ ხილულია"
|
||||
PlaybackBehavior.PauseUnpause="შეჩერება თუ უხილავია, გაშვება თუ ხილულია"
|
||||
PlaybackBehavior.AlwaysPlay="ყოველთვის გაშვება, ხილვადობის მიუხედავად"
|
||||
NetworkCaching="ქსელის ბუფერი (მწ)"
|
||||
PlayPause="გაშვება/შეჩერება"
|
||||
Restart="თავიდან გაშვება"
|
||||
Stop="შეწყვეტა"
|
||||
PlaylistNext="შემდეგი"
|
||||
PlaylistPrev="წინა"
|
||||
|
||||
|
|
@ -57,6 +57,10 @@ LIBVLC_MEDIA_LIST_PLAYER_NEXT libvlc_media_list_player_next_;
|
|||
LIBVLC_MEDIA_LIST_PLAYER_PREVIOUS libvlc_media_list_player_previous_;
|
||||
|
||||
void *libvlc_module = NULL;
|
||||
#ifdef __APPLE__
|
||||
void *libvlc_core_module = NULL;
|
||||
#endif
|
||||
|
||||
libvlc_instance_t *libvlc = NULL;
|
||||
uint64_t time_start = 0;
|
||||
|
||||
|
|
@ -154,8 +158,14 @@ static bool load_libvlc_module(void)
|
|||
|
||||
#ifdef __APPLE__
|
||||
#define LIBVLC_DIR "/Applications/VLC.app/Contents/MacOS/"
|
||||
/* According to otoolo -L, this is what libvlc.dylib wants. */
|
||||
#define LIBVLC_CORE_FILE LIBVLC_DIR "lib/libvlccore.dylib"
|
||||
#define LIBVLC_FILE LIBVLC_DIR "lib/libvlc.5.dylib"
|
||||
setenv("VLC_PLUGIN_PATH", LIBVLC_DIR "plugins", false);
|
||||
libvlc_core_module = os_dlopen(LIBVLC_CORE_FILE);
|
||||
|
||||
if (!libvlc_core_module)
|
||||
return false;
|
||||
#else
|
||||
#define LIBVLC_FILE "libvlc.so.5"
|
||||
#endif
|
||||
|
|
@ -204,6 +214,10 @@ void obs_module_unload(void)
|
|||
{
|
||||
if (libvlc)
|
||||
libvlc_release_(libvlc);
|
||||
#ifdef __APPLE__
|
||||
if (libvlc_core_module)
|
||||
os_dlclose(libvlc_core_module);
|
||||
#endif
|
||||
if (libvlc_module)
|
||||
os_dlclose(libvlc_module);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue