summaryrefslogtreecommitdiff
path: root/src/libffmpeg
diff options
context:
space:
mode:
Diffstat (limited to 'src/libffmpeg')
-rw-r--r--src/libffmpeg/video_decoder.c4
-rw-r--r--src/libffmpeg/xine_encoder.c10
2 files changed, 7 insertions, 7 deletions
diff --git a/src/libffmpeg/video_decoder.c b/src/libffmpeg/video_decoder.c
index 3d29b5233..fd3715023 100644
--- a/src/libffmpeg/video_decoder.c
+++ b/src/libffmpeg/video_decoder.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_decoder.c,v 1.36 2004/12/08 21:41:46 miguelfreitas Exp $
+ * $Id: video_decoder.c,v 1.37 2004/12/12 22:01:08 mroi Exp $
*
* xine video decoder plugin using ffmpeg
*
@@ -1269,7 +1269,7 @@ void *init_video_plugin (xine_t *xine, void *data) {
* moment */
config = xine->config;
- this->pp_quality = xine->config->register_range(config, "codec.ffmpeg_pp_quality", 3,
+ this->pp_quality = xine->config->register_range(config, "video.processing.ffmpeg_pp_quality", 3,
0, PP_QUALITY_MAX,
_("MPEG-4 postprocessing quality"),
_("You can adjust the amount of post processing applied to MPEG-4 video.\n"
diff --git a/src/libffmpeg/xine_encoder.c b/src/libffmpeg/xine_encoder.c
index 7cae08590..55f5e22ac 100644
--- a/src/libffmpeg/xine_encoder.c
+++ b/src/libffmpeg/xine_encoder.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: xine_encoder.c,v 1.19 2004/09/12 19:23:37 mroi Exp $
+ * $Id: xine_encoder.c,v 1.20 2004/12/12 22:01:09 mroi Exp $
*/
/* mpeg encoders for the dxr3 video out plugin. */
@@ -160,7 +160,7 @@ static int lavc_on_update_format(dxr3_driver_t *drv, dxr3_frame_t *frame)
/* put sample parameters */
this->context->bit_rate = drv->class->xine->config->register_range(drv->class->xine->config,
- "dxr3.lavc_bitrate", 10000, 1000, 20000,
+ "dxr3.encoding.lavc_bitrate", 10000, 1000, 20000,
_("libavcodec mpeg output bitrate (kbit/s)"),
_("The bitrate the libavcodec mpeg encoder should use for DXR3's encoding mode. "
"Higher values will increase quality and CPU usage.\n"
@@ -168,7 +168,7 @@ static int lavc_on_update_format(dxr3_driver_t *drv, dxr3_frame_t *frame)
this->context->bit_rate *= 1000; /* config in kbit/s, libavcodec wants bit/s */
use_quantizer = drv->class->xine->config->register_bool(drv->class->xine->config,
- "dxr3.lavc_quantizer", 1,
+ "dxr3.encoding.lavc_quantizer", 1,
_("constant quality mode"),
_("When enabled, libavcodec will use a constant quality mode by dynamically "
"compressing the images based on their complexity. When disabled, libavcodec "
@@ -176,13 +176,13 @@ static int lavc_on_update_format(dxr3_driver_t *drv, dxr3_frame_t *frame)
if (use_quantizer) {
this->context->qmin = drv->class->xine->config->register_range(drv->class->xine->config,
- "dxr3.lavc_qmin", 1, 1, 10,
+ "dxr3.encoding.lavc_qmin", 1, 1, 10,
_("minimum compression"),
_("The minimum compression to apply to an image in constant quality mode."),
10, NULL, NULL);
this->context->qmax = drv->class->xine->config->register_range(drv->class->xine->config,
- "dxr3.lavc_qmax", 2, 1, 20,
+ "dxr3.encoding.lavc_qmax", 2, 1, 20,
_("maximum quantizer"),
_("The maximum compression to apply to an image in constant quality mode."),
10, NULL, NULL);