diff options
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r-- | src/video_out/video_out_xv.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 9ea754708..fbcea7061 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.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_xv.c,v 1.207 2004/12/08 22:40:32 miguelfreitas Exp $ + * $Id: video_out_xv.c,v 1.208 2004/12/12 22:01:29 mroi Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -1419,7 +1419,7 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi } else if(!strcmp(attr[k].name, "XV_COLORKEY")) { xv_check_capability (this, VO_PROP_COLORKEY, attr[k], adaptor_info[adaptor_num].base_id, - "video.xv_colorkey", + "video.device.xv_colorkey", _("video overlay colour key"), _("The colour key is used to tell the graphics card where to " "overlay the video image. Try different values, if you experience " @@ -1428,14 +1428,14 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi } else if(!strcmp(attr[k].name, "XV_AUTOPAINT_COLORKEY")) { xv_check_capability (this, VO_PROP_AUTOPAINT_COLORKEY, attr[k], adaptor_info[adaptor_num].base_id, - "video.xv_autopaint_colorkey", + "video.device.xv_autopaint_colorkey", _("autopaint colour key"), _("Make Xv autopaint its colorkey.")); } else if(!strcmp(attr[k].name, "XV_FILTER")) { int xv_filter; /* This setting is specific to Permedia 2/3 cards. */ - xv_filter = config->register_range (config, "video.XV_FILTER", 0, + xv_filter = config->register_range (config, "video.device.xv_filter", 0, attr[k].min_value, attr[k].max_value, _("bilinear scaling mode"), _("Selects the bilinear scaling mode for Permedia cards. " @@ -1448,17 +1448,17 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi "1 - horizontal linear filtering\n" "2 - enable full bilinear filtering"), 20, xv_update_XV_FILTER, this); - config->update_num(config,"video.XV_FILTER",xv_filter); + config->update_num(config,"video.device.xv_filter",xv_filter); } else if(!strcmp(attr[k].name, "XV_DOUBLE_BUFFER")) { int xv_double_buffer; xv_double_buffer = - config->register_bool (config, "video.XV_DOUBLE_BUFFER", 1, + config->register_bool (config, "video.device.xv_double_buffer", 1, _("enable double buffering"), _("Double buffering will synchronize the update of the video image to the " "repainting of the entire screen (\"vertical retrace\"). This eliminates " "flickering and tearing artifacts, but will use more graphics memory."), 20, xv_update_XV_DOUBLE_BUFFER, this); - config->update_num(config,"video.XV_DOUBLE_BUFFER",xv_double_buffer); + config->update_num(config,"video.device.xv_double_buffer",xv_double_buffer); } } } @@ -1513,13 +1513,13 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi XUnlockDisplay (this->display); this->use_pitch_alignment = - config->register_bool (config, "video.xv_pitch_alignment", 0, + config->register_bool (config, "video.device.xv_pitch_alignment", 0, _("pitch alignment workaround"), _("Some buggy video drivers need a workaround to function properly."), 10, xv_update_xv_pitch_alignment, this); this->deinterlace_method = - config->register_enum (config, "video.deinterlace_method", 4, + config->register_enum (config, "video.output.xv_deinterlace_method", 4, deinterlace_methods, _("deinterlace method (deprecated)"), _("This config setting is deprecated. You should use the new deinterlacing " |