mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
add replaygain_synthesis
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
SUBDIRS = include .
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include @ID3LIB_CFLAGS@
|
||||
|
||||
noinst_LIBRARIES = libplugin_common.a
|
||||
@@ -10,10 +12,12 @@ noinst_HEADERS = \
|
||||
all.h \
|
||||
canonical_tag.h \
|
||||
charset.h \
|
||||
defs.h \
|
||||
dither.h \
|
||||
id3v1.h \
|
||||
id3v2.h \
|
||||
locale_hack.h \
|
||||
replaygain_synthesis.h \
|
||||
vorbiscomment.h
|
||||
|
||||
libplugin_common_a_SOURCES = \
|
||||
@@ -22,6 +26,7 @@ libplugin_common_a_SOURCES = \
|
||||
dither.c \
|
||||
id3v1.c \
|
||||
id3v2.c \
|
||||
replaygain_synthesis.c \
|
||||
vorbiscomment.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
topdir = ../..
|
||||
|
||||
LIB_NAME = libplugin_common
|
||||
INCLUDES = -I$(topdir)/include -I$(HOME)/local/include
|
||||
INCLUDES = -I./include -I$(topdir)/include -I$(HOME)/local/include
|
||||
DEFINES = -DFLAC__HAS_ID3LIB -DID3LIB_MAJOR=3 -DID3LIB_MINOR=8 -DID3LIB_PATCH=0
|
||||
|
||||
OBJS = \
|
||||
@@ -14,6 +14,7 @@ OBJS = \
|
||||
dither.o \
|
||||
id3v1.o \
|
||||
id3v2.o \
|
||||
replaygain_synthesis.o \
|
||||
vorbiscomment.o
|
||||
|
||||
include $(topdir)/build/lib.mk
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
|
||||
!IFDEF DEBUG
|
||||
.c.obj:
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
||||
!else
|
||||
.c.obj:
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
|
||||
!endif
|
||||
|
||||
C_FILES= \
|
||||
@@ -14,6 +14,7 @@ C_FILES= \
|
||||
dither.c \
|
||||
id3v1.c \
|
||||
id3v2.c \
|
||||
replaygain_synthesis.c \
|
||||
vorbiscomment.c
|
||||
|
||||
OBJS= $(C_FILES:.c=.obj)
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
#include "id3v1.h"
|
||||
#include "id3v2.h"
|
||||
#include "locale_hack.h"
|
||||
#include "replaygain_synthesis.h"
|
||||
#include "vorbiscomment.h"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -114,12 +114,20 @@ SOURCE=.\id3v2.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\replaygain_synthesis.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\vorbiscomment.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Private Header Files"
|
||||
|
||||
# PROP Default_Filter ""
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\private\fast_float_math_hack.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Protected Header Files"
|
||||
|
||||
@@ -158,6 +166,10 @@ SOURCE=.\locale_hack.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\replaygain_synthesis.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\vorbiscomment.h
|
||||
# End Source File
|
||||
# End Group
|
||||
|
||||
Reference in New Issue
Block a user