summaryrefslogtreecommitdiff
path: root/src/libffmpeg/video_decoder.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-04-26 17:50:06 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-04-26 17:50:06 +0000
commite5568601c73d854a62c8de99a9df01f56dcfaf86 (patch)
treedf37c01b56eca1fee6724948b4c1643e15b00a72 /src/libffmpeg/video_decoder.c
parenta8f7b05b5a973374e539b1b263c88b43f270f4fb (diff)
downloadxine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.gz
xine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.bz2
help strings added for all remaining config entries (so I hope)
please everybody watch out for spelling (and other) errors CVS patchset: 6442 CVS date: 2004/04/26 17:50:06
Diffstat (limited to 'src/libffmpeg/video_decoder.c')
-rw-r--r--src/libffmpeg/video_decoder.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/libffmpeg/video_decoder.c b/src/libffmpeg/video_decoder.c
index 13606126e..88cee7ffa 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.14 2004/04/19 21:18:01 jstembridge Exp $
+ * $Id: video_decoder.c,v 1.15 2004/04/26 17:50:07 mroi Exp $
*
* xine video decoder plugin using ffmpeg
*
@@ -1209,8 +1209,14 @@ void *init_video_plugin (xine_t *xine, void *data) {
config = xine->config;
this->pp_quality = xine->config->register_range(config, "codec.ffmpeg_pp_quality", 3,
- 0, PP_QUALITY_MAX, _("ffmpeg mpeg-4 postprocessing quality"), NULL,
- 10, pp_quality_cb, this);
+ 0, PP_QUALITY_MAX,
+ _("MPEG-4 postprocessing quality"),
+ _("You can adjust the amount of post processing applied to MPEG-4 video.\n"
+ "Higher values result in better quality, but need more CPU. Lower values may "
+ "result in image defects like block artifacts. For high quality content, "
+ "too heavy post processing can actually make the image worse by blurring it "
+ "too much."),
+ 10, pp_quality_cb, this);
return this;
}