summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraustriancoder <austriancoder>2005-08-16 18:29:46 +0000
committeraustriancoder <austriancoder>2005-08-16 18:29:46 +0000
commit96612b2205cb28c23c9df10f74c45606d0b0d199 (patch)
tree94bbdbaf8c41fac714163dde5cac98cac04f0196
parent7058fb1906258db9ddf844640b3568422b32cafc (diff)
downloadvdr-plugin-dxr3-96612b2205cb28c23c9df10f74c45606d0b0d199.tar.gz
vdr-plugin-dxr3-96612b2205cb28c23c9df10f74c45606d0b0d199.tar.bz2
renamed dxr3interface_spu_encoder.[ch] to dxr3spuencoder.[ch]
-rw-r--r--HISTORY3
-rw-r--r--Makefile4
-rw-r--r--dxr3osd.c2
-rw-r--r--dxr3osd.h2
-rw-r--r--dxr3osd_subpicture.h2
-rw-r--r--dxr3spuencoder.c (renamed from dxr3interface_spu_encoder.c)2
-rw-r--r--dxr3spuencoder.h (renamed from dxr3interface_spu_encoder.h)2
7 files changed, 9 insertions, 8 deletions
diff --git a/HISTORY b/HISTORY
index 2ebc094..a2151d5 100644
--- a/HISTORY
+++ b/HISTORY
@@ -295,4 +295,5 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
2005-0?-??: Version 0.2.?
-- added fix for slow udev device creating (Christian Gmeiner) \ No newline at end of file
+- added fix for slow udev device creating (Christian Gmeiner)
+- renamed dxr3interface_spu_encoder.[ch] to dxr3spuencoder.[ch] (Christian Gmeiner) \ No newline at end of file
diff --git a/Makefile b/Makefile
index 3ab2e57..353254f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.19 2005/08/15 17:28:49 austriancoder Exp $
+# $Id: Makefile,v 1.20 2005/08/16 18:29:46 austriancoder Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -58,7 +58,7 @@ DEFINES += -DUSE_XINE_SCALER
OBJS = $(PLUGIN).o dxr3multichannelaudio.o dxr3sysclock.o dxr3colormanager.o dxr3syncbuffer.o dxr3audiodecoder.o \
dxr3blackframe.o dxr3nextpts.o dxr3pesframe.o dxr3demuxdevice.o dxr3configdata.o \
-dxr3ffmpeg.o dxr3interface_spu_encoder.o dxr3i18n.o \
+dxr3ffmpeg.o dxr3spuencoder.o dxr3i18n.o \
dxr3interface.o dxr3device.o dxr3outputthread.o dxr3osd.o dxr3osd_subpicture.o dxr3spudecoder.o
### Default target:
diff --git a/dxr3osd.c b/dxr3osd.c
index 2be8398..51e0c8f 100644
--- a/dxr3osd.c
+++ b/dxr3osd.c
@@ -29,7 +29,7 @@
#include "dxr3interface.h"
#include "dxr3osd.h"
-#include "dxr3interface_spu_encoder.h"
+#include "dxr3spuencoder.h"
#include "dxr3osd_subpicture.h"
diff --git a/dxr3osd.h b/dxr3osd.h
index 53e5d0f..25f7712 100644
--- a/dxr3osd.h
+++ b/dxr3osd.h
@@ -2,7 +2,7 @@
#define _DXR3_OSD_H_
#include "dxr3vdrincludes.h"
-#include "dxr3interface_spu_encoder.h"
+#include "dxr3spuencoder.h"
// ==================================
// osd plugin provider
diff --git a/dxr3osd_subpicture.h b/dxr3osd_subpicture.h
index 33a5a81..5352669 100644
--- a/dxr3osd_subpicture.h
+++ b/dxr3osd_subpicture.h
@@ -2,7 +2,7 @@
#define _DXR3OSD_SUBPICTURE_H_
#include "dxr3vdrincludes.h"
-#include "dxr3interface_spu_encoder.h"
+#include "dxr3spuencoder.h"
// ==================================
// osd interface
diff --git a/dxr3interface_spu_encoder.c b/dxr3spuencoder.c
index 405da33..5538a8d 100644
--- a/dxr3interface_spu_encoder.c
+++ b/dxr3spuencoder.c
@@ -1,5 +1,5 @@
/*
- * dxr3interface_spu_encoder.c - encodes an OSD bitmap as subpicture
+ * dxr3spuencoder.c - encodes an OSD bitmap as subpicture
*
* Assimilated and adapted by
* Stefan Schluenss <dxr3_osd@schluenss.de>
diff --git a/dxr3interface_spu_encoder.h b/dxr3spuencoder.h
index b3f75cc..4d8c4c6 100644
--- a/dxr3interface_spu_encoder.h
+++ b/dxr3spuencoder.h
@@ -1,5 +1,5 @@
/*
- * dxr3interface_spu_encoder.h - encodes an OSD bitmap as subpicture
+ * dxr3spuencoder.h - encodes an OSD bitmap as subpicture
*
* Assimilated and adapted by
* Stefan Schluenss <dxr3_osd@schluenss.de>