Changeset 08e46e022330045b2bda173f0f23950d2eb27cc0
- Timestamp:
- 30/06/03 00:07:40
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1056924460 +0000
- git-parent:
[0d0dffabce3a6d428e8a0dfbfb585ddcef543f7b]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1056924460 +0000
- Message:
* modules/visualization/xosd/xosd.c: lowered the module's score.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd5791c9 |
r08e46e0 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001 VideoLAN |
|---|
| 5 | | * $Id: xosd.c,v 1.10 2003/05/15 22:27:38 massiot Exp $ |
|---|
| | 5 | * $Id: xosd.c,v 1.11 2003/06/29 22:07:40 gbazin Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Lo�Minier <lool@videolan.org> |
|---|
| … | … | |
| 73 | 73 | |
|---|
| 74 | 74 | vlc_module_begin(); |
|---|
| 75 | | int i = getenv( "DISPLAY" ) == NULL ? 10 : 90; |
|---|
| 76 | 75 | add_category_hint( N_("XOSD module"), NULL, VLC_TRUE ); |
|---|
| 77 | 76 | add_bool( "xosd-position", 1, NULL, POSITION_TEXT, POSITION_LONGTEXT, VLC_TRUE ); |
|---|
| … | … | |
| 82 | 81 | NULL, FONT_TEXT, FONT_LONGTEXT, VLC_TRUE ); |
|---|
| 83 | 82 | set_description( _("xosd interface") ); |
|---|
| 84 | | set_capability( "interface", i ); |
|---|
| | 83 | set_capability( "interface", 10 ); |
|---|
| 85 | 84 | set_callbacks( Open, Close ); |
|---|
| 86 | 85 | vlc_module_end(); |
|---|