diff options
author | austriancoder <austriancoder> | 2004-09-18 00:09:20 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-09-18 00:09:20 +0000 |
commit | 4be1e3d6cdc48ae7c1922e91b2b158ad2803ac4c (patch) | |
tree | 983f0b74e61f6e84baadbd3027c3835bef778856 /Makefile | |
parent | 48d3d4fe3b7e7e89f734c9b398d5b59d9181715d (diff) | |
download | vdr-plugin-dxr3-4be1e3d6cdc48ae7c1922e91b2b158ad2803ac4c.tar.gz vdr-plugin-dxr3-4be1e3d6cdc48ae7c1922e91b2b158ad2803ac4c.tar.bz2 |
basic ac3 (dolby digital 5.1) support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1 2004/08/05 23:05:21 austriancoder Exp $ +# $Id: Makefile,v 1.2 2004/09/18 00:09:20 austriancoder Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -55,13 +55,18 @@ DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' DEFINES += -DSOCKET_CHMOD=0660 DEFINES += -D_GNU_SOURCE +# where is the microcode for the dxr3 located? +export MICROCODE := /usr/share/misc/em8300.uc + +EXTRA_CFLAGS := -DMICROCODE=\"$(MICROCODE)\" + ### The object files (add further files here): OBJS = $(PLUGIN).o dxr3multichannelaudio.o dxr3sysclock.o dxr3colormanager.o dxr3syncbuffer.o dxr3audiodecoder.o \ dxr3blackframe.o dxr3palettemanager.o dxr3nextpts.o dxr3pesframe.o dxr3demuxdevice.o dxr3configdata.o \ dxr3log.o dxr3ffmpeg.o dxr3interface_spu_encoder.o dxr3i18n.o \ dxr3interface.o dxr3device.o dxr3outputthread.o dxr3osd.o dxr3osd_subpicture.o dxr3spudecoder.o dxr3unixserversocket.o \ -dxr3cpu.o dxr3memcpy.o +dxr3cpu.o dxr3memcpy.o dxr3dolbydigital.o ### Implicit rules: |