Home
last modified time | relevance | path

Searched refs:junk_iconv (Results 1 – 10 of 10) sorted by relevance

/dports/audio/deadbeef/deadbeef-0.7.2/plugins/gme/
H A Dcgme.c292 if (deadbeef->junk_iconv (value, len, out, sizeof (out), "utf-8", "utf-8") >= 0) { in cgme_add_meta()
297 if (deadbeef->junk_iconv (value, len, out, sizeof (out), "iso8859-1", "utf-8") >= 0) { in cgme_add_meta()
302 if (deadbeef->junk_iconv (value, len, out, sizeof (out), "SHIFT-JIS", "utf-8") >= 0) { in cgme_add_meta()
/dports/audio/deadbeef/deadbeef-0.7.2/
H A Djunklib.h113 junk_iconv (const char *in, int inlen, char *out, int outlen, const char *cs_in, const char *cs_out…
H A Djunklib.c896 if (junk_iconv (str, size, out, sizeof (out), "shift-jis", UTF8_STR) >= 0) { in can_be_shift_jis()
965 if ((converted_sz = junk_iconv (str, sz, out, outlen, enc, UTF8_STR)) < 0) { in convstr_id3v2()
1004 int len = junk_iconv (str, sz, out, outsize, charset, UTF8_STR); in convstr_id3v1()
1169 int l = junk_iconv (meta, strlen (meta), temp, sizeof (temp), UTF8_STR, enc);\ in junk_id3v1_write2()
1273 int l = junk_iconv (meta, strlen (meta), temp, sizeof (temp), UTF8_STR, enc);\ in junk_id3v1_write()
1934 outlen = junk_iconv (value, inlen, out, bufsize, UTF8_STR, "cp1252"); in junk_id3v2_add_text_frame()
1936 outlen = junk_iconv (value, inlen, out+2, bufsize - 2, UTF8_STR, "UCS-2LE"); in junk_id3v2_add_text_frame()
2009 l = junk_iconv (input, (int)inputsize, buffer, (int)buffersize, UTF8_STR, "cp1252"); in junk_id3v2_add_comment_frame()
2129 res = junk_iconv (buffer, len, out, outsize, UTF8_STR, "iso8859-1"); in junk_id3v2_add_txxx_frame()
2131 res = junk_iconv (buffer, len, out+2, outsize - 2, UTF8_STR, "UCS-2LE"); in junk_id3v2_add_txxx_frame()
[all …]
H A Dplugins.c329 .junk_iconv = junk_iconv,
H A Ddeadbeef.h942 …int (*junk_iconv) (const char *in, int inlen, char *out, int outlen, const char *cs_in, const char… member
H A Dtf.c354 len = junk_iconv (temp_str, len, out, outlen, "utf-8", "ascii"); in tf_func_ascii()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/m3u/
H A Dm3u.c162 … if (deadbeef->junk_iconv (title, strlen (title), tmp, sizeof (tmp), cs, "utf-8") >= 0) { in load_m3u()
171 … if (deadbeef->junk_iconv (artist, strlen (artist), tmp, sizeof (tmp), cs, "utf-8") >= 0) { in load_m3u()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/sid/
H A Dcsid.cpp426 if (deadbeef->junk_iconv (str, sz, out, out_sz, cs, "utf-8") >= 0) { in convstr()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/dumb/
H A Dcdumb.c800 if (deadbeef->junk_iconv (str, sz, out, out_sz, cs, "utf-8") >= 0) { in convstr()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/mms/libmms/
H A Dmms.c576 int res = deadbeef->junk_iconv (ip, ip_len, op, ip_len * 2, "UTF-8", "UTF-16LE");