diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
commit | e5568601c73d854a62c8de99a9df01f56dcfaf86 (patch) | |
tree | df37c01b56eca1fee6724948b4c1643e15b00a72 /src/xine-utils/memcpy.c | |
parent | a8f7b05b5a973374e539b1b263c88b43f270f4fb (diff) | |
download | xine-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/xine-utils/memcpy.c')
-rw-r--r-- | src/xine-utils/memcpy.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 8353d6ba1..3d22dc8fa 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -477,8 +477,12 @@ void xine_probe_fast_memcpy(xine_t *xine) best = xine->config->register_enum (xine->config, "misc.memcpy_method", 0, memcpy_methods, - _("Memcopy method to use in xine for large data chunks."), - NULL, 20, update_fast_memcpy, (void *) xine); + _("memcopy method used by xine"), + _("The copying of large memory blocks is one of the most " + "expensive operations on todays computers. Therefore xine " + "provides various tuned methods to do this copying. " + "Usually, the best method is detected automatically."), + 20, update_fast_memcpy, (void *) xine); /* check if function is configured and valid for this machine */ if( best != 0 && |