diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-12 22:00:47 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-12 22:00:47 +0000 |
commit | 16b6f9646902e6940a991f1d3577c068573015a8 (patch) | |
tree | 05401271b5a9a81668a00ddb079d3db259e4bcee /src/xine-utils/memcpy.c | |
parent | ec4c867b1a59029166c5efc025966f7886f15c61 (diff) | |
download | xine-lib-16b6f9646902e6940a991f1d3577c068573015a8.tar.gz xine-lib-16b6f9646902e6940a991f1d3577c068573015a8.tar.bz2 |
huge patch ahead: reorganizing config entries with automatic conversion
and backwards compatible translation
Sorry, I got a litte tired proof-reading the patch, so their might be
bugs lurking around. I will give it some further examination and
(as necessary) fixing tomorrow.
CVS patchset: 7233
CVS date: 2004/12/12 22:00:47
Diffstat (limited to 'src/xine-utils/memcpy.c')
-rw-r--r-- | src/xine-utils/memcpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 79a74c9d5..c90322848 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -476,7 +476,7 @@ void xine_probe_fast_memcpy(xine_t *xine) config_flags = xine_mm_accel(); - best = xine->config->register_enum (xine->config, "misc.memcpy_method", 0, + best = xine->config->register_enum (xine->config, "engine.performance.memcpy_method", 0, memcpy_methods, _("memcopy method used by xine"), _("The copying of large memory blocks is one of the most " @@ -532,7 +532,7 @@ void xine_probe_fast_memcpy(xine_t *xine) best = i; } - xine->config->update_num (xine->config, "misc.memcpy_method", best); + xine->config->update_num (xine->config, "engine.performance.memcpy_method", best); free(buf1); free(buf2); |