mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
configure.ac: only export gst* symbols
Original commit message from CVS: * configure.ac: only export gst* symbols * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain): change g_warning to debugging message, that wasn't a programming error
This commit is contained in:
parent
0fc9489042
commit
c9305d90a3
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2004-03-24 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
only export gst* symbols
|
||||||
|
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
|
||||||
|
change g_warning to debugging message, that wasn't a programming
|
||||||
|
error
|
||||||
|
|
||||||
2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
|
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
|
||||||
|
|
|
@ -73,7 +73,7 @@ dnl ============================= gst plug-ins ================================
|
||||||
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
||||||
AC_SUBST(plugindir)
|
AC_SUBST(plugindir)
|
||||||
|
|
||||||
GST_PLUGIN_LDFLAGS='-module -avoid-version'
|
GST_PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex [_]*{gst_,Gst,GST_}.*'
|
||||||
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
dnl Determine CPU
|
dnl Determine CPU
|
||||||
|
|
|
@ -408,7 +408,7 @@ gst_ffmpegdec_chain (GstPad *pad,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
g_warning ("ffdec_%s: decoding error",
|
GST_ERROR_OBJECT (ffmpegdec, "ffdec_%s: decoding error",
|
||||||
oclass->in_plugin->name);
|
oclass->in_plugin->name);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue