summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-01-27 13:58:31 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-01-27 13:58:31 +0100
commit7c166d8088e0a128a7b223c62fd2b8dc1a1b70c5 (patch)
tree5e9505ff244ed59bbd94991169ec147f2296e2b7 /src/xine-engine
parent18e80d661a68fe45fe808ec79ea039d14291f892 (diff)
downloadxine-lib-7c166d8088e0a128a7b223c62fd2b8dc1a1b70c5.tar.gz
xine-lib-7c166d8088e0a128a7b223c62fd2b8dc1a1b70c5.tar.bz2
Rename base64 functions to _x_ as they should not be part of the public API.
Note that these will be removed as soon as -libavutil branch is merged, in favour of libavutil's base64 implementation.
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/configfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c
index 8ac0e7eb3..37a4e38ad 100644
--- a/src/xine-engine/configfile.c
+++ b/src/xine-engine/configfile.c
@@ -1342,7 +1342,7 @@ static char* config_get_serialized_entry (config_values_t *this, const char *key
}
/* and now the output encoding */
- output = xine_base64_encode (buffer, total_len, &output_len);
+ output = _x_base64_encode (buffer, total_len, &output_len);
free(buffer);
}
@@ -1414,7 +1414,7 @@ static char* config_register_serialized_entry (config_values_t *this, const char
int value_count = 0;
int i;
- output = xine_base64_decode (value, strlen(value), &output_len);
+ output = _x_base64_decode (value, strlen(value), &output_len);
pos = 0;
pos += bytes = get_int(output, output_len, pos, &type);