diff options
Diffstat (limited to 'src/dxr3/dxr3_decode_video.c')
-rw-r--r-- | src/dxr3/dxr3_decode_video.c | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c index d0f99a844..f46ad2dd9 100644 --- a/src/dxr3/dxr3_decode_video.c +++ b/src/dxr3/dxr3_decode_video.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: dxr3_decode_video.c,v 1.6 2002/06/03 20:29:16 mroi Exp $ + * $Id: dxr3_decode_video.c,v 1.7 2002/06/12 12:22:34 f1rmb Exp $ */ /* dxr3 video decoder plugin. @@ -161,9 +161,10 @@ video_decoder_t *init_video_decoder_plugin(int iface_version, xine_t *xine) this->video_decoder.close = dxr3_close; this->video_decoder.dispose = dxr3_dispose; this->video_decoder.priority = cfg->register_num(cfg, - "dxr3.decoder_priority", 10, "Dxr3: video decoder priority", - "Decoder priorities greater 5 enable hardware decoding, 0 disables it.", - dxr3_update_priority, this); + "dxr3.decoder_priority", 10, + _("Dxr3: video decoder priority"), + _("Decoder priorities greater 5 enable hardware decoding, 0 disables it."), + dxr3_update_priority, this); this->scr = NULL; this->xine = xine; @@ -172,18 +173,21 @@ video_decoder_t *init_video_decoder_plugin(int iface_version, xine_t *xine) this->repeat_first_field = 0; this->sync_every_frame = cfg->register_bool(cfg, - "dxr3.sync_every_frame", 0, "Try to sync video every frame", - "This is relevant for progressive video only (most PAL films).", - dxr3_update_sync_mode, this); + "dxr3.sync_every_frame", 0, + _("Try to sync video every frame"), + _("This is relevant for progressive video only (most PAL films)."), + dxr3_update_sync_mode, this); this->sync_retry = 0; this->enhanced_mode = cfg->register_bool(cfg, - "dxr3.alt_play_mode", 1, "Use alternate Play mode", - "Enabling this option will utilise a smoother play mode.", - dxr3_update_enhanced_mode, this); + "dxr3.alt_play_mode", 1, + _("Use alternate Play mode"), + _("Enabling this option will utilise a smoother play mode."), + dxr3_update_enhanced_mode, this); this->correct_durations = cfg->register_bool(cfg, - "dxr3.correct_durations", 0, "Correct frame durations in broken streams", - "Enable this for streams with wrong frame durations.", - dxr3_update_correct_durations, this); + "dxr3.correct_durations", 0, + _("Correct frame durations in broken streams"), + _("Enable this for streams with wrong frame durations."), + dxr3_update_correct_durations, this); /* set a/v offset to compensate dxr3 internal delay */ cur_offset = this->xine->metronom->get_option(this->xine->metronom, METRONOM_AV_OFFSET); |