summaryrefslogtreecommitdiff
path: root/src/dxr3/dxr3_decoder.c
diff options
context:
space:
mode:
authorMike Lampard <mlampard@users.sourceforge.net>2001-11-19 17:07:15 +0000
committerMike Lampard <mlampard@users.sourceforge.net>2001-11-19 17:07:15 +0000
commit6689ec37a04a8119be383b3ab5ebff0150a256fa (patch)
treeeb466060119f15d9a7c79fa39131839d8e03a5c1 /src/dxr3/dxr3_decoder.c
parent3377adc5847430b8060e245fc7ffd60e2f4ecd77 (diff)
downloadxine-lib-6689ec37a04a8119be383b3ab5ebff0150a256fa.tar.gz
xine-lib-6689ec37a04a8119be383b3ab5ebff0150a256fa.tar.bz2
unify standard dxr3 config options under one banner (dxr3). The dxr3 encoder
is now under its own banner (dxr3enc). CVS patchset: 1078 CVS date: 2001/11/19 17:07:15
Diffstat (limited to 'src/dxr3/dxr3_decoder.c')
-rw-r--r--src/dxr3/dxr3_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dxr3/dxr3_decoder.c b/src/dxr3/dxr3_decoder.c
index db2626dbb..dcde384c1 100644
--- a/src/dxr3/dxr3_decoder.c
+++ b/src/dxr3/dxr3_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: dxr3_decoder.c,v 1.35 2001/11/19 15:06:12 mlampard Exp $
+ * $Id: dxr3_decoder.c,v 1.36 2001/11/19 17:07:15 mlampard Exp $
*
* dxr3 video and spu decoder plugin. Accepts the video and spu data
* from XINE and sends it directly to the corresponding dxr3 devices.
@@ -43,7 +43,7 @@
#include "buffer.h"
#include "xine-engine/bswap.h"
-#define LOOKUP_DEV "codec.dxr3_devname"
+#define LOOKUP_DEV "dxr3.devicename"
#define DEFAULT_DEV "/dev/em8300"
static char *devname;
@@ -433,9 +433,9 @@ video_decoder_t *init_video_decoder_plugin (int iface_version,
this->video_decoder.flush = dxr3_flush;
this->video_decoder.priority = 10;
- this->scr_prio = cfg->register_num(cfg, "misc.dxr3_scr_prio", 10, "Dxr3: SCR plugin priority",NULL,NULL,NULL);
+ this->scr_prio = cfg->register_num(cfg, "dxr3.scr_priority", 10, "Dxr3: SCR plugin priority",NULL,NULL,NULL);
- this->enhanced_mode = cfg->register_bool(cfg,"misc.dxr3_buffer_mode", 0, "Dxr3: use alternate Play mode","Enabling this option will utilise a slightly different play mode",NULL,NULL);
+ this->enhanced_mode = cfg->register_bool(cfg,"dxr3.alt_play_mode", 0, "Dxr3: use alternate Play mode","Enabling this option will utilise a slightly different play mode",NULL,NULL);
if(this->enhanced_mode)
printf("Dxr3: Using Mode 6 for playback\n");