mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 05:22:30 +00:00
ext/faad/gstfaad.c: Fix compiler warning by making the function signature match what everyone is passing in...
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst): Fix compiler warning by making the function signature match what everyone is passing in... * tests/icles/Makefile.am: Fix the build on Solaris by removing GNU ld specific flags that look unnecessary.
This commit is contained in:
parent
19407ba0a1
commit
b3595da577
3 changed files with 11 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2008-01-31 Jan Schmidt <Jan.Schmidt@sun.com>
|
||||
|
||||
* ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst):
|
||||
Fix compiler warning by making the function signature match what
|
||||
everyone is passing in...
|
||||
|
||||
* tests/icles/Makefile.am:
|
||||
Fix the build on Solaris by removing GNU ld specific flags that
|
||||
look unnecessary.
|
||||
|
||||
2008-01-31 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/metadata/Makefile.am:
|
||||
|
|
|
@ -441,7 +441,7 @@ gst_faad_chanpos_from_gst (GstAudioChannelPosition * pos, guint num)
|
|||
|
||||
static GstAudioChannelPosition *
|
||||
gst_faad_chanpos_to_gst (GstFaad * faad, guchar * fpos, guint num,
|
||||
GstAudioChannelPosition * channel_map_failed)
|
||||
gboolean * channel_map_failed)
|
||||
{
|
||||
GstAudioChannelPosition *pos = g_new (GstAudioChannelPosition, num);
|
||||
guint n;
|
||||
|
|
|
@ -24,7 +24,6 @@ metadata_editor_CFLAGS = \
|
|||
metadata_editor_LDADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-0.10 $(GST_LIBS) \
|
||||
$(GLADE_LIBS)
|
||||
metadata_editor_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-export-dynamic
|
||||
else
|
||||
GST_METADATA_TESTS =
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue