summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_directfb.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
commit6c5572a3e91e95c7f92f1110fac91caa241a9a87 (patch)
tree246923aadffab6a78dbbe22865245a5dfb17b597 /src/video_out/video_out_directfb.c
parent184079276271955bc74954b0cc96298cb5ec4366 (diff)
downloadxine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.gz
xine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.bz2
Remove no more needed XINE_LOGO.
Internationalize all config related stuff. Fix not registered mrl ending in roq/film demuxer. Add bindtextdomain() calls in load_plugins (for audio/video out plugins). CVS patchset: 2066 CVS date: 2002/06/12 12:22:25
Diffstat (limited to 'src/video_out/video_out_directfb.c')
-rw-r--r--src/video_out/video_out_directfb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c
index 0ab7acfe6..4dba74ab6 100644
--- a/src/video_out/video_out_directfb.c
+++ b/src/video_out/video_out_directfb.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_directfb.c,v 1.8 2002/05/06 00:48:09 miguelfreitas Exp $
+ * $Id: video_out_directfb.c,v 1.9 2002/06/12 12:22:38 f1rmb Exp $
*
* DirectFB based output plugin.
* Rich Wareham <richwareham@users.sourceforge.net>
@@ -560,12 +560,13 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
static vo_info_t vo_info_directfb = {
4,
"DirectFB",
- "xine video output plugin using the DirectFB library.",
+ NULL,
VISUAL_TYPE_DFB,
8
};
vo_info_t *get_video_out_plugin_info() {
+ vo_info_directfb.description = _("xine video output plugin using the DirectFB library.");
return &vo_info_directfb;
}