diff options
Diffstat (limited to 'src/dxr3')
-rw-r--r-- | src/dxr3/dxr3_decode_video.c | 8 | ||||
-rw-r--r-- | src/dxr3/dxr3_mpeg_encoders.c | 8 | ||||
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 20 |
3 files changed, 18 insertions, 18 deletions
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c index 3a5cc002c..b04f9a44b 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.57 2004/07/20 16:37:44 mroi Exp $ + * $Id: dxr3_decode_video.c,v 1.58 2004/12/12 22:01:04 mroi Exp $ */ /* dxr3 video decoder plugin. @@ -273,18 +273,18 @@ static video_decoder_t *dxr3_open_plugin(video_decoder_class_t *class_gen, xine_ this->last_vpts = this->class->clock->get_current_time(this->class->clock); this->sync_every_frame = cfg->register_bool(cfg, - "dxr3.sync_every_frame", 0, _("try to sync video every frame"), + "dxr3.playback.sync_every_frame", 0, _("try to sync video every frame"), _("Tries to set a synchronization timestamp for every frame. " "Normally this is not necessary, because sync is sufficent " "even when the timestamp is set only every now and then.\n" "This is relevant for progressive video only (most PAL films)."), 20, dxr3_update_sync_mode, this); this->enhanced_mode = cfg->register_bool(cfg, - "dxr3.alt_play_mode", 1, _("use smooth play mode"), + "dxr3.playback.alt_play_mode", 1, _("use smooth play mode"), _("Enabling this option will utilise a smoother play mode."), 20, dxr3_update_enhanced_mode, this); this->correct_durations = cfg->register_bool(cfg, - "dxr3.correct_durations", 0, _("correct frame durations in broken streams"), + "dxr3.playback.correct_durations", 0, _("correct frame durations in broken streams"), _("Enables a small logic that corrects the frame durations of " "some mpeg streams with wrong framerate codes. Currently a " "correction for NTSC streams erroneously labeled as PAL " diff --git a/src/dxr3/dxr3_mpeg_encoders.c b/src/dxr3/dxr3_mpeg_encoders.c index d0bb58791..3e580d2e7 100644 --- a/src/dxr3/dxr3_mpeg_encoders.c +++ b/src/dxr3/dxr3_mpeg_encoders.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_mpeg_encoders.c,v 1.20 2004/07/20 16:37:44 mroi Exp $ + * $Id: dxr3_mpeg_encoders.c,v 1.21 2004/12/12 22:01:04 mroi Exp $ */ /* mpeg encoders for the dxr3 video out plugin. @@ -185,7 +185,7 @@ static int rte_on_update_format(dxr3_driver_t *drv, dxr3_frame_t *frame) } this->rte_bitrate = drv->class->xine->config->register_range(drv->class->xine->config, - "dxr3.rte_bitrate", 10000, 1000, 20000, + "dxr3.encoding.rte_bitrate", 10000, 1000, 20000, _("rte mpeg output bitrate (kbit/s)"), _("The bitrate the mpeg encoder library librte should use for DXR3's encoding mode. " "Higher values will increase quality and CPU usage."), 10, NULL, NULL); @@ -383,7 +383,7 @@ static int fame_on_update_format(dxr3_driver_t *drv, dxr3_frame_t *frame) this->fp = init_fp; this->fp.quality = drv->class->xine->config->register_range(drv->class->xine->config, - "dxr3.fame_quality", 90, 10, 100, + "dxr3.encoding.fame_quality", 90, 10, 100, _("fame mpeg encoding quality"), _("The encoding quality of the libfame mpeg encoder library. " "Lower is faster but gives noticeable artifacts. Higher is better but slower."), @@ -550,7 +550,7 @@ int dxr3_lavc_init(dxr3_driver_t *drv, plugin_node_t *node) ffmpeg = dlopen(node->filename, RTLD_LAZY); if (!ffmpeg) return 0; - init = dlsym(ffmpeg, "dxr3_encoder_init"); + init = dlsym(ffmpeg, "dxr3.encoding.encoder_init"); if (!init) return 0; result = init(drv); diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index d12afb27a..47dd82b0f 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.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_dxr3.c,v 1.105 2004/11/24 16:11:02 mroi Exp $ + * $Id: video_out_dxr3.c,v 1.106 2004/12/12 22:01:04 mroi Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -257,17 +257,17 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v this->class = class; this->swap_fields = config->register_bool(config, - "dxr3.enc_swap_fields", 0, _("swap odd and even lines"), + "dxr3.encoding.swap_fields", 0, _("swap odd and even lines"), _("Swaps the even and odd field of the image.\nEnable this option for " "non-MPEG material which produces a vertical jitter on screen."), 10, dxr3_update_swap_fields, this); this->add_bars = config->register_bool(config, - "dxr3.enc_add_bars", 1, _("add black bars to correct aspect ratio"), + "dxr3.encoding.add_bars", 1, _("add black bars to correct aspect ratio"), _("Adds black bars when the image has an aspect ratio the card cannot " "handle natively. This is needed to maintain proper image proportions."), 20, dxr3_update_add_bars, this); this->enhanced_mode = config->register_bool(config, - "dxr3.enc_alt_play_mode", 1, + "dxr3.encoding.alt_play_mode", 1, _("use smooth play mode for mpeg encoder playback"), _("Enabling this option will utilise a smoother play mode for non-MPEG content."), 20, dxr3_update_enhanced_mode, this); @@ -326,7 +326,7 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v printf("none\n"); #endif if (encoder) { - encoder = config->register_enum(config, "dxr3.encoder", 0, + encoder = config->register_enum(config, "dxr3.encoding.encoder", 0, available_encoders, _("encoder for non mpeg content"), _("Content other than MPEG has to pass an additional reencoding stage, " "because the dxr3 handles only MPEG.\nDepending on what is supported by your xine, " @@ -378,7 +378,7 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v dxr3_set_property(&this->vo_driver, VO_PROP_SATURATION, 500); /* overlay or tvout? */ - confnum = config->register_enum(config, "dxr3.videoout_mode", 0, videoout_modes, + confnum = config->register_enum(config, "dxr3.output.mode", 0, videoout_modes, _("video output mode (TV or overlay)"), _("The way the DXR3 outputs the final video can be set here. The individual values are:\n\n" "letterboxed tv\n" @@ -426,18 +426,18 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v this->overlay_enabled = 1; this->tv_switchable = 1; this->widescreen_enabled = confnum - 2; - confstr = config->register_string(config, "dxr3.keycolor", "0x80a040", + confstr = config->register_string(config, "dxr3.output.keycolor", "0x80a040", _("overlay colorkey value"), _("Hexadecimal RGB value of the key color.\n" "You can try different values, if you experience windows becoming transparent " "when using DXR3 overlay mode."), 20, NULL, NULL); sscanf(confstr, "%x", &this->overlay.colorkey); - confstr = config->register_string(config, "dxr3.color_interval", "50.0", + confstr = config->register_string(config, "dxr3.output.keycolor_interval", "50.0", _("overlay colorkey tolerance"), _("A greater value widens the tolerance for " "the overlay keycolor.\nYou can try lower values, if you experience windows " "becoming transparent when using DXR3 overlay mode, but parts of the image borders may " "disappear when using a too low setting."), 20, NULL, NULL); sscanf(confstr, "%f", &this->overlay.color_interval); - this->overlay.shrink = config->register_num(config, "dxr3.shrink_overlay_area", 0, + this->overlay.shrink = config->register_num(config, "dxr3.output.shrink_overlay_area", 0, _("crop the overlay area at top and bottom"), _("Removes one pixel line from the top and bottom of the overlay. Enable this, if " "you see green lines at the top or bottom of the overlay."), 10, NULL, NULL); @@ -452,7 +452,7 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v } /* init tvmode */ - confnum = config->register_enum(config, "dxr3.preferred_tvmode", 3, tv_modes, + confnum = config->register_enum(config, "dxr3.output.tvmode", 3, tv_modes, _("preferred tv mode"), _("Selects the TV mode to be used by the DXR3. The values mean:\n\n" "ntsc: NTSC at 60Hz\npal: PAL at 50Hz\npal60: PAL at 60Hz\ndefault: keep the card's setting"), 0, NULL, NULL); |