mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +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>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
|
||||
|
|
|
@ -73,7 +73,7 @@ dnl ============================= gst plug-ins ================================
|
|||
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
||||
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)
|
||||
|
||||
dnl Determine CPU
|
||||
|
|
|
@ -408,7 +408,7 @@ gst_ffmpegdec_chain (GstPad *pad,
|
|||
}
|
||||
|
||||
if (len < 0) {
|
||||
g_warning ("ffdec_%s: decoding error",
|
||||
GST_ERROR_OBJECT (ffmpegdec, "ffdec_%s: decoding error",
|
||||
oclass->in_plugin->name);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue