mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-14 12:04:11 +00:00
gst/audioconvert/: Link against audio libs.
Original commit message from CVS: * gst/audioconvert/Makefile.am: * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain), (gst_audio_convert_caps_remove_format_info), (gst_audio_convert_setcaps), (gst_audio_convert_fixate), (gst_audio_convert_channels): Link against audio libs. Fix audio convert plugin.
This commit is contained in:
parent
a4f491e438
commit
468d6d4326
3 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2005-04-20 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/audioconvert/Makefile.am:
|
||||
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
|
||||
(gst_audio_convert_caps_remove_format_info),
|
||||
(gst_audio_convert_setcaps), (gst_audio_convert_fixate),
|
||||
(gst_audio_convert_channels):
|
||||
Link against audio libs.
|
||||
Fix audio convert plugin.
|
||||
|
||||
2005-04-20 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
|
||||
|
|
|
@ -8,7 +8,7 @@ libgstaudioconvert_la_SOURCES = \
|
|||
|
||||
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstaudioconvert_la_LIBADD =
|
||||
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(top_builddir)/gst-libs/gst/audio/libgstaudio.la
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstchannelmix.h \
|
||||
|
|
|
@ -447,7 +447,7 @@ gst_audio_convert_setcaps (GstPad * pad, GstCaps * caps)
|
|||
*other_prefered = targetcaps;
|
||||
if (!gst_audio_convert_parse_caps (targetcaps, &other_ac_caps))
|
||||
return FALSE;
|
||||
GST_RPAD_CAPS (otherpad) = targetcaps;
|
||||
gst_caps_replace (&GST_RPAD_CAPS (otherpad), targetcaps);
|
||||
}
|
||||
}
|
||||
if (this->sink == pad) {
|
||||
|
|
Loading…
Reference in a new issue