⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 F:图像处理资料264264书籍ffmpeg-0.4.9-pre1VideoStream.rar 一个视频解压缩源代码
💻
字号:
## libavformat Makefile# (c) 2000-2003 Fabrice Bellard#include ../config.makVPATH=$(SRC_PATH)/libavformatCFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCEOBJS= utils.o cutils.o os_support.o allformats.oPPOBJS=# mux and demuxesOBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \      avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \      yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \      nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \      sierravmd.o matroska.oifeq ($(CONFIG_RISKY),yes)OBJS+= asf.oOBJS+= asf-enc.oendififeq ($(AMR_NB),yes)OBJS+= amr.oendififeq ($(AMR_NB_FIXED),yes)OBJS+= amr.oendififeq ($(AMR_WB),yes)OBJS+= amr.oendif# image formatsOBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o# file I/OOBJS+= avio.o aviobuf.o file.o OBJS+= framehook.o ifeq ($(CONFIG_VIDEO4LINUX),yes)OBJS+= grab.oendififeq ($(CONFIG_DV1394),yes)OBJS+= dv1394.oendififeq ($(CONFIG_AUDIO_OSS),yes)OBJS+= audio.o endififeq ($(CONFIG_AUDIO_BEOS),yes)PPOBJS+= beosaudio.oEXTRALIBS+=-lbe -lmedia# this should be the default !EXTRALIBS+=-lavcodec -L../libavcodecendififeq ($(CONFIG_NETWORK),yes)OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o# BeOS and Darwin network stuffifeq ($(NEED_INET_ATON),yes)OBJS+= barpainet.oendifendififeq ($(CONFIG_VORBIS),yes)OBJS+= ogg.oendififeq ($(TARGET_ARCH_SPARC64),yes)CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparcendifLIB= $(LIBPREF)avformat$(LIBSUF)ifeq ($(BUILD_SHARED),yes)SLIB= $(SLIBPREF)avformat$(SLIBSUF)endifSRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)all: $(LIB) $(SLIB)$(LIB): $(OBJS) $(PPOBJS)	rm -f $@	$(AR) rc $@ $(OBJS) $(PPOBJS)	$(RANLIB) $@$(SLIB): $(OBJS)ifeq ($(CONFIG_WIN32),yes)	$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll	-lib /machine:i386 /def:$(@:.dll=.def)else	$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)endifdepend: $(SRCS)	$(CC) -MM $(CFLAGS) $^ 1>.dependifeq ($(BUILD_SHARED),yes)install: all install-headersifeq ($(CONFIG_WIN32),yes)	install -s -m 755 $(SLIB) "$(prefix)"else	install -d $(prefix)/lib	install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so	ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so	ldconfig || trueendifelseinstall:endifinstalllib: all install-headers	install -m 644 $(LIB) $(prefix)/libinstall-headers:	mkdir -p "$(prefix)/include/ffmpeg"	install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \                $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \                $(SRC_PATH)/libavformat/rtspcodes.h \                "$(prefix)/include/ffmpeg"%.o: %.c	$(CC) $(CFLAGS) -c -o $@ $< # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings%.o: %.cpp	g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< distclean clean: 	rm -f *.o *.d .depend *~ *.a $(LIB)## include dependency files if they exist#ifneq ($(wildcard .depend),)include .dependendif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -