mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Index caches dir too, add caches to Makefile.am
Original commit message from CVS: Index caches dir too, add caches to Makefile.am
This commit is contained in:
parent
a02dcd9779
commit
91df0963a7
2 changed files with 4 additions and 2 deletions
|
@ -43,8 +43,8 @@ endif
|
||||||
|
|
||||||
EXTRA_libgstreamer_la_SOURCES = gstcpuid_i386.s gstmarshal.list gstxml.c gsttypefind.c gstparse.c gstautoplug.c gsttrace.c
|
EXTRA_libgstreamer_la_SOURCES = gstcpuid_i386.s gstmarshal.list gstxml.c gsttypefind.c gstparse.c gstautoplug.c gsttrace.c
|
||||||
|
|
||||||
SUBDIRS = parse registries . $(GST_AUTOPLUG_DIRS) elements schedulers types
|
SUBDIRS = parse registries . $(GST_AUTOPLUG_DIRS) elements schedulers types caches
|
||||||
DIST_SUBDIRS = autoplug elements parse registries schedulers types
|
DIST_SUBDIRS = autoplug elements parse registries schedulers types caches
|
||||||
|
|
||||||
libcothreads_la_SOURCES = cothreads.c
|
libcothreads_la_SOURCES = cothreads.c
|
||||||
libgstreamer_la_SOURCES = \
|
libgstreamer_la_SOURCES = \
|
||||||
|
|
|
@ -341,6 +341,7 @@ init_pre (void)
|
||||||
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/types");
|
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/types");
|
||||||
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/autoplug");
|
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/autoplug");
|
||||||
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/schedulers");
|
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/schedulers");
|
||||||
|
gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/caches");
|
||||||
#else
|
#else
|
||||||
/* add the main (installed) library path */
|
/* add the main (installed) library path */
|
||||||
gst_registry_add_path (_global_registry, PLUGINS_DIR);
|
gst_registry_add_path (_global_registry, PLUGINS_DIR);
|
||||||
|
@ -447,6 +448,7 @@ init_post (void)
|
||||||
#ifndef GST_DISABLE_AUTOPLUG
|
#ifndef GST_DISABLE_AUTOPLUG
|
||||||
gst_autoplug_factory_get_type ();
|
gst_autoplug_factory_get_type ();
|
||||||
#endif
|
#endif
|
||||||
|
gst_cache_factory_get_type ();
|
||||||
|
|
||||||
|
|
||||||
plugin_path = g_getenv ("GST_PLUGIN_PATH");
|
plugin_path = g_getenv ("GST_PLUGIN_PATH");
|
||||||
|
|
Loading…
Reference in a new issue