diff options
author | Johns <johns98@gmx.net> | 2012-02-21 20:55:28 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-02-21 20:55:28 +0100 |
commit | 5d8dea1b6b9e15048f425f13b349e785a494cdb3 (patch) | |
tree | ac2fc34f5cff60e63b59fa8ed5bcd5d9f6a1d7fa /Makefile | |
parent | 1f232db5b499169e3c354b4af4bb59053009f210 (diff) | |
download | vdr-plugin-softhddevice-5d8dea1b6b9e15048f425f13b349e785a494cdb3.tar.gz vdr-plugin-softhddevice-5d8dea1b6b9e15048f425f13b349e785a494cdb3.tar.bz2 |
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).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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` \ |