You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Fix linking failures with -all_load due to multiple log2_tabs Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
		
			
				
	
	
		
			19 lines
		
	
	
		
			501 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			501 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(SUBDIR)../config.mak
 | |
| 
 | |
| NAME = swresample
 | |
| FFLIBS = avutil
 | |
| 
 | |
| HEADERS = swresample.h                       \
 | |
|           version.h                          \
 | |
| 
 | |
| OBJS = audioconvert.o                        \
 | |
|        dither.o                              \
 | |
|        rematrix.o                            \
 | |
|        resample.o                            \
 | |
|        swresample.o                          \
 | |
| 
 | |
| OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o
 | |
| OBJS-$(CONFIG_SHARED)  += log2_tab.o
 | |
| 
 | |
| TESTPROGS = swresample
 |