summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-07-12 20:36:04 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-07-12 20:36:04 +0000
commit98b75620c1a04f1002da19fda0fd0df2d49d40d0 (patch)
tree80d22a00c22faeb5fb1f449431890913a81c1c3e
parent0e499e93505e0ecf031ad9584847e353eaff9fb3 (diff)
downloadxine-lib-98b75620c1a04f1002da19fda0fd0df2d49d40d0.tar.gz
xine-lib-98b75620c1a04f1002da19fda0fd0df2d49d40d0.tar.bz2
vidix: LIBDIR unneeded for weeks.
tvmode: fix wrong config description. CVS patchset: 2255 CVS date: 2002/07/12 20:36:04
-rw-r--r--src/video_out/video_out_vidix.c3
-rw-r--r--src/xine-engine/tvmode.c10
2 files changed, 5 insertions, 8 deletions
diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c
index 500da991e..9f7ff09cd 100644
--- a/src/video_out/video_out_vidix.c
+++ b/src/video_out/video_out_vidix.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: video_out_vidix.c,v 1.5 2002/07/12 20:19:20 f1rmb Exp $
+ * $Id: video_out_vidix.c,v 1.6 2002/07/12 20:36:04 f1rmb Exp $
*
* video_out_vidix.c
*
@@ -52,7 +52,6 @@
#undef LOG
-#define LIBDIR "/usr/local/lib"
#define NUM_FRAMES 1
typedef struct vidix_driver_s vidix_driver_t;
diff --git a/src/xine-engine/tvmode.c b/src/xine-engine/tvmode.c
index e0434523f..6ac3497bd 100644
--- a/src/xine-engine/tvmode.c
+++ b/src/xine-engine/tvmode.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: tvmode.c,v 1.4 2002/07/09 12:45:18 f1rmb Exp $
+ * $Id: tvmode.c,v 1.5 2002/07/12 20:36:04 f1rmb Exp $
*
* tvmode - TV output selection
*
@@ -33,12 +33,10 @@
#include <unistd.h>
#include "nvtvd.h"
-/* FIXME: how to include that? */
-/*#include "xine.h" */
+
#include "xine_internal.h"
#include "xineutils.h"
-
/*
* PRIVATE
*/
@@ -267,8 +265,8 @@ static void _tvmode_init(xine_t *this) {
void xine_tvmode_init (xine_t *this) {
tvmode_enabled = this->config->register_bool(this->config, "misc.nv_tvmode", 0,
- _("Show status on play, pause, ff, ..."), NULL,
- nvtvmode_enable_cb, this);
+ _("NVidia TV-Out support."),
+ NULL, nvtvmode_enable_cb, this);
_tvmode_init(this);
}