1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

Get rid of unnecessary conditionals.

Originally committed as revision 8617 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-04-03 16:33:04 +00:00
parent 2d93bcc784
commit 7b17ad84be

View File

@ -155,19 +155,14 @@ endif
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) \
-lavcodec$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec $(EXTRALIBS)
ifeq ($(CONFIG_AUDIO_BEOS),yes)
CPPOBJS+= beosaudio.o
endif
CPPOBJS-$(CONFIG_AUDIO_BEOS) += beosaudio.o
# protocols I/O
OBJS+= avio.o aviobuf.o
ifeq ($(CONFIG_PROTOCOLS),yes)
OBJS+= file.o
endif
ifeq ($(CONFIG_NETWORK),yes)
OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o mpegts.o rtp_h264.o
endif
OBJS-$(CONFIG_PROTOCOLS) += file.o
OBJS-$(CONFIG_NETWORK) += udp.o tcp.o http.o rtsp.o rtp.o \
rtpproto.o mpegts.o rtp_h264.o
NAME=avformat
LIBVERSION=$(LAVFVERSION)