mirror of https://github.com/FFmpeg/FFmpeg.git
Original commit message: Simple filter test program Commited in SoC by Bobby Bingham on 2007-06-29 17:08:49 Originally committed as revision 11943 to svn://svn.ffmpeg.org/ffmpeg/trunkpull/126/head
parent
cc9853d38f
commit
2012358455
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
||||
CC = gcc
|
||||
CFLAGS = -g -I../libavcodec -I../libavutil
|
||||
LIBS = ../libavcodec/libavcodec.a ../libavutil/libavutil.a -lm -lSDL
|
||||
|
||||
OBJECTS = avfilter.o \
|
||||
vsrc_dummy.o \
|
||||
vo_sdl.o \
|
||||
vf_crop.o \
|
||||
vf_passthrough.o \
|
||||
|
||||
all: filter_test |
||||
|
||||
filter_test: $(OBJECTS) filter_test.c |
||||
$(CC) $(CFLAGS) $^ -o $@ $(LIBS)
|
||||
|
||||
$(OBJECTS): %.o: %.c |
||||
$(CC) $(CFLAGS) -c $<
|
Loading…
Reference in new issue