mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 13:36:39 +00:00
backports and fixes
Original commit message from CVS: backports and fixes
This commit is contained in:
parent
fc2647319f
commit
f12f450410
4 changed files with 26 additions and 4 deletions
|
@ -14,16 +14,20 @@ bin_PROGRAMS = gst-launch \
|
||||||
$(GST_REGISTRY_SRC) \
|
$(GST_REGISTRY_SRC) \
|
||||||
gst-inspect \
|
gst-inspect \
|
||||||
$(GST_LOADSAVE_SRC) \
|
$(GST_LOADSAVE_SRC) \
|
||||||
|
gst-md5sum \
|
||||||
gst-complete
|
gst-complete
|
||||||
bin_SCRIPTS = gst-feedback
|
bin_SCRIPTS = gst-feedback
|
||||||
|
|
||||||
man_MANS = gst-launch.1 gst-register.1 gst-inspect.1 \
|
man_MANS = gst-launch.1 gst-md5sum.1 gst-register.1 gst-inspect.1 \
|
||||||
gst-complete.1 gst-compprep.1 gst-xmllaunch.1 \
|
gst-complete.1 gst-compprep.1 gst-xmllaunch.1 \
|
||||||
gst-feedback.1
|
gst-feedback.1
|
||||||
|
|
||||||
gst_launch_LDADD = $(GST_LIBS) #-lefence
|
gst_launch_LDADD = $(GST_LIBS) #-lefence
|
||||||
gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
||||||
|
|
||||||
|
gst_md5sum_LDADD = $(GST_LIBS) #-lefence
|
||||||
|
gst_md5sum_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
||||||
|
|
||||||
if !GST_DISABLE_REGISTRY
|
if !GST_DISABLE_REGISTRY
|
||||||
gst_register_LDADD = $(GST_LIBS)
|
gst_register_LDADD = $(GST_LIBS)
|
||||||
gst_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
gst_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
||||||
|
|
|
@ -65,3 +65,20 @@ for dirs in /usr/include /usr/local/include /home; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo "+ GSTREAMER PLUG-INS INFORMATION"
|
||||||
|
command_output "gst-inspect volume"
|
||||||
|
|
||||||
|
echo "++ looking for gstreamer volume plugin in common locations"
|
||||||
|
for dirs in /usr/lib /usr/local/lib /home; do
|
||||||
|
if test -d $dirs; then
|
||||||
|
find $dirs -name libgstvolume* | grep so
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo "++ looking for gstreamer headers in common locations"
|
||||||
|
for dirs in /usr/include /usr/local/include /home; do
|
||||||
|
if test -d $dirs; then
|
||||||
|
find $dirs -name audio.h
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -117,6 +117,6 @@ Add directories separated with ':' to the plugin search path
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.BR gst\-complete (1),
|
.BR gst\-complete (1),
|
||||||
.BR gst\-register (1),
|
.BR gst\-register (1),
|
||||||
.BR gst\-inspect (1),
|
.BR gst\-inspect (1)
|
||||||
.SH "AUTHOR"
|
.SH "AUTHOR"
|
||||||
The GStreamer team at http://gstreamer.net/
|
The GStreamer team at http://gstreamer.net/
|
||||||
|
|
|
@ -138,6 +138,7 @@ main(int argc, char *argv[])
|
||||||
pipeline = (GstElement*) gst_parse_launchv ((const gchar**)argvn, &error);
|
pipeline = (GstElement*) gst_parse_launchv ((const gchar**)argvn, &error);
|
||||||
}
|
}
|
||||||
g_free (argvn);
|
g_free (argvn);
|
||||||
|
g_free (argvn);
|
||||||
|
|
||||||
if (!pipeline) {
|
if (!pipeline) {
|
||||||
if (error)
|
if (error)
|
||||||
|
|
Loading…
Reference in a new issue