summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzwer <zwer@1f4bef6d-8e0a-0410-8695-e467da8aaccf>2007-09-28 14:20:03 +0000
committerzwer <zwer@1f4bef6d-8e0a-0410-8695-e467da8aaccf>2007-09-28 14:20:03 +0000
commit7205f4b14f1b472625aeede98505e063c793e633 (patch)
tree92b516ab4f8cf569796751f9d60fde654c22dcc1
parent9094d49876ad905193d92b8b6e6b73bbc8794ab1 (diff)
downloadvdr-plugin-ffnetdev-7205f4b14f1b472625aeede98505e063c793e633.tar.gz
vdr-plugin-ffnetdev-7205f4b14f1b472625aeede98505e063c793e633.tar.bz2
- added compiling switch 'FFNETDEV_DEBUG'
git-svn-id: svn://svn.berlios.de/ffnetdev/trunk@33 1f4bef6d-8e0a-0410-8695-e467da8aaccf
-rw-r--r--CHANGELOG59
-rw-r--r--Makefile14
2 files changed, 69 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ee32705..f2f7af5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -34,4 +34,61 @@ Changelog
- tested with vdr-1.3.43
2006-02-27:
- - fixed version conflict on cStreamDevice::PlayAudio \ No newline at end of file
+ - fixed version conflict on cStreamDevice::PlayAudio
+
+ 2006-04-29
+ - AC3-Streaming, compatible with vdr >= 1.3.47
+
+ 2006-05-03
+ - Kleinigkeit am Anlernvorgang angepasst
+
+ 2006-05-08
+ - add multi area OSD support. You can use all plugins and all skins.
+
+ 2006-05-16
+ - fixing socket handle bug, reported from vdr-mailing list
+ - allow to compile with VDR smaller than 10347
+
+ 2006-05-17
+ - add ColorMap support
+
+ 2006-05-18
+ - problem with OSD transparency on start fixed
+ - #else, #elseif, #elif problem fixed
+ - OSD-Transparenz bei VDRViewer bei Version 0.1.4 sollte wieder passen
+
+ 2006-05-19
+ - fixed two bugs
+
+ 2006-06-10
+ - fixed a Bug
+
+ 2007-01-16
+ - auf PES-Streaming umgestellt
+
+ 2007-01-24
+ - streamen bis ca. 6.6Mbit/s PES problemlos
+
+ 2007-01-31
+ - ClientControl eingeführt
+
+ 2007-02-12
+ - noch höhere Bitrate jetzt möglich
+ - wiedergabe von DVD
+
+ 2007-02-18
+ - vor- und zurückspulen mit versch. Geschwindigkeiten, Pause
+ - DVD-Wedergabe macht Probleme
+
+ 2007-03-29
+ - Workaround for Clear
+
+ 2007-07-02
+ - sporadischen Fehler in VNC-Protokoll behoben
+
+ 2007-08-29:
+ - Plugin lässt sich jetzt sauber beenden (beim beenden vom VDR gab es Probleme)
+
+ 2007-09-28:
+ - added compiling switch 'FFNETDEV_DEBUG'
+
diff --git a/Makefile b/Makefile
index 939c15a..ff871d0 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,10 @@
# By default the main source file also carries this name.
#
PLUGIN = ffnetdev
-DEBUG = 1
+
+# Debugging on/off
+FFNETDEV_DEBUG = 1
+
### The version number of this plugin (taken from the main source file):
@@ -44,20 +47,25 @@ INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include -I.
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
+
### The object files (add further files here):
COMMONOBJS = i18n.o \
\
tools/source.o tools/select.o tools/socket.o tools/tools.o
-
+
SERVEROBJS = $(PLUGIN).o \
\
ffnetdev.o ffnetdevsetup.o osdworker.o tsworker.o clientcontrol.o netosd.o streamdevice.o \
pes2ts.o remote.o vncEncodeRRE.o vncEncodeCoRRE.o vncEncodeHexT.o \
vncEncoder.o translate.o \
-
+
ifdef DEBUG
+ FFNETDEV_DEBUG = 1
+endif
+
+ifdef FFNETDEV_DEBUG
DEFINES += -DDEBUG
CXXFLAGS += -g
else