diff options
Diffstat (limited to 'src/dxr3/dxr3_mpeg_encoders.c')
-rw-r--r-- | src/dxr3/dxr3_mpeg_encoders.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/dxr3/dxr3_mpeg_encoders.c b/src/dxr3/dxr3_mpeg_encoders.c index 7ec432eeb..90df5031d 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.17 2004/01/04 22:26:29 mroi Exp $ + * $Id: dxr3_mpeg_encoders.c,v 1.18 2004/04/10 15:29:57 mroi Exp $ */ /* mpeg encoders for the dxr3 video out plugin. @@ -186,9 +186,9 @@ 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, - _("Dxr3enc: rte mpeg output bitrate (kbit/s)"), - _("The bitrate the mpeg encoder library librte should use for dxr3's encoding mode"), 10, - NULL, NULL); + _("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); this->rte_bitrate *= 1000; /* config in kbit/s, rte wants bit/s */ /* FIXME: this needs to be replaced with a codec option call. @@ -388,9 +388,10 @@ 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, - _("Dxr3enc: fame mpeg encoding quality"), - _("The encoding quality of the libfame mpeg encoder library."), 10, - NULL,NULL); + _("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."), + 10, NULL,NULL); #if LOG_ENC /* the really interesting bit is the quantizer scale. The formula * below is copied from libfame's sources (could be changed in the |