view libmpdemux/Makefile @ 23803:ec1a81c77628

fixed bug introduced with the addition of get_ext_stream_properties() that should close bug #843, too. Patch by John Donaghy. Explanation: The issue is that get_ext_stream_properties shouldnt be returning false when no extended stream properties are found for the stream in question because that is not an error condition ... extended stream properties are optional. The only time this function should return false is when the buffer overrun checks fail.
author nicodvb
date Wed, 18 Jul 2007 22:16:08 +0000
parents 253a6da2be20
children e4a38a7cdb81
line wrap: on
line source

include ../config.mak

LIBNAME_COMMON   = libmpdemux.a
LIBNAME_MENCODER = libmpmux.a

SRCS_COMMON = asfheader.c \
              aviheader.c \
              aviprint.c \
              demuxer.c \
              demux_aac.c \
              demux_asf.c \
              demux_audio.c \
              demux_avi.c \
              demux_demuxers.c \
              demux_film.c \
              demux_fli.c \
              demux_lmlm4.c \
              demux_mf.c \
              demux_mkv.c ebml.c \
              demux_mov.c \
              demux_mpg.c \
              demux_nsv.c \
              demux_nuv.c \
              demux_pva.c \
              demux_rawaudio.c \
              demux_rawvideo.c \
              demux_realaud.c \
              demux_real.c \
              demux_roq.c \
              demux_smjpeg.c \
              demux_ts.c \
              demux_ty.c \
              demux_ty_osd.c \
              demux_viv.c \
              demux_vqf.c \
              demux_y4m.c \
              extension.c \
              mf.c \
              mp3_hdr.c \
              mpeg_hdr.c \
              mpeg_packetizer.c \
              parse_es.c \
              parse_mp4.c \
              video.c \
              yuv4mpeg.c \
              yuv4mpeg_ratio.c \

SRCS_COMMON-$(GIF)                     += demux_gif.c
SRCS_COMMON-$(LIBAVFORMAT)             += demux_lavf.c
SRCS_COMMON-$(LIBDV)                   += demux_rawdv.c
SRCS_COMMON-$(LIBNUT)                  += demux_nut.c
SRCS_COMMON-$(LIBVORBIS)               += demux_ogg.c
SRCS_COMMON-$(MUSEPACK)                += demux_mpc.c
SRCS_COMMON-$(STREAMING_LIVE555)       += demux_rtp.cpp demux_rtp_codec.cpp
SRCS_COMMON-$(WIN32DLL)                += demux_avs.c
SRCS_COMMON-$(XMMS_PLUGINS)            += demux_xmms.c

SRCS_MENCODER = muxer.c \
                muxer_avi.c \
                muxer_mpeg.c \
                muxer_rawaudio.c \
                muxer_rawvideo.c \

SRCS_MENCODER-$(LIBAVFORMAT)           += muxer_lavf.c

include ../mpcommon.mak

dep depend: CFLAGS += $(EXTRAXX_INC)