2012-10-02 87 views
0

有誰知道這裏如何編寫FFmpeg的測試代碼生成文件?當爲ffmpeg寫一個測試時,如何編寫一個makefile?

是由automake maked makefile文件?

我發現演示的Makefile,而不是makefile.in,所以我不能寫makefile.in。
你有makefile.in?

...我已經尋找答案了一個星期,但沒有解決問題。

回答

1

這是ffmpeg的例子目錄中生成文件:

# use pkg-config for getting CFLAGS and LDLIBS 
FFMPEG_LIBS= libavdevice      \ 
       libavformat      \ 
       libavfilter      \ 
       libavcodec       \ 
       libswresample      \ 
       libswscale       \ 
       libavutil       \ 

CFLAGS += -Wall -O2 -g 
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS) 
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS) 

EXAMPLES=  decoding_encoding     \ 
       demuxing       \ 
       filtering_video     \ 
       filtering_audio     \ 
       metadata       \ 
       muxing        \ 
       scaling_video      \ 

OBJS=$(addsuffix .o,$(EXAMPLES)) 

# the following examples make explicit use of the math library 
decoding_encoding: LDLIBS += -lm 
muxing:   LDLIBS += -lm 

.phony: all clean-test clean 

all: $(OBJS) $(EXAMPLES) 

clean-test: 
    $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg 

clean: clean-test 
    $(RM) $(EXAMPLES) $(OBJS) 

,你可以看到這是一個普通的手寫Makefile文件,所以沒有自動工具的東西,你可以很容易地改變它

+0

感謝非常much.I有解決了這個問題。 – cyh24

相關問題