diff options
author | scop <scop> | 2005-11-22 10:55:55 +0000 |
---|---|---|
committer | scop <scop> | 2005-11-22 10:55:55 +0000 |
commit | e2dd434970a1ca4029806633cbf9eaaa09fc396a (patch) | |
tree | c94c481ce68b540b60514af63a98683d1ceaf5a5 | |
parent | 86d97cc3c83b69d0755a79483ac53ab11e8d06f2 (diff) | |
download | vdr-plugin-dxr3-e2dd434970a1ca4029806633cbf9eaaa09fc396a.tar.gz vdr-plugin-dxr3-e2dd434970a1ca4029806633cbf9eaaa09fc396a.tar.bz2 |
Sync default microcode location with em8300 0.15.2+.
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -298,3 +298,7 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 the frame instead (Ville Skyttä) - fix crash on audio sync buffer push timeouts (Jon Burgess) - make the device class call cDevice's Mute() and Clear() (Ville Skyttä) + +2005-xx-xx: Version 0.2.5 + +- sync default microcode location with em8300 0.15.2+ (Ville Skyttä) @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1.2.19 2005/08/27 10:56:43 scop Exp $ +# $Id: Makefile,v 1.1.2.20 2005/11/22 10:55:55 scop Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -47,8 +47,10 @@ LIBS = -L$(FFMDIR)/libavcodec -lavcodec -ljpeg DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' DEFINES += -D_GNU_SOURCE -# where is the microcode for the dxr3 located? -DEFINES += -DMICROCODE=\"/usr/share/misc/em8300.uc\" +# where is the microcode for the dxr3 located? em8300 driver version 0.15.2 +# and later installs it by default to /lib/firmware/em8300.bin, and earlier +# versions to /usr/share/misc/em8300.uc. +DEFINES += -DMICROCODE=\"/lib/firmware/em8300.bin\" # use OSD scaler borrowed from the Xine plugin? # comment this out to use the traditional vdr-dxr3 scaler |