diff options
Diffstat (limited to 'src/video_out/video_out_opengl.c')
-rw-r--r-- | src/video_out/video_out_opengl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 11cb4fd28..b4b41c580 100644 --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.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_opengl.c,v 1.10 2002/04/29 23:32:00 jcdutton Exp $ + * $Id: video_out_opengl.c,v 1.11 2002/06/12 12:22:38 f1rmb Exp $ * * video_out_glut.c, glut based OpenGL rendering interface for xine * Matthias Hopf <mat@mshopf.de> @@ -1103,7 +1103,7 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { this->yuv2rgb_gamma = config->register_range (config, "video.opengl_gamma", 0, -100, 100, - "gamma correction for OpenGL driver", + _("gamma correction for OpenGL driver"), NULL, NULL, NULL); this->yuv2rgb_factory = yuv2rgb_factory_init (YUV_FORMAT, YUV_SWAP_MODE, this->yuv2rgb_cmap); @@ -1115,12 +1115,13 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { static vo_info_t vo_info_shm = { 5, "OpenGL", - "xine video output plugin using OpenGL(tm)", + NULL, VISUAL_TYPE_X11, 8 }; vo_info_t *get_video_out_plugin_info() { + vo_info_shm.description = _("xine video output plugin using OpenGL(tm)"); return &vo_info_shm; } |