view stream/Makefile @ 21698:009635b12924

Pass quant tables to next filters Fix problem when softskip is before pp. It disabled the pp filter (with no warning), since pp needs the quant tables. pach by Trent Piepho % xyzzy A speakeasy P org % Original thread: date Dec 5, 2006 11:40 AM subject [MPlayer-dev-eng] softskip doesn't copy quant tables
author gpoirier
date Thu, 21 Dec 2006 14:59:39 +0000
parents af809f05ed57
children 8bcff5c7e387
line wrap: on
line source


LIBNAME = stream.a

include ../config.mak

SRCS += open.c \
        stream.c \
        stream_cue.c \
        stream_file.c \
        stream_mf.c \
        stream_null.c \
        url.c \

SRCS-$(CDDA)              += stream_cdda.c cdinfo.c
SRCS-$(CDDB)              += stream_cddb.c
SRCS-$(DVBIN)             += dvb_tune.c stream_dvb.c
SRCS-$(DVDNAV)            += stream_dvdnav.c
SRCS-$(DVDREAD)           += stream_dvd.c
SRCS-$(FTP)               += stream_ftp.c
SRCS-$(LIBSMBCLIENT)      += stream_smb.c
SRCS-$(MPLAYER_NETWORK)   += stream_netstream.c     \
                             asf_mmst_streaming.c   \
                             asf_streaming.c        \
                             cookies.c              \
                             http.c                 \
                             network.c              \
                             pnm.c                  \
                             rtp.c                  \
                             udp.c                  \
                             tcp.c                  \
                             stream_rtp.c           \
                             stream_rtsp.c          \
                             stream_udp.c           \
                             freesdp/common.c       \
                             freesdp/errorlist.c    \
                             freesdp/parser.c       \
                             librtsp/rtsp.c         \
                             librtsp/rtsp_rtp.c     \
                             librtsp/rtsp_session.c \
                             realrtsp/asmrp.c       \
                             realrtsp/real.c        \
                             realrtsp/rmff.c        \
                             realrtsp/sdpplin.c     \
                             realrtsp/xbuffer.c     \

SRCS-$(PVR)               += stream_pvr.c
SRCS-$(RADIO)             += stream_radio.c
SRCS-$(RADIO_CAPTURE)     += audio_in.c
SRCS-$(STREAM_CACHE)      += cache2.c
SRCS-$(STREAMING_LIVE555) += stream_livedotcom.c
SRCS-$(TV)                += stream_tv.c tv.c frequencies.c tvi_dummy.c
SRCS-$(TV_BSDBT848)       += tvi_bsdbt848.c
SRCS-$(TV_V4L1)           += tvi_v4l.c  audio_in.c
SRCS-$(TV_V4L2)           += tvi_v4l2.c audio_in.c
SRCS-$(VCD)               += stream_vcd.c
SRCS-$(VSTREAM)           += stream_vstream.c

#FIXME: These should have variables assigned in configure.
ifeq ($(TV_V4L),yes)
SRCS-$(ALSA1X)            += ai_alsa1x.c
SRCS-$(ALSA9)             += ai_alsa.c
SRCS-$(OSS)               += ai_oss.c
endif
ifeq ($(RADIO_CAPTURE),yes)
SRCS-$(ALSA1X)            += ai_alsa1x.c
SRCS-$(ALSA9)             += ai_alsa.c
SRCS-$(OSS)               += ai_oss.c
endif

CFLAGS = -I../loader

include ../mpcommon.mak

clean::
	rm -f realrtsp/*.o realrtsp/*.a realrtsp/*~ \
	librtsp/*.o librtsp/*.a librtsp/*~ \
	freesdp/*.o freesdp/*.a freesdp/*~