mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
aiff: remove unused includes and fix flags order in Makefile.am
Also remove GST_PLUGINS_BASE_LIBS from LIBADD since we don't need to link against any of the -base libs (we just use a define from the gstaudio headers).
This commit is contained in:
parent
8a1b22836f
commit
8246f755cf
3 changed files with 2 additions and 5 deletions
|
@ -2,11 +2,10 @@ plugin_LTLIBRARIES = libgstaiff.la
|
|||
|
||||
libgstaiff_la_SOURCES = aiffparse.c
|
||||
libgstaiff_la_CFLAGS = \
|
||||
$(GST_BASE_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) \
|
||||
$(GST_CFLAGS)
|
||||
libgstaiff_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) \
|
||||
$(GST_BASE_LIBS) \
|
||||
$(LIBM)
|
||||
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "aiffparse.h"
|
||||
#include "gst/audio/audio.h"
|
||||
#include <gst/audio/audio.h>
|
||||
#include <gst/gst-i18n-plugin.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (aiffparse_debug);
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include "gst/riff/riff-ids.h"
|
||||
#include "gst/riff/riff-read.h"
|
||||
#include <gst/base/gstadapter.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
|
Loading…
Reference in a new issue