From 5d8dea1b6b9e15048f425f13b349e785a494cdb3 Mon Sep 17 00:00:00 2001 From: Johns Date: Tue, 21 Feb 2012 20:55:28 +0100 Subject: New audio PES handling. New easier and more flexible audio PES packet parser, which includes own codec parser. Removed av_parser use. Reduced audio buffer time, faster channel switch. New audio transport stream parser (not enabled as default). --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8cae7eb..6b78105 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,9 @@ GIT_REV = $(shell git describe --always 2>/dev/null) ### Configuration (edit this for your needs) CONFIG := #-DDEBUG -CONFIG += -DAV_INFO -#CONFIG += -DHAVE_PTHREAD_NAME +CONFIG += -DAV_INFO # debug a/v sync +#CONFIG += -DHAVE_PTHREAD_NAME # supports new pthread_setname_np +#CONFIG += -DUSE_TS_AUDIO # build new ts audio parser CONFIG += $(shell pkg-config --exists vdpau && echo "-DUSE_VDPAU") CONFIG += $(shell pkg-config --exists libva && echo "-DUSE_VAAPI") CONFIG += $(shell pkg-config --exists alsa && echo "-DUSE_ALSA") @@ -66,7 +67,7 @@ DEFINES += $(CONFIG) -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' \ $(if $(GIT_REV), -DGIT_REV='"$(GIT_REV)"') _CFLAGS = $(DEFINES) $(INCLUDES) \ - $(shell pkg-config --cflags libavcodec libavformat) \ + $(shell pkg-config --cflags libavcodec) \ `pkg-config --cflags x11 x11-xcb xcb xcb-xv xcb-shm xcb-dpms xcb-atom\ xcb-screensaver xcb-randr xcb-glx xcb-icccm xcb-keysyms`\ `pkg-config --cflags gl glu` \ @@ -82,7 +83,7 @@ override CXXFLAGS += $(_CFLAGS) override CFLAGS += $(_CFLAGS) LIBS += -lrt \ - $(shell pkg-config --libs libavcodec libavformat) \ + $(shell pkg-config --libs libavcodec) \ `pkg-config --libs x11 x11-xcb xcb xcb-xv xcb-shm xcb-dpms xcb-atom\ xcb-screensaver xcb-randr xcb-glx xcb-icccm xcb-keysyms`\ `pkg-config --libs gl glu` \ -- cgit v1.2.3