diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libspudec/Makefile.am | 4 | ||||
-rw-r--r-- | src/libspudec/spudec.c (renamed from src/libspudec/spu.c) | 2 | ||||
-rw-r--r-- | src/libspudec/spudec.h (renamed from src/libspudec/spu.h) | 0 | ||||
-rw-r--r-- | src/libspudec/xine_spu_decoder.c | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/src/libspudec/Makefile.am b/src/libspudec/Makefile.am index 62de3774d..337428652 100644 --- a/src/libspudec/Makefile.am +++ b/src/libspudec/Makefile.am @@ -4,7 +4,7 @@ AM_CFLAGS = $(DEFAULT_OCFLAGS) $(VISIBILITY_FLAG) AM_CPPFLAGS = -I$(top_srcdir)/src/input/libdvdnav AM_LDFLAGS = $(xineplug_ldflags) -noinst_HEADERS = spu.h +noinst_HEADERS = spudec.h xineplug_LTLIBRARIES = xineplug_decode_spu.la @@ -16,6 +16,6 @@ external_dvdnav_libs = internal_dvdnav_sources = nav_read.c endif -xineplug_decode_spu_la_SOURCES = $(internal_dvdnav_sources) spu.c xine_spu_decoder.c +xineplug_decode_spu_la_SOURCES = $(internal_dvdnav_sources) spudec.c xine_spu_decoder.c xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(external_dvdnav_libs) $(PTHREAD_LIBS) xineplug_decode_spu_la_CFLAGS = $(AM_CFLAGS) $(DVDNAV_CFLAGS) diff --git a/src/libspudec/spu.c b/src/libspudec/spudec.c index c836dbf58..13136a53f 100644 --- a/src/libspudec/spu.c +++ b/src/libspudec/spudec.c @@ -49,7 +49,6 @@ #include <xine/xine_internal.h> #include <xine/xineutils.h> -#include "spu.h" #include <xine/buffer.h> #include "xine-engine/bswap.h" #ifdef HAVE_DVDNAV @@ -60,6 +59,7 @@ # include "nav_print.h" #endif +#include "spudec.h" /* #define LOG_DEBUG 1 diff --git a/src/libspudec/spu.h b/src/libspudec/spudec.h index 1e7d80596..1e7d80596 100644 --- a/src/libspudec/spu.h +++ b/src/libspudec/spudec.h diff --git a/src/libspudec/xine_spu_decoder.c b/src/libspudec/xine_spu_decoder.c index 7f0269dfb..e36b39fc8 100644 --- a/src/libspudec/xine_spu_decoder.c +++ b/src/libspudec/xine_spu_decoder.c @@ -33,7 +33,6 @@ #include <xine/buffer.h> #include "xine-engine/bswap.h" #include <xine/xineutils.h> -#include "spu.h" #ifdef HAVE_DVDNAV # include <dvdnav/nav_read.h> # include <dvdnav/nav_types.h> @@ -42,6 +41,8 @@ # include "nav_types.h" #endif +#include "spudec.h" + /* #define LOG_DEBUG 1 #define LOG_BUTTON 1 |