Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. include $(SUBDIR)../config.mak
  2.  
  3. NAME = swresample
  4. FFLIBS = avutil
  5.  
  6. HEADERS = swresample.h                       \
  7.           version.h                          \
  8.  
  9. OBJS = audioconvert.o                        \
  10.        dither.o                              \
  11.        options.o                             \
  12.        rematrix.o                            \
  13.        resample.o                            \
  14.        resample_dsp.o                        \
  15.        swresample.o                          \
  16.        swresample_frame.o                    \
  17.  
  18. OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o
  19. OBJS-$(CONFIG_SHARED)  += log2_tab.o
  20.  
  21. # Windows resource file
  22. SLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o
  23.  
  24. TESTPROGS = swresample
  25.