1
0
mirror of https://github.com/nu774/fdkaac.git synced 2025-01-04 19:39:28 +01:00
fdkaac/Makefile.am
nu774 4d48b091d4 smart padding for better gapless playback
Taken smart padding code using LPC extrapolation from vorbis/opus.
Padding is done on both beginning and ending, but enc_delay and padding
remains the same (we discard extra padding frame introduced on our side
after encoding).
2013-10-30 02:09:08 +09:00

48 lines
969 B
Makefile

ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS = fdkaac
fdkaac_SOURCES = \
src/aacenc.c \
src/caf_reader.c \
src/extrapolater.c \
src/lpc.c \
src/lpcm.c \
src/m4af.c \
src/main.c \
src/metadata.c \
src/parson.c \
src/pcm_readhelper.c \
src/pcm_sint16_converter.c \
src/progress.c \
src/wav_reader.c
fdkaac_LDADD = \
@LIBICONV@ -lfdk-aac -lm
if FDK_PLATFORM_POSIX
fdkaac_SOURCES += \
src/compat_posix.c
endif
if FDK_PLATFORM_WIN32
fdkaac_SOURCES += \
src/compat_win32.c
endif
if FDK_NO_GETOPT_LONG
fdkaac_SOURCES += \
missings/getopt.c
AM_CPPFLAGS = -Imissings
endif
EXTRA_DIST = \
m4/.gitkeep \
src/*.h \
missings/*.c \
missings/*.h \
MSVC/*.vcxproj \
MSVC/*.vcxproj.filters \
MSVC/*.sln