summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn van Beurden <mvanb1@gmail.com>2022-10-06 16:41:40 +0200
committerGitHub <noreply@github.com>2022-10-06 16:41:40 +0200
commit8fbeff238c41464fe220cd23c45861c9302d1172 (patch)
tree2a031739d4ac35d1ddc1f9ec669f23e81d33861f
parent2440e19a733f045e50cd7f3dbd706b9ed98fc5ef (diff)
downloadflac-8fbeff238c41464fe220cd23c45861c9302d1172.tar.gz
Remove xmms plugin
-rw-r--r--config.cmake.h.in3
-rw-r--r--configure.ac29
-rw-r--r--m4/Makefile.am3
-rw-r--r--m4/xmms.m4148
-rw-r--r--src/CMakeLists.txt5
-rw-r--r--src/Makefile.am5
-rw-r--r--src/plugin_common/CMakeLists.txt8
-rw-r--r--src/plugin_common/Makefile.am39
-rw-r--r--src/plugin_common/README2
-rw-r--r--src/plugin_common/all.h27
-rw-r--r--src/plugin_common/charset.c158
-rw-r--r--src/plugin_common/charset.h40
-rw-r--r--src/plugin_common/defs.h25
-rw-r--r--src/plugin_common/dither.c263
-rw-r--r--src/plugin_common/dither.h30
-rw-r--r--src/plugin_common/replaygain.c65
-rw-r--r--src/plugin_common/replaygain.h33
-rw-r--r--src/plugin_common/tags.c359
-rw-r--r--src/plugin_common/tags.h75
-rw-r--r--src/plugin_xmms/CMakeLists.txt8
-rw-r--r--src/plugin_xmms/Makefile.am66
-rw-r--r--src/plugin_xmms/charset.c200
-rw-r--r--src/plugin_xmms/charset.h56
-rw-r--r--src/plugin_xmms/configure.c825
-rw-r--r--src/plugin_xmms/configure.h77
-rw-r--r--src/plugin_xmms/fileinfo.c495
-rw-r--r--src/plugin_xmms/http.c899
-rw-r--r--src/plugin_xmms/http.h26
-rw-r--r--src/plugin_xmms/locale_hack.h56
-rw-r--r--src/plugin_xmms/plugin.c688
-rw-r--r--src/plugin_xmms/plugin.h33
-rw-r--r--src/plugin_xmms/tag.c157
-rw-r--r--src/plugin_xmms/tag.h24
33 files changed, 3 insertions, 4924 deletions
diff --git a/config.cmake.h.in b/config.cmake.h.in
index 32da7005..1f2387c2 100644
--- a/config.cmake.h.in
+++ b/config.cmake.h.in
@@ -109,9 +109,6 @@
/* Define to 1 if you have the <memory.h> header file. */
#cmakedefine HAVE_MEMORY_H
-/* Define to 1 if the system has the type `socklen_t'. */
-#cmakedefine HAVE_SOCKLEN_T
-
/* Define to 1 if you have the <stdint.h> header file. */
#cmakedefine HAVE_STDINT_H
diff --git a/configure.ac b/configure.ac
index 631cf7a7..48bb9511 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,6 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
+# Copyright (C) 2001-2009 Josh Coalson
+# Copyright (C) 2011-2022 Xiph.Org Foundation
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under different licenses. The codec libraries
@@ -87,9 +88,6 @@ AC_DEFINE(FLAC__NO_ASM)
AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
fi
-# For the XMMS plugin.
-AC_CHECK_TYPES(socklen_t, [], [])
-
dnl check for getauxval in standard library
AC_CHECK_FUNCS(getauxval)
@@ -380,27 +378,6 @@ if test ! -n "$DOXYGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/do
fi
AM_CONDITIONAL(FLaC__HAS_PREBUILT_DOXYGEN, test "x$HAS_PREBUILT_DOXYGEN" = xyes)
-AC_ARG_ENABLE(local-xmms-plugin,
-AS_HELP_STRING([--enable-local-xmms-plugin],[Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
-[case "${enableval}" in
- yes) install_xmms_plugin_locally=true ;;
- no) install_xmms_plugin_locally=false ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
-esac],[install_xmms_plugin_locally=false])
-AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
-
-AC_ARG_ENABLE(xmms-plugin,
-AS_HELP_STRING([--disable-xmms-plugin],[Do not build XMMS plugin]),
-[case "${enableval}" in
- yes) enable_xmms_plugin=true ;;
- no) enable_xmms_plugin=false ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
-esac],[enable_xmms_plugin=true])
-if test "x$enable_xmms_plugin" != xfalse ; then
- AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
-fi
-AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
-
dnl build FLAC++ or not
AC_ARG_ENABLE([cpplibs],
AS_HELP_STRING([--disable-cpplibs],[Do not build libFLAC++]),
@@ -635,8 +612,6 @@ AC_CONFIG_FILES([ \
src/libFLAC++/flac++.pc \
src/flac/Makefile \
src/metaflac/Makefile \
- src/plugin_common/Makefile \
- src/plugin_xmms/Makefile \
src/share/Makefile \
src/test_grabbag/Makefile \
src/test_grabbag/cuesheet/Makefile \
diff --git a/m4/Makefile.am b/m4/Makefile.am
index a6b72f5b..c888fc59 100644
--- a/m4/Makefile.am
+++ b/m4/Makefile.am
@@ -23,5 +23,4 @@ EXTRA_DIST = \
endian.m4 \
gcc_version.m4 \
ogg.m4 \
- stack_protect.m4 \
- xmms.m4
+ stack_protect.m4
diff --git a/m4/xmms.m4 b/m4/xmms.m4
deleted file mode 100644
index d1720959..00000000
--- a/m4/xmms.m4
+++ /dev/null
@@ -1,148 +0,0 @@
-# CFLAGS and library paths for XMMS
-# written 15 December 1999 by Ben Gertzfield <che@debian.org>
-
-dnl Usage:
-dnl AM_PATH_XMMS([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
-dnl
-dnl Example:
-dnl AM_PATH_XMMS(0.9.5.1, , AC_MSG_ERROR([*** XMMS >= 0.9.5.1 not installed - please install first ***]))
-dnl
-dnl Defines XMMS_CFLAGS, XMMS_LIBS, XMMS_DATA_DIR, XMMS_PLUGIN_DIR,
-dnl XMMS_VISUALIZATION_PLUGIN_DIR, XMMS_INPUT_PLUGIN_DIR,
-dnl XMMS_OUTPUT_PLUGIN_DIR, XMMS_GENERAL_PLUGIN_DIR, XMMS_EFFECT_PLUGIN_DIR,
-dnl and XMMS_VERSION for your plugin pleasure.
-dnl
-
-dnl XMMS_TEST_VERSION(AVAILABLE-VERSION, NEEDED-VERSION [, ACTION-IF-OKAY [, ACTION-IF-NOT-OKAY]])
-AC_DEFUN([XMMS_TEST_VERSION], [
-
-# Determine which version number is greater. Prints 2 to stdout if
-# the second number is greater, 1 if the first number is greater,
-# 0 if the numbers are equal.
-
-# Written 15 December 1999 by Ben Gertzfield <che@debian.org>
-# Revised 15 December 1999 by Jim Monty <monty@primenet.com>
-
- AC_PROG_AWK
- xmms_got_version=[` $AWK ' \
-BEGIN { \
- print vercmp(ARGV[1], ARGV[2]); \
-} \
- \
-function vercmp(ver1, ver2, ver1arr, ver2arr, \
- ver1len, ver2len, \
- ver1int, ver2int, len, i, p) { \
- \
- ver1len = split(ver1, ver1arr, /\./); \
- ver2len = split(ver2, ver2arr, /\./); \
- \
- len = ver1len > ver2len ? ver1len : ver2len; \
- \
- for (i = 1; i <= len; i++) { \
- p = 1000 ^ (len - i); \
- ver1int += ver1arr[i] * p; \
- ver2int += ver2arr[i] * p; \
- } \
- \
- if (ver1int < ver2int) \
- return 2; \
- else if (ver1int > ver2int) \
- return 1; \
- else \
- return 0; \
-}' $1 $2`]
-
- if test $xmms_got_version -eq 2; then # failure
- ifelse([$4], , :, $4)
- else # success!
- ifelse([$3], , :, $3)
- fi
-])
-
-AC_DEFUN([AM_PATH_XMMS],
-[
-AC_ARG_WITH(xmms-prefix,[ --with-xmms-prefix=PFX Prefix where XMMS is installed (optional)],
- xmms_config_prefix="$withval", xmms_config_prefix="")
-AC_ARG_WITH(xmms-exec-prefix,[ --with-xmms-exec-prefix=PFX Exec prefix where XMMS is installed (optional)],
- xmms_config_exec_prefix="$withval", xmms_config_exec_prefix="")
-
-if test x$xmms_config_exec_prefix != x; then
- xmms_config_args="$xmms_config_args --exec-prefix=$xmms_config_exec_prefix"
- if test x${XMMS_CONFIG+set} != xset; then
- XMMS_CONFIG=$xmms_config_exec_prefix/bin/xmms-config
- fi
-fi
-
-if test x$xmms_config_prefix != x; then
- xmms_config_args="$xmms_config_args --prefix=$xmms_config_prefix"
- if test x${XMMS_CONFIG+set} != xset; then
- XMMS_CONFIG=$xmms_config_prefix/bin/xmms-config
- fi
-fi
-
-AC_PATH_PROG(XMMS_CONFIG, xmms-config, no)
-min_xmms_version=ifelse([$1], ,0.9.5.1, $1)
-
-if test "$XMMS_CONFIG" = "no"; then
- no_xmms=yes
-else
- XMMS_CFLAGS=`$XMMS_CONFIG $xmms_config_args --cflags`
- XMMS_LIBS=`$XMMS_CONFIG $xmms_config_args --libs`
- XMMS_VERSION=`$XMMS_CONFIG $xmms_config_args --version`
- XMMS_DATA_DIR=`$XMMS_CONFIG $xmms_config_args --data-dir`
- XMMS_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --plugin-dir`
- XMMS_VISUALIZATION_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args \
- --visualization-plugin-dir`
- XMMS_INPUT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --input-plugin-dir`
- XMMS_OUTPUT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --output-plugin-dir`
- XMMS_EFFECT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --effect-plugin-dir`
- XMMS_GENERAL_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --general-plugin-dir`
-
- XMMS_TEST_VERSION($XMMS_VERSION, $min_xmms_version, ,no_xmms=version)
-fi
-
-AC_MSG_CHECKING(for XMMS - version >= $min_xmms_version)
-
-if test "x$no_xmms" = x; then
- AC_MSG_RESULT(yes)
- ifelse([$2], , :, [$2])
-else
- AC_MSG_RESULT(no)
-
- if test "$XMMS_CONFIG" = "no" ; then
- echo "*** The xmms-config script installed by XMMS could not be found."
- echo "*** If XMMS was installed in PREFIX, make sure PREFIX/bin is in"
- echo "*** your path, or set the XMMS_CONFIG environment variable to the"
- echo "*** full path to xmms-config."
- else
- if test "$no_xmms" = "version"; then
- echo "*** An old version of XMMS, $XMMS_VERSION, was found."
- echo "*** You need a version of XMMS newer than $min_xmms_version."
- echo "*** The latest version of XMMS is always available from"
- echo "*** http://www.xmms.org/"
- echo "***"
-
- echo "*** If you have already installed a sufficiently new version, this error"
- echo "*** probably means that the wrong copy of the xmms-config shell script is"
- echo "*** being found. The easiest way to fix this is to remove the old version"
- echo "*** of XMMS, but you can also set the XMMS_CONFIG environment to point to the"
- echo "*** correct copy of xmms-config. (In this case, you will have to"
- echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf"
- echo "*** so that the correct libraries are found at run-time)"
- fi
- fi
- XMMS_CFLAGS=""
- XMMS_LIBS=""
- ifelse([$3], , :, [$3])
-fi
-AC_SUBST(XMMS_CFLAGS)
-AC_SUBST(XMMS_LIBS)
-AC_SUBST(XMMS_VERSION)
-AC_SUBST(XMMS_DATA_DIR)
-AC_SUBST(XMMS_PLUGIN_DIR)
-AC_SUBST(XMMS_VISUALIZATION_PLUGIN_DIR)
-AC_SUBST(XMMS_INPUT_PLUGIN_DIR)
-AC_SUBST(XMMS_OUTPUT_PLUGIN_DIR)
-AC_SUBST(XMMS_GENERAL_PLUGIN_DIR)
-AC_SUBST(XMMS_EFFECT_PLUGIN_DIR)
-])
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index bde3647b..97e397aa 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.11)
option(ENABLE_64_BIT_WORDS "Set FLAC__BYTES_PER_WORD to 8 (4 is the default)" OFF)
-option(WITH_XMMS "Build XMMS plugin" OFF)
option(BUILD_UTILS "Build utils" OFF)
add_subdirectory("libFLAC")
@@ -25,10 +24,6 @@ if(BUILD_UTILS)
endif()
endif()
-if(WITH_XMMS)
- add_subdirectory("plugin_common")
- add_subdirectory("plugin_xmms")
-endif()
if(BUILD_TESTING)
add_subdirectory("test_libs_common")
add_subdirectory("test_libFLAC")
diff --git a/src/Makefile.am b/src/Makefile.am
index 703cfa16..c46a94fc 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -16,10 +16,6 @@
# restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution.
-if FLaC__HAS_XMMS
-XMMS_DIRS = plugin_common plugin_xmms
-endif
-
if FLaC__WITH_CPPLIBS
CPPLIBS_DIRS = libFLAC++ test_libFLAC++
endif
@@ -32,7 +28,6 @@ SUBDIRS = \
libFLAC \
share \
$(PROGRAMS_DIRS) \
- $(XMMS_DIRS) \
test_grabbag \
test_libs_common \
test_libFLAC \
diff --git a/src/plugin_common/CMakeLists.txt b/src/plugin_common/CMakeLists.txt
deleted file mode 100644
index e5e6d849..00000000
--- a/src/plugin_common/CMakeLists.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-cmake_minimum_required(VERSION 3.12)
-
-add_library(plugin_common STATIC
- charset.c
- dither.c
- replaygain.c
- tags.c)
-target_link_libraries(plugin_common PUBLIC $<TARGET_NAME_IF_EXISTS:Iconv::Iconv>)
diff --git a/src/plugin_common/Makefile.am b/src/plugin_common/Makefile.am
deleted file mode 100644
index 299cb2fc..00000000
--- a/src/plugin_common/Makefile.am
+++ /dev/null
@@ -1,39 +0,0 @@
-# plugin_common - Routines common to several plugins
-# Copyright (C) 2002-2009 Josh Coalson
-# Copyright (C) 2011-2022 Xiph.Org Foundation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
-
-noinst_LTLIBRARIES = libplugin_common.la
-
-noinst_HEADERS = \
- all.h \
- charset.h \
- defs.h \
- dither.h \
- replaygain.h \
- tags.h
-
-libplugin_common_la_SOURCES = \
- charset.c \
- dither.c \
- replaygain.c \
- tags.c
-
-EXTRA_DIST = \
- CMakeLists.txt \
- README
diff --git a/src/plugin_common/README b/src/plugin_common/README
deleted file mode 100644
index 5a335261..00000000
--- a/src/plugin_common/README
+++ /dev/null
@@ -1,2 +0,0 @@
-This directory contains a convenience library of routines that are
-common to the plugins.
diff --git a/src/plugin_common/all.h b/src/plugin_common/all.h
deleted file mode 100644
index b12c00ba..00000000
--- a/src/plugin_common/all.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef FLAC__PLUGIN_COMMON__ALL_H
-#define FLAC__PLUGIN_COMMON__ALL_H
-
-#include "charset.h"
-#include "dither.h"
-#include "tags.h"
-
-#endif
diff --git a/src/plugin_common/charset.c b/src/plugin_common/charset.c
deleted file mode 100644
index bb245637..00000000
--- a/src/plugin_common/charset.c
+++ /dev/null
@@ -1,158 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * Only slightly modified charset.c from:
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 1999-2001 Håvard Kvålen <havardk@xmms.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-
-#ifdef HAVE_ICONV
-#include <iconv.h>
-#endif
-
-#ifdef HAVE_LANGINFO_CODESET
-#include <langinfo.h>
-#endif
-
-#include "charset.h"
-
-
-/*************
- * Functions *
- *************/
-
-char* FLAC_plugin__charset_get_current (void)
-{
- char *charset = getenv("CHARSET");
-
-#ifdef HAVE_LANGINFO_CODESET
- if (!charset)
- charset = nl_langinfo(CODESET);
-#endif
- if (!charset)
- charset = "ISO-8859-1";
-
- return charset;
-}
-
-
-#ifdef HAVE_ICONV
-char* FLAC_plugin__charset_convert_string (const char *string, char *from, char *to)
-{
- size_t outleft, outsize, length;
- iconv_t cd;
- char *out, *outptr;
- const char *input = string;
-
- if (!string)
- return NULL;
-
- length = strlen(string);
-
- if ((cd = iconv_open(to, from)) == (iconv_t)-1)
- {
-#ifndef NDEBUG
- fprintf(stderr, "convert_string(): Conversion not supported. Charsets: %s -> %s", from, to);
-#endif
- return strdup(string);
- }
-
- /* Due to a GLIBC bug, round outbuf_size up to a multiple of 4 */
- /* + 1 for nul in case len == 1 */
- outsize = ((length + 3) & ~3) + 1;
- if(outsize < length) /* overflow check */
- return NULL;
- out = malloc(outsize);
- outleft = outsize - 1;
- outptr = out;
-
-retry:
- if (iconv(cd, (char**)&input, &length, &outptr, &outleft) == (size_t)(-1))
- {
- int used;
- switch (errno)
- {
- case E2BIG:
- used = outptr - out;
- if((outsize - 1) * 2 + 1 <= outsize) { /* overflow check */
- free(out);
- return NULL;
- }
- outsize = (outsize - 1) * 2 + 1;
- out = realloc(out, outsize);
- outptr = out + used;
- outleft = outsize - 1 - used;
- goto retry;
- case EINVAL:
- break;
- case EILSEQ:
- /* Invalid sequence, try to get the rest of the string */
- input++;
- length = strlen(input);
- goto retry;
- default:
-#ifndef NDEBUG
- fprintf(stderr, "convert_string(): Conversion failed. Inputstring: %s; Error: %s", string, strerror(errno));
-#endif
- break;
- }
- }
- *outptr = '\0';
-
- iconv_close(cd);
- return out;
-}
-#else
-char* FLAC_plugin__charset_convert_string (const char *string, char *from, char *to)
-{
- (void)from, (void)to;
- if (!string)
- return NULL;
- return strdup(string);
-}
-#endif
-
-#ifdef HAVE_ICONV
-int FLAC_plugin__charset_test_conversion (char *from, char *to)
-{
- iconv_t cd;
-
- if ((cd=iconv_open(to,from)) == (iconv_t)-1)
- {
- /* Conversion not supported */
- return 0;
- }
- iconv_close(cd);
- return 1;
-}
-#else
-int FLAC_plugin__charset_test_conversion (char *from, char *to)
-{
- (void)from, (void)to;
- return 1;
-}
-#endif
diff --git a/src/plugin_common/charset.h b/src/plugin_common/charset.h
deleted file mode 100644
index 6551a4b5..00000000
--- a/src/plugin_common/charset.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * Only slightly modified charset.h from:
- * charset.h - 2001/12/04
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 1999-2001 Håvard Kvålen <havardk@xmms.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * with this program; if not, write to the Free Software Foundation, Inc.,
- */
-
-
-#ifndef FLAC__PLUGIN_COMMON__CHARSET_H
-#define FLAC__PLUGIN_COMMON__CHARSET_H
-
-
-/**************
- * Prototypes *
- **************/
-
-char *FLAC_plugin__charset_get_current(void);
-char *FLAC_plugin__charset_convert_string(const char *string, char *from, char *to);
-
-/* returns 1 for success, 0 for failure or no iconv */
-int FLAC_plugin__charset_test_conversion(char *from, char *to);
-
-#endif
diff --git a/src/plugin_common/defs.h b/src/plugin_common/defs.h
deleted file mode 100644
index bb382791..00000000
--- a/src/plugin_common/defs.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef FLAC__PLUGIN_COMMON__DEFS_H
-#define FLAC__PLUGIN_COMMON__DEFS_H
-
-#define FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS 2
-
-#endif
diff --git a/src/plugin_common/dither.c b/src/plugin_common/dither.c
deleted file mode 100644
index 9d120b42..00000000
--- a/src/plugin_common/dither.c
+++ /dev/null
@@ -1,263 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * dithering routine derived from (other GPLed source):
- * mad - MPEG audio decoder
- * Copyright (C) 2000-2001 Robert Leslie
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "dither.h"
-#include "FLAC/assert.h"
-
-#ifdef max
-#undef max
-#endif
-#define max(a,b) ((a)>(b)?(a):(b))
-
-#ifndef FLaC__INLINE
-#define FLaC__INLINE
-#endif
-
-
-/* 32-bit pseudo-random number generator
- *
- * @@@ According to Miroslav, this one is poor quality, the one from the
- * @@@ original replaygain code is much better
- */
-static FLaC__INLINE FLAC__uint32 prng(FLAC__uint32 state)
-{
- return (state * 0x0019660dL + 0x3c6ef35fL) & 0xffffffffL;
-}
-
-/* dither routine derived from MAD winamp plugin */
-
-typedef struct {
- FLAC__int32 error[3];
- FLAC__int32 random;
-} dither_state;
-
-static FLAC__int32 linear_dither(uint32_t source_bps, uint32_t target_bps, FLAC__int32 sample, dither_state *dither, const FLAC__int32 MIN, const FLAC__int32 MAX)
-{
- uint32_t scalebits;
- FLAC__int32 output, mask, random;
-
- FLAC__ASSERT(source_bps < 32);
- FLAC__ASSERT(target_bps <= 24);
- FLAC__ASSERT(target_bps <= source_bps);
-
- /* noise shape */
- sample += dither->error[0] - dither->error[1] + dither->error[2];
-
- dither->error[2] = dither->error[1];
- dither->error[1] = dither->error[0] / 2;
-
- /* bias */
- output = sample + (1L << (source_bps - target_bps - 1));
-
- scalebits = source_bps - target_bps;
- mask = (1L << scalebits) - 1;
-
- /* dither */
- random = (FLAC__int32)prng(dither->random);
- output += (random & mask) - (dither->random & mask);
-
- dither->random = random;
-
- /* clip */
- if(output > MAX) {
- output = MAX;
-
- if(sample > MAX)
- sample = MAX;
- }
- else if(output < MIN) {
- output = MIN;
-
- if(sample < MIN)
- sample = MIN;
- }
-
- /* quantize */
- output &= ~mask;
-
- /* error feedback */
- dither->error[0] = sample - output;
-
- /* scale */
- return output >> scalebits;
-}
-
-size_t FLAC__plugin_common__pack_pcm_signed_big_endian(FLAC__byte *data, const FLAC__int32 * const input[], uint32_t wide_samples, uint32_t channels, uint32_t source_bps, uint32_t target_bps)
-{
- static dither_state dither[FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS];
- FLAC__byte * const start = data;
- FLAC__int32 sample;
- const FLAC__int32 *input_;
- uint32_t samples, channel;
- const uint32_t bytes_per_sample = target_bps / 8;
- const uint32_t incr = bytes_per_sample * channels;
-
- FLAC__ASSERT(channels > 0 && channels <= FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS);
- FLAC__ASSERT(source_bps < 32);
- FLAC__ASSERT(target_bps <= 24);
- FLAC__ASSERT(target_bps <= source_bps);
- FLAC__ASSERT((source_bps & 7) == 0);
- FLAC__ASSERT((target_bps & 7) == 0);
-
- if(source_bps != target_bps) {
- const FLAC__int32 MIN = -(1L << (source_bps - 1));
- const FLAC__int32 MAX = ~MIN; /*(1L << (source_bps-1)) - 1 */
-
- for(channel = 0; channel < channels; channel++) {
-
- samples = wide_samples;
- data = start + bytes_per_sample * channel;
- input_ = input[channel];
-
- while(samples--) {
- sample = linear_dither(source_bps, target_bps, *input_++, &dither[channel], MIN, MAX);
-
- switch(target_bps) {
- case 8:
- data[0] = sample ^ 0x80;
- break;
- case 16:
- data[0] = (FLAC__byte)(sample >> 8);
- data[1] = (FLAC__byte)sample;
- break;
- case 24:
- data[0] = (FLAC__byte)(sample >> 16);
- data[1] = (FLAC__byte)(sample >> 8);
- data[2] = (FLAC__byte)sample;
- break;
- }
-
- data += incr;
- }
- }
- }
- else {
- for(channel = 0; channel < channels; channel++) {
- samples = wide_samples;
- data = start + bytes_per_sample * channel;
- input_ = input[channel];
-
- while(samples--) {
- sample = *input_++;
-
- switch(target_bps) {
- case 8:
- data[0] = sample ^ 0x80;
- break;
- case 16:
- data[0] = (FLAC__byte)(sample >> 8);
- data[1] = (FLAC__byte)sample;
- break;
- case 24:
- data[0] = (FLAC__byte)(sample >> 16);
- data[1] = (FLAC__byte)(sample >> 8);
- data[2] = (FLAC__byte)sample;
- break;
- }
-
- data += incr;
- }
- }
- }
-
- return wide_samples * channels * (target_bps/8);
-}
-
-size_t FLAC__plugin_common__pack_pcm_signed_little_endian(FLAC__byte *data, const FLAC__int32 * const input[], uint32_t wide_samples, uint32_t channels, uint32_t source_bps, uint32_t target_bps)
-{
- static dither_state dither[FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS];
- FLAC__byte * const start = data;
- FLAC__int32 sample;
- const FLAC__int32 *input_;
- uint32_t samples, channel;
- const uint32_t bytes_per_sample = target_bps / 8;
- const uint32_t incr = bytes_per_sample * channels;
-
- FLAC__ASSERT(channels > 0 && channels <= FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS);
- FLAC__ASSERT(source_bps < 32);
- FLAC__ASSERT(target_bps <= 24);
- FLAC__ASSERT(target_bps <= source_bps);
- FLAC__ASSERT((source_bps & 7) == 0);
- FLAC__ASSERT((target_bps & 7) == 0);
-
- if(source_bps != target_bps) {
- const FLAC__int32 MIN = -(1L << (source_bps - 1));
- const FLAC__int32 MAX = ~MIN; /*(1L << (source_bps-1)) - 1 */
-
- for(channel = 0; channel < channels; channel++) {
-
- samples = wide_samples;
- data = start + bytes_per_sample * channel;
- input_ = input[channel];
-
- while(samples--) {
- sample = linear_dither(source_bps, target_bps, *input_++, &dither[channel], MIN, MAX);
-
- switch(target_bps) {
- case 8:
- data[0] = sample ^ 0x80;
- break;
- case 24:
- data[2] = (FLAC__byte)(sample >> 16);
- /* fall through */
- case 16:
- data[1] = (FLAC__byte)(sample >> 8);
- data[0] = (FLAC__byte)sample;
- }
-
- data += incr;
- }
- }
- }
- else {
- for(channel = 0; channel < channels; channel++) {
- samples = wide_samples;
- data = start + bytes_per_sample * channel;
- input_ = input[channel];
-
- while(samples--) {
- sample = *input_++;
-
- switch(target_bps) {
- case 8:
- data[0] = sample ^ 0x80;
- break;
- case 24:
- data[2] = (FLAC__byte)(sample >> 16);
- /* fall through */
- case 16:
- data[1] = (FLAC__byte)(sample >> 8);
- data[0] = (FLAC__byte)sample;
- }
-
- data += incr;
- }
- }
- }
-
- return wide_samples * channels * (target_bps/8);
-}
diff --git a/src/plugin_common/dither.h b/src/plugin_common/dither.h
deleted file mode 100644
index 73f29ebe..00000000
--- a/src/plugin_common/dither.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef FLAC__PLUGIN_COMMON__DITHER_H
-#define FLAC__PLUGIN_COMMON__DITHER_H
-
-#include <stdlib.h> /* for size_t */
-#include "defs.h" /* buy FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS for the caller */
-#include "FLAC/ordinals.h"
-
-size_t FLAC__plugin_common__pack_pcm_signed_big_endian(FLAC__byte *data, const FLAC__int32 * const input[], uint32_t wide_samples, uint32_t channels, uint32_t source_bps, uint32_t target_bps);
-size_t FLAC__plugin_common__pack_pcm_signed_little_endian(FLAC__byte *data, const FLAC__int32 * const input[], uint32_t wide_samples, uint32_t channels, uint32_t source_bps, uint32_t target_bps);
-
-#endif
diff --git a/src/plugin_common/replaygain.c b/src/plugin_common/replaygain.c
deleted file mode 100644
index 7c2f83bb..00000000
--- a/src/plugin_common/replaygain.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- * Copyright (C) 2003 Philip Jägenstedt
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "replaygain.h"
-#include "FLAC/ordinals.h"
-#include "FLAC/metadata.h"
-#include "share/grabbag.h"
-
-FLAC__bool FLAC_plugin__replaygain_get_from_file(const char *filename,
- double *reference, FLAC__bool *reference_set,
- double *track_gain, FLAC__bool *track_gain_set,
- double *album_gain, FLAC__bool *album_gain_set,
- double *track_peak, FLAC__bool *track_peak_set,
- double *album_peak, FLAC__bool *album_peak_set)
-{
- FLAC__Metadata_SimpleIterator *iterator = FLAC__metadata_simple_iterator_new();
- FLAC__bool ret = false;
-
- *track_gain_set = *album_gain_set = *track_peak_set = *album_peak_set = false;
-
- if(0 != iterator) {
- if(FLAC__metadata_simple_iterator_init(iterator, filename, /*read_only=*/true, /*preserve_file_stats=*/true)) {
- FLAC__bool got_vorbis_comments = false;
- ret = true;
- do {
- if(FLAC__metadata_simple_iterator_get_block_type(iterator) == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
- FLAC__StreamMetadata *block = FLAC__metadata_simple_iterator_get_block(iterator);
- if(0 != block) {
- if(grabbag__replaygain_load_from_vorbiscomment(block, /*album_mode=*/false, /*strict=*/true, reference, track_gain, track_peak)) {
- *reference_set = *track_gain_set = *track_peak_set = true;
- }
- if(grabbag__replaygain_load_from_vorbiscomment(block, /*album_mode=*/true, /*strict=*/true, reference, album_gain, album_peak)) {
- *reference_set = *album_gain_set = *album_peak_set = true;
- }
- FLAC__metadata_object_delete(block);
- got_vorbis_comments = true;
- }
- }
- } while (!got_vorbis_comments && FLAC__metadata_simple_iterator_next(iterator));
- }
- FLAC__metadata_simple_iterator_delete(iterator);
- }
- return ret;
-}
diff --git a/src/plugin_common/replaygain.h b/src/plugin_common/replaygain.h
deleted file mode 100644
index b168291d..00000000
--- a/src/plugin_common/replaygain.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- * Copyright (C) 2003 Philip Jägenstedt
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef FLAC__PLUGIN_COMMON__REPLAYGAIN_H
-#define FLAC__PLUGIN_COMMON__REPLAYGAIN_H
-
-#include "FLAC/ordinals.h"
-
-FLAC__bool FLAC_plugin__replaygain_get_from_file(const char *filename,
- double *reference, FLAC__bool *reference_set,
- double *track_gain, FLAC__bool *track_gain_set,
- double *album_gain, FLAC__bool *album_gain_set,
- double *track_peak, FLAC__bool *track_peak_set,
- double *album_peak, FLAC__bool *album_peak_set);
-
-#endif
diff --git a/src/plugin_common/tags.c b/src/plugin_common/tags.c
deleted file mode 100644
index ffd846b6..00000000
--- a/src/plugin_common/tags.c
+++ /dev/null
@@ -1,359 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
-#include "tags.h"
-#include "FLAC/assert.h"
-#include "FLAC/metadata.h"
-#include "share/alloc.h"
-
-#ifndef FLaC__INLINE
-#define FLaC__INLINE
-#endif
-
-
-static FLaC__INLINE size_t local__wide_strlen(const FLAC__uint16 *s)
-{
- size_t n = 0;
- while(*s++)
- n++;
- return n;
-}
-
-/*
- * also disallows non-shortest-form encodings, c.f.
- * http://www.unicode.org/versions/corrigendum1.html
- * and a more clear explanation at the end of this section:
- * http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- */
-static size_t local__utf8len(const FLAC__byte *utf8)
-{
- FLAC__ASSERT(0 != utf8);
- if ((utf8[0] & 0x80) == 0) {
- return 1;
- }
- else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80) {
- if ((utf8[0] & 0xFE) == 0xC0) /* overlong sequence check */
- return 0;
- return 2;
- }
- else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80) {
- if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check */
- return 0;
- /* illegal surrogates check (U+D800...U+DFFF and U+FFFE...U+FFFF) */
- if (utf8[0] == 0xED && (utf8[1] & 0xE0) == 0xA0) /* D800-DFFF */
- return 0;
- if (utf8[0] == 0xEF && utf8[1] == 0xBF && (utf8[2] & 0xFE) == 0xBE) /* FFFE-FFFF */
- return 0;
- return 3;
- }
- else if ((utf8[0] & 0xF8) == 0xF0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80) {
- if (utf8[0] == 0xF0 && (utf8[1] & 0xF0) == 0x80) /* overlong sequence check */
- return 0;
- return 4;
- }
- else if ((utf8[0] & 0xFC) == 0xF8 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80) {
- if (utf8[0] == 0xF8 && (utf8[1] & 0xF8) == 0x80) /* overlong sequence check */
- return 0;
- return 5;
- }
- else if ((utf8[0] & 0xFE) == 0xFC && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80 && (utf8[5] & 0xC0) == 0x80) {
- if (utf8[0] == 0xFC && (utf8[1] & 0xFC) == 0x80) /* overlong sequence check */
- return 0;
- return 6;
- }
- else {
- return 0;
- }
-}
-
-
-static size_t local__utf8_to_ucs2(const FLAC__byte *utf8, FLAC__uint16 *ucs2)
-{
- const size_t len = local__utf8len(utf8);
-
- FLAC__ASSERT(0 != ucs2);
-
- if (len == 1)
- *ucs2 = *utf8;
- else if (len == 2)
- *ucs2 = (*utf8 & 0x3F)<<6 | (*(utf8+1) & 0x3F);
- else if (len == 3)
- *ucs2 = (*utf8 & 0x1F)<<12 | (*(utf8+1) & 0x3F)<<6 | (*(utf8+2) & 0x3F);
- else
- *ucs2 = '?';
-
- return len;
-}
-
-static FLAC__uint16 *local__convert_utf8_to_ucs2(const char *src, uint32_t length)
-{
- FLAC__uint16 *out;
- size_t chars = 0;
-
- FLAC__ASSERT(0 != src);
-
- /* calculate length */
- {
- const uint8_t *s, *end;
- for (s=(const uint8_t *)src, end=s+length; s<end; chars++) {
- const uint32_t n = local__utf8len(s);
- if (n == 0)
- return 0;
- s += n;
- }
- FLAC__ASSERT(s == end);
- }
-
- /* allocate */
- out = safe_malloc_mul_2op_(chars, /*times*/sizeof(FLAC__uint16));
- if (0 == out) {
- FLAC__ASSERT(0);
- return 0;
- }
-
- /* convert */
- {
- const uint8_t *s = (const uint8_t *)src;
- FLAC__uint16 *u = out;
- for ( ; chars; chars--)
- s += local__utf8_to_ucs2(s, u++);
- }
-
- return out;
-}
-
-static FLaC__INLINE size_t local__ucs2len(FLAC__uint16 ucs2)
-{
- if (ucs2 < 0x0080)
- return 1;
- else if (ucs2 < 0x0800)
- return 2;
- else
- return 3;
-}
-
-static size_t local__ucs2_to_utf8(FLAC__uint16 ucs2, FLAC__byte *utf8)
-{
- if (ucs2 < 0x080) {
- utf8[0] = (FLAC__byte)ucs2;
- return 1;
- }
- else if (ucs2 < 0x800) {
- utf8[0] = 0xc0 | (ucs2 >> 6);
- utf8[1] = 0x80 | (ucs2 & 0x3f);
- return 2;
- }
- else {
- utf8[0] = 0xe0 | (ucs2 >> 12);
- utf8[1] = 0x80 | ((ucs2 >> 6) & 0x3f);
- utf8[2] = 0x80 | (ucs2 & 0x3f);
- return 3;
- }
-}
-
-static char *local__convert_ucs2_to_utf8(const FLAC__uint16 *src, uint32_t length)
-{
- char *out;
- size_t len = 0, n;
-
- FLAC__ASSERT(0 != src);
-
- /* calculate length */
- {
- uint32_t i;
- for (i = 0; i < length; i++) {
- n = local__ucs2len(src[i]);
- if(len + n < len) /* overflow check */
- return 0;
- len += n;
- }
- }
-
- /* allocate */
- out = safe_malloc_mul_2op_(len, /*times*/sizeof(char));
- if (0 == out)
- return 0;
-
- /* convert */
- {
- uint8_t *u = (uint8_t *)out;
- for ( ; *src; src++)
- u += local__ucs2_to_utf8(*src, u);
- local__ucs2_to_utf8(*src, u);
- }
-
- return out;
-}
-
-
-FLAC__bool FLAC_plugin__tags_get(const char *filename, FLAC__StreamMetadata **tags)
-{
- if(!FLAC__metadata_get_tags(filename, tags))
- if(0 == (*tags = FLAC__metadata_object_new(FLAC__METADATA_TYPE_VORBIS_COMMENT)))
- return false;
- return true;
-}
-
-FLAC__bool FLAC_plugin__tags_set(const char *filename, const FLAC__StreamMetadata *tags)
-{
- FLAC__Metadata_Chain *chain;
- FLAC__Metadata_Iterator *iterator;
- FLAC__StreamMetadata *block;
- FLAC__bool got_vorbis_comments = false;
- FLAC__bool ok;
-
- if(0 == (chain = FLAC__metadata_chain_new()))
- return false;
-
- if(!FLAC__metadata_chain_read(chain, filename)) {
- FLAC__metadata_chain_delete(chain);
- return false;
- }
-
- if(0 == (iterator = FLAC__metadata_iterator_new())) {
- FLAC__metadata_chain_delete(chain);
- return false;
- }
-
- FLAC__metadata_iterator_init(iterator, chain);
-
- do {
- if(FLAC__metadata_iterator_get_block_type(iterator) == FLAC__METADATA_TYPE_VORBIS_COMMENT)
- got_vorbis_comments = true;
- } while(!got_vorbis_comments && FLAC__metadata_iterator_next(iterator));
-
- if(0 == (block = FLAC__metadata_object_clone(tags))) {
- FLAC__metadata_chain_delete(chain);
- FLAC__metadata_iterator_delete(iterator);
- return false;
- }
-
- if(got_vorbis_comments)
- ok = FLAC__metadata_iterator_set_block(iterator, block);
- else
- ok = FLAC__metadata_iterator_insert_block_after(iterator, block);
-
- FLAC__metadata_iterator_delete(iterator);
-
- if(ok) {
- FLAC__metadata_chain_sort_padding(chain);
- ok = FLAC__metadata_chain_write(chain, /*use_padding=*/true, /*preserve_file_stats=*/true);
- }
-
- FLAC__metadata_chain_delete(chain);
-
- return ok;
-}
-
-void FLAC_plugin__tags_destroy(FLAC__StreamMetadata **tags)
-{
- FLAC__metadata_object_delete(*tags);
- *tags = 0;
-}
-
-const char *FLAC_plugin__tags_get_tag_utf8(const FLAC__StreamMetadata *tags, const char *name)
-{
- const int i = FLAC__metadata_object_vorbiscomment_find_entry_from(tags, /*offset=*/0, name);
- return (i < 0? 0 : strchr((const char *)tags->data.vorbis_comment.comments[i].entry, '=')+1);
-}
-
-FLAC__uint16 *FLAC_plugin__tags_get_tag_ucs2(const FLAC__StreamMetadata *tags, const char *name)
-{
- const char *utf8 = FLAC_plugin__tags_get_tag_utf8(tags, name);
- if(0 == utf8)
- return 0;
- return local__convert_utf8_to_ucs2(utf8, strlen(utf8)+1); /* +1 for terminating null */
-}
-
-int FLAC_plugin__tags_delete_tag(FLAC__StreamMetadata *tags, const char *name)
-{
- return FLAC__metadata_object_vorbiscomment_remove_entries_matching(tags, name);
-}
-
-int FLAC_plugin__tags_delete_all(FLAC__StreamMetadata *tags)
-{
- int n = (int)tags->data.vorbis_comment.num_comments;
- if(n > 0) {
- if(!FLAC__metadata_object_vorbiscomment_resize_comments(tags, 0))
- n = -1;
- }
- return n;
-}
-
-FLAC__bool FLAC_plugin__tags_add_tag_utf8(FLAC__StreamMetadata *tags, const char *name, const char *value, const char *separator)
-{
- int i;
-
- FLAC__ASSERT(0 != tags);
- FLAC__ASSERT(0 != name);
- FLAC__ASSERT(0 != value);
-
- if(separator && (i = FLAC__metadata_object_vorbiscomment_find_entry_from(tags, /*offset=*/0, name)) >= 0) {
- FLAC__StreamMetadata_VorbisComment_Entry *entry = tags->data.vorbis_comment.comments+i;
- const size_t value_len = strlen(value);
- const size_t separator_len = strlen(separator);
- FLAC__byte *new_entry;
- if(0 == (new_entry = safe_realloc_nofree_add_4op_(entry->entry, entry->length, /*+*/value_len, /*+*/separator_len, /*+*/1)))
- return false;
- memcpy(new_entry+entry->length, separator, separator_len);
- entry->length += separator_len;
- memcpy(new_entry+entry->length, value, value_len);
- entry->length += value_len;
- new_entry[entry->length] = '\0';
- entry->entry = new_entry;
- }
- else {
- FLAC__StreamMetadata_VorbisComment_Entry entry;
- if(!FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(&entry, name, value))
- return false;
- FLAC__metadata_object_vorbiscomment_append_comment(tags, entry, /*copy=*/false);
- }
- return true;
-}
-
-FLAC__bool FLAC_plugin__tags_set_tag_ucs2(FLAC__StreamMetadata *tags, const char *name, const FLAC__uint16 *value, FLAC__bool replace_all)
-{
- FLAC__StreamMetadata_VorbisComment_Entry entry;
-
- FLAC__ASSERT(0 != tags);
- FLAC__ASSERT(0 != name);
- FLAC__ASSERT(0 != value);
-
- {
- char *utf8 = local__convert_ucs2_to_utf8(value, local__wide_strlen(value)+1); /* +1 for the terminating null */
- if(0 == utf8)
- return false;
- if(!FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(&entry, name, utf8)) {
- free(utf8);
- return false;
- }
- free(utf8);
- }
- if(!FLAC__metadata_object_vorbiscomment_replace_comment(tags, entry, replace_all, /*copy=*/false))
- return false;
- return true;
-}
diff --git a/src/plugin_common/tags.h b/src/plugin_common/tags.h
deleted file mode 100644
index 30c0e799..00000000
--- a/src/plugin_common/tags.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/* plugin_common - Routines common to several plugins
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef FLAC__PLUGIN_COMMON__TAGS_H
-#define FLAC__PLUGIN_COMMON__TAGS_H
-
-#include "FLAC/format.h"
-
-FLAC__bool FLAC_plugin__tags_get(const char *filename, FLAC__StreamMetadata **tags);
-FLAC__bool FLAC_plugin__tags_set(const char *filename, const FLAC__StreamMetadata *tags);
-
-/*
- * Deletes the tags object and sets '*tags' to NULL.
- */
-void FLAC_plugin__tags_destroy(FLAC__StreamMetadata **tags);
-
-/*
- * Gets the value (in UTF-8) of the first tag with the given name (NULL if no
- * such tag exists).
- */
-const char *FLAC_plugin__tags_get_tag_utf8(const FLAC__StreamMetadata *tags, const char *name);
-
-/*
- * Gets the value (in UCS-2) of the first tag with the given name (NULL if no
- * such tag exists).
- *
- * NOTE: the returned string is malloc()ed and must be free()d by the caller.
- */
-FLAC__uint16 *FLAC_plugin__tags_get_tag_ucs2(const FLAC__StreamMetadata *tags, const char *name);
-
-/*
- * Removes all tags with the given 'name'. Returns the number of tags removed,
- * or -1 on memory allocation error.
- */
-int FLAC_plugin__tags_delete_tag(FLAC__StreamMetadata *tags, const char *name);
-
-/*
- * Removes all tags. Returns the number of tags removed, or -1 on memory
- * allocation error.
- */
-int FLAC_plugin__tags_delete_all(FLAC__StreamMetadata *tags);
-
-/*
- * Adds a "name=value" tag to the tags. 'value' must be in UTF-8. If
- * 'separator' is non-NULL and 'tags' already contains a tag for 'name', the
- * first such tag's value is appended with separator, then value.
- */
-FLAC__bool FLAC_plugin__tags_add_tag_utf8(FLAC__StreamMetadata *tags, const char *name, const char *value, const char *separator);
-
-/*
- * Adds a "name=value" tag to the tags. 'value' must be in UCS-2. If 'tags'
- * already contains a tag or tags for 'name', then they will be replaced
- * according to 'replace_all': if 'replace_all' is false, only the first such
- * tag will be replaced; if true, all matching tags will be replaced by the one
- * new tag.
- */
-FLAC__bool FLAC_plugin__tags_set_tag_ucs2(FLAC__StreamMetadata *tags, const char *name, const FLAC__uint16 *value, FLAC__bool replace_all);
-
-#endif
diff --git a/src/plugin_xmms/CMakeLists.txt b/src/plugin_xmms/CMakeLists.txt
deleted file mode 100644
index 3c4b716d..00000000
--- a/src/plugin_xmms/CMakeLists.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-add_library(xmms-flac STATIC
- charset.c
- configure.c
- fileinfo.c
- http.c
- plugin.c
- tag.c)
-target_link_libraries(xmms-flac plugin_common)
diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am
deleted file mode 100644
index eb5126ee..00000000
--- a/src/plugin_xmms/Makefile.am
+++ /dev/null
@@ -1,66 +0,0 @@
-# libxmms-flac - XMMS FLAC input plugin
-# Copyright (C) 2000-2009 Josh Coalson
-# Copyright (C) 2011-2022 Xiph.Org Foundation
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-#
-# GNU makefile
-#
-
-EXTRA_DIST = \
- CMakeLists.txt
-
-noinst_HEADERS = \
- charset.h \
- configure.h \
- http.h \
- locale_hack.h \
- plugin.h \
- tag.h
-
-AM_CFLAGS = @OGG_CFLAGS@ @XMMS_CFLAGS@
-AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -I$(top_srcdir)/src
-if FLaC__INSTALL_XMMS_PLUGIN_LOCALLY
-xmmsinputplugindir = $(HOME)/.xmms/Plugins
-else
-xmmsinputplugindir = @XMMS_INPUT_PLUGIN_DIR@
-endif
-
-xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
-
-plugin_sources = charset.c configure.c fileinfo.c http.c plugin.c tag.c
-
-libxmms_flac_la_SOURCES = $(plugin_sources)
-
-# work around the bug in libtool where its relinking fails with a different DESTDIR
-# for libtool bug info see:
-# http://mail.gnu.org/pipermail/bug-libtool/2002-February/003018.html
-# http://mail.gnu.org/pipermail/libtool/2002-April/006244.html
-# http://mail.gnu.org/pipermail/libtool/2002-April/006250.html
-# for fix info see:
-# http://lists.freshrpms.net/pipermail/rpm-list/2002-April/000746.html
-# the workaround is the extra '-L$(top_builddir)/src/libFLAC/.libs'
-libxmms_flac_la_LIBADD = \
- $(top_builddir)/src/plugin_common/libplugin_common.la \
- $(top_builddir)/src/share/grabbag/libgrabbag.la \
- $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \
- $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \
- $(top_builddir)/src/share/utf8/libutf8.la \
- $(top_builddir)/src/libFLAC/libFLAC.la \
- -L$(top_builddir)/src/libFLAC/.libs \
- @XMMS_LIBS@ \
- @LIBICONV@
-libxmms_flac_la_LDFLAGS = -module -avoid-version
diff --git a/src/plugin_xmms/charset.c b/src/plugin_xmms/charset.c
deleted file mode 100644
index aec00230..00000000
--- a/src/plugin_xmms/charset.c
+++ /dev/null
@@ -1,200 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * Almost from charset.c
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 1999-2001 Håvard Kvålen <havardk@xmms.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <stdlib.h>
-#include <glib.h>
-#include <string.h>
-#include <errno.h>
-
-#include "plugin_common/charset.h"
-#include "charset.h"
-#include "configure.h"
-#include "locale_hack.h"
-
-
-/****************
- * Declarations *
- ****************/
-
-#define CHARSET_TRANS_ARRAY_LEN ( sizeof(charset_trans_array) / sizeof((charset_trans_array)[0]) )
-const CharsetInfo charset_trans_array[] = {
- {N_("Arabic (IBM-864)"), "IBM864" },
- {N_("Arabic (ISO-8859-6)"), "ISO-8859-6" },
- {N_("Arabic (Windows-1256)"), "windows-1256" },
- {N_("Baltic (ISO-8859-13)"), "ISO-8859-13" },
- {N_("Baltic (ISO-8859-4)"), "ISO-8859-4" },
- {N_("Baltic (Windows-1257)"), "windows-1257" },
- {N_("Celtic (ISO-8859-14)"), "ISO-8859-14" },
- {N_("Central European (IBM-852)"), "IBM852" },
- {N_("Central European (ISO-8859-2)"), "ISO-8859-2" },
- {N_("Central European (Windows-1250)"), "windows-1250" },
- {N_("Chinese Simplified (GB18030)"), "gb18030" },
- {N_("Chinese Simplified (GB2312)"), "GB2312" },
- {N_("Chinese Traditional (Big5)"), "Big5" },
- {N_("Chinese Traditional (Big5-HKSCS)"), "Big5-HKSCS" },
- {N_("Cyrillic (IBM-855)"), "IBM855" },
- {N_("Cyrillic (ISO-8859-5)"), "ISO-8859-5" },
- {N_("Cyrillic (ISO-IR-111)"), "ISO-IR-111" },
- {N_("Cyrillic (KOI8-R)"), "KOI8-R" },
- {N_("Cyrillic (Windows-1251)"), "windows-1251" },
- {N_("Cyrillic/Russian (CP-866)"), "IBM866" },
- {N_("Cyrillic/Ukrainian (KOI8-U)"), "KOI8-U" },
- {N_("English (US-ASCII)"), "us-ascii" },
- {N_("Greek (ISO-8859-7)"), "ISO-8859-7" },
- {N_("Greek (Windows-1253)"), "windows-1253" },
- {N_("Hebrew (IBM-862)"), "IBM862" },
- {N_("Hebrew (Windows-1255)"), "windows-1255" },
- {N_("Japanese (EUC-JP)"), "EUC-JP" },
- {N_("Japanese (ISO-2022-JP)"), "ISO-2022-JP" },
- {N_("Japanese (Shift_JIS)"), "Shift_JIS" },
- {N_("Korean (EUC-KR)"), "EUC-KR" },
- {N_("Nordic (ISO-8859-10)"), "ISO-8859-10" },
- {N_("South European (ISO-8859-3)"), "ISO-8859-3" },
- {N_("Thai (TIS-620)"), "TIS-620" },
- {N_("Turkish (IBM-857)"), "IBM857" },
- {N_("Turkish (ISO-8859-9)"), "ISO-8859-9" },
- {N_("Turkish (Windows-1254)"), "windows-1254" },
- {N_("Unicode (UTF-7)"), "UTF-7" },
- {N_("Unicode (UTF-8)"), "UTF-8" },
- {N_("Unicode (UTF-16BE)"), "UTF-16BE" },
- {N_("Unicode (UTF-16LE)"), "UTF-16LE" },
- {N_("Unicode (UTF-32BE)"), "UTF-32BE" },
- {N_("Unicode (UTF-32LE)"), "UTF-32LE" },
- {N_("Vietnamese (VISCII)"), "VISCII" },
- {N_("Vietnamese (Windows-1258)"), "windows-1258" },
- {N_("Visual Hebrew (ISO-8859-8)"), "ISO-8859-8" },
- {N_("Western (IBM-850)"), "IBM850" },
- {N_("Western (ISO-8859-1)"), "ISO-8859-1" },
- {N_("Western (ISO-8859-15)"), "ISO-8859-15" },
- {N_("Western (Windows-1252)"), "windows-1252" }
-
- /*
- * From this point, character sets aren't supported by iconv
- */
-#if 0
- {N_("Arabic (IBM-864-I)"), "IBM864i" },
- {N_("Arabic (ISO-8859-6-E)"), "ISO-8859-6-E" },
- {N_("Arabic (ISO-8859-6-I)"), "ISO-8859-6-I" },
- {N_("Arabic (MacArabic)"), "x-mac-arabic" },
- {N_("Armenian (ARMSCII-8)"), "armscii-8" },
- {N_("Central European (MacCE)"), "x-mac-ce" },
- {N_("Chinese Simplified (GBK)"), "x-gbk" },
- {N_("Chinese Simplified (HZ)"), "HZ-GB-2312" },
- {N_("Chinese Traditional (EUC-TW)"), "x-euc-tw" },
- {N_("Croatian (MacCroatian)"), "x-mac-croatian" },
- {N_("Cyrillic (MacCyrillic)"), "x-mac-cyrillic" },
- {N_("Cyrillic/Ukrainian (MacUkrainian)"), "x-mac-ukrainian" },
- {N_("Farsi (MacFarsi)"), "x-mac-farsi"},
- {N_("Greek (MacGreek)"), "x-mac-greek" },
- {N_("Gujarati (MacGujarati)"), "x-mac-gujarati" },
- {N_("Gurmukhi (MacGurmukhi)"), "x-mac-gurmukhi" },
- {N_("Hebrew (ISO-8859-8-E)"), "ISO-8859-8-E" },
- {N_("Hebrew (ISO-8859-8-I)"), "ISO-8859-8-I" },
- {N_("Hebrew (MacHebrew)"), "x-mac-hebrew" },
- {N_("Hindi (MacDevanagari)"), "x-mac-devanagari" },
- {N_("Icelandic (MacIcelandic)"), "x-mac-icelandic" },
- {N_("Korean (JOHAB)"), "x-johab" },
- {N_("Korean (UHC)"), "x-windows-949" },
- {N_("Romanian (MacRomanian)"), "x-mac-romanian" },
- {N_("Turkish (MacTurkish)"), "x-mac-turkish" },
- {N_("User Defined"), "x-user-defined" },
- {N_("Vietnamese (TCVN)"), "x-viet-tcvn5712" },
- {N_("Vietnamese (VPS)"), "x-viet-vps" },
- {N_("Western (MacRoman)"), "x-mac-roman" },
- /* charsets whithout posibly translatable names */
- {"T61.8bit", "T61.8bit" },
- {"x-imap4-modified-utf7", "x-imap4-modified-utf7"},
- {"x-u-escaped", "x-u-escaped" },
- {"windows-936", "windows-936" }
-#endif
-};
-
-/*************
- * Functions *
- *************/
-
-/*
- * Commons conversion functions
- */
-char *convert_from_utf8_to_user(const char *string)
-{
- return FLAC_plugin__charset_convert_string(string, "UTF-8", flac_cfg.title.user_char_set);
-}
-
-char *convert_from_user_to_utf8(const char *string)
-{
- return FLAC_plugin__charset_convert_string(string, flac_cfg.title.user_char_set, "UTF-8");
-}
-
-GList *Charset_Create_List (void)
-{
- GList *list = NULL;
- guint i;
-
- for (i=0; i<CHARSET_TRANS_ARRAY_LEN; i++)
- list = g_list_append(list,_(charset_trans_array[i].charset_title));
- return list;
-}
-
-GList *Charset_Create_List_UTF8_Only (void)
-{
- GList *list = NULL;
-
- list = g_list_append(list,_(Charset_Get_Title_From_Name("UTF-8")));
- return list;
-}
-
-
-/*
- * Return charset_name from charset_title
- */
-gchar *Charset_Get_Name_From_Title (gchar *charset_title)
-{
- guint i;
-
- if (charset_title)
- for (i=0; i<CHARSET_TRANS_ARRAY_LEN; i++)
- if ( strcasecmp(_(charset_title),_(charset_trans_array[i].charset_title)) == 0 )
- return charset_trans_array[i].charset_name;
- return "";
-}
-
-
-/*
- * Return charset_title from charset_name
- */
-gchar *Charset_Get_Title_From_Name (gchar *charset_name)
-{
- guint i;
-
- if (charset_name)
- for (i=0; i<CHARSET_TRANS_ARRAY_LEN; i++)
- if ( strcasecmp(charset_name,charset_trans_array[i].charset_name) == 0 )
- return _(charset_trans_array[i].charset_title);
- return "";
-}
diff --git a/src/plugin_xmms/charset.h b/src/plugin_xmms/charset.h
deleted file mode 100644
index ea4f8cc6..00000000
--- a/src/plugin_xmms/charset.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * Almost from charset.h - 2001/12/04
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 1999-2001 Håvard Kvålen <havardk@xmms.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * with this program; if not, write to the Free Software Foundation, Inc.,
- */
-
-
-#ifndef FLAC__PLUGIN_XMMS__CHARSET_H
-#define FLAC__PLUGIN_XMMS__CHARSET_H
-
-
-/***************
- * Declaration *
- ***************/
-
-typedef struct {
- gchar *charset_title;
- gchar *charset_name;
-} CharsetInfo;
-
-/* translated charset titles */
-extern const CharsetInfo charset_trans_array[];
-
-/**************
- * Prototypes *
- **************/
-
-/*
- * The returned strings are malloc()ed an must be free()d by the caller
- */
-char *convert_from_utf8_to_user(const char *string);
-char *convert_from_user_to_utf8(const char *string);
-
-GList *Charset_Create_List (void);
-GList *Charset_Create_List_UTF8_Only (void);
-gchar *Charset_Get_Name_From_Title (gchar *charset_title);
-gchar *Charset_Get_Title_From_Name (gchar *charset_name);
-
-#endif /* __CHARSET_H__ */
-
diff --git a/src/plugin_xmms/configure.c b/src/plugin_xmms/configure.c
deleted file mode 100644
index a4889c06..00000000
--- a/src/plugin_xmms/configure.c
+++ /dev/null
@@ -1,825 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * Based on mpg123 plugin
- * and prefs.c - 2000/05/06
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 2000-2002 Jerome Couderc <j.couderc@ifrance.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <stdlib.h>
-#include <string.h>
-#include <glib.h>
-#include <gtk/gtk.h>
-#include <pthread.h>
-#include <math.h>
-
-#include <xmms/configfile.h>
-#include <xmms/dirbrowser.h>
-#include <xmms/titlestring.h>
-#include <xmms/util.h>
-#include <xmms/plugin.h>
-
-#include "share/replaygain_synthesis.h" /* for NOISE_SHAPING_LOW */
-#include "charset.h"
-#include "configure.h"
-#include "locale_hack.h"
-
-/*
- * Initialize Global Variable
- */
-flac_config_t flac_cfg = {
- /* title */
- {
- FALSE, /* tag_override */
- NULL, /* tag_format */
- FALSE, /* convert_char_set */
- NULL /* user_char_set */
- },
- /* stream */
- {
- 100 /* KB */, /* http_buffer_size */
- 50, /* http_prebuffer */
- FALSE, /* use_proxy */
- NULL, /* proxy_host */
- 0, /* proxy_port */
- FALSE, /* proxy_use_auth */
- NULL, /* proxy_user */
- NULL, /* proxy_pass */
- FALSE, /* save_http_stream */
- NULL, /* save_http_path */
- FALSE, /* cast_title_streaming */
- FALSE /* use_udp_channel */
- },
- /* output */
- {
- /* replaygain */
- {
- FALSE, /* enable */
- TRUE, /* album_mode */
- 0, /* preamp */
- FALSE /* hard_limit */
- },
- /* resolution */
- {
- /* normal */
- {
- TRUE /* dither_24_to_16 */
- },
- /* replaygain */
- {
- TRUE, /* dither */
- NOISE_SHAPING_LOW, /* noise_shaping */
- 16 /* bps_out */
- }
- }
- }
-};
-
-
-static GtkWidget *flac_configurewin = NULL;
-static GtkWidget *vbox, *notebook;
-
-static GtkWidget *title_tag_override, *title_tag_box, *title_tag_entry, *title_desc;
-static GtkWidget *convert_char_set, *fileCharacterSetEntry, *userCharacterSetEntry;
-static GtkWidget *replaygain_enable, *replaygain_album_mode;
-static GtkWidget *replaygain_preamp_hscale, *replaygain_preamp_label, *replaygain_hard_limit;
-static GtkObject *replaygain_preamp;
-static GtkWidget *resolution_normal_dither_24_to_16;
-static GtkWidget *resolution_replaygain_dither;
-static GtkWidget *resolution_replaygain_noise_shaping_frame;
-static GtkWidget *resolution_replaygain_noise_shaping_radio_none;
-static GtkWidget *resolution_replaygain_noise_shaping_radio_low;
-static GtkWidget *resolution_replaygain_noise_shaping_radio_medium;
-static GtkWidget *resolution_replaygain_noise_shaping_radio_high;
-static GtkWidget *resolution_replaygain_bps_out_frame;
-static GtkWidget *resolution_replaygain_bps_out_radio_16bps;
-static GtkWidget *resolution_replaygain_bps_out_radio_24bps;
-
-static GtkObject *streaming_size_adj, *streaming_pre_adj;
-static GtkWidget *streaming_proxy_use, *streaming_proxy_host_entry;
-static GtkWidget *streaming_proxy_port_entry, *streaming_save_use, *streaming_save_entry;
-static GtkWidget *streaming_proxy_auth_use;
-static GtkWidget *streaming_proxy_auth_pass_entry, *streaming_proxy_auth_user_entry;
-static GtkWidget *streaming_proxy_auth_user_label, *streaming_proxy_auth_pass_label;
-#ifdef FLAC_ICECAST
-static GtkWidget *streaming_cast_title, *streaming_udp_title;
-#endif
-static GtkWidget *streaming_proxy_hbox, *streaming_proxy_auth_hbox, *streaming_save_dirbrowser;
-static GtkWidget *streaming_save_hbox;
-
-static gchar *gtk_entry_get_text_1 (GtkWidget *widget);
-static void flac_configurewin_ok(GtkWidget * widget, gpointer data);
-static void configure_destroy(GtkWidget * w, gpointer data);
-
-static void flac_configurewin_ok(GtkWidget * widget, gpointer data)
-{
- ConfigFile *cfg;
- gchar *filename;
-
- (void)widget, (void)data; /* unused arguments */
- g_free(flac_cfg.title.tag_format);
- flac_cfg.title.tag_format = g_strdup(gtk_entry_get_text(GTK_ENTRY(title_tag_entry)));
- flac_cfg.title.user_char_set = Charset_Get_Name_From_Title(gtk_entry_get_text_1(userCharacterSetEntry));
-
- filename = g_strconcat(g_get_home_dir(), "/.xmms/config", NULL);
- cfg = xmms_cfg_open_file(filename);
- if (!cfg)
- cfg = xmms_cfg_new();
- /* title */
- xmms_cfg_write_boolean(cfg, "flac", "title.tag_override", flac_cfg.title.tag_override);
- xmms_cfg_write_string(cfg, "flac", "title.tag_format", flac_cfg.title.tag_format);
- xmms_cfg_write_boolean(cfg, "flac", "title.convert_char_set", flac_cfg.title.convert_char_set);
- xmms_cfg_write_string(cfg, "flac", "title.user_char_set", flac_cfg.title.user_char_set);
- /* output */
- xmms_cfg_write_boolean(cfg, "flac", "output.replaygain.enable", flac_cfg.output.replaygain.enable);
- xmms_cfg_write_boolean(cfg, "flac", "output.replaygain.album_mode", flac_cfg.output.replaygain.album_mode);
- xmms_cfg_write_int(cfg, "flac", "output.replaygain.preamp", flac_cfg.output.replaygain.preamp);
- xmms_cfg_write_boolean(cfg, "flac", "output.replaygain.hard_limit", flac_cfg.output.replaygain.hard_limit);
- xmms_cfg_write_boolean(cfg, "flac", "output.resolution.normal.dither_24_to_16", flac_cfg.output.resolution.normal.dither_24_to_16);
- xmms_cfg_write_boolean(cfg, "flac", "output.resolution.replaygain.dither", flac_cfg.output.resolution.replaygain.dither);
- xmms_cfg_write_int(cfg, "flac", "output.resolution.replaygain.noise_shaping", flac_cfg.output.resolution.replaygain.noise_shaping);
- xmms_cfg_write_int(cfg, "flac", "output.resolution.replaygain.bps_out", flac_cfg.output.resolution.replaygain.bps_out);
- /* streaming */
- flac_cfg.stream.http_buffer_size = (gint) GTK_ADJUSTMENT(streaming_size_adj)->value;
- flac_cfg.stream.http_prebuffer = (gint) GTK_ADJUSTMENT(streaming_pre_adj)->value;
-
- flac_cfg.stream.use_proxy = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_use));
- if(flac_cfg.stream.proxy_host)
- g_free(flac_cfg.stream.proxy_host);
- flac_cfg.stream.proxy_host = g_strdup(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_host_entry)));
- flac_cfg.stream.proxy_port = atoi(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_port_entry)));
-
- flac_cfg.stream.proxy_use_auth = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_auth_use));
-
- if(flac_cfg.stream.proxy_user)
- g_free(flac_cfg.stream.proxy_user);
- flac_cfg.stream.proxy_user = NULL;
- if(strlen(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_auth_user_entry))) > 0)
- flac_cfg.stream.proxy_user = g_strdup(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_auth_user_entry)));
-
- if(flac_cfg.stream.proxy_pass)
- g_free(flac_cfg.stream.proxy_pass);
- flac_cfg.stream.proxy_pass = NULL;
- if(strlen(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_auth_pass_entry))) > 0)
- flac_cfg.stream.proxy_pass = g_strdup(gtk_entry_get_text(GTK_ENTRY(streaming_proxy_auth_pass_entry)));
-
-
- flac_cfg.stream.save_http_stream = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_save_use));
- if (flac_cfg.stream.save_http_path)
- g_free(flac_cfg.stream.save_http_path);
- flac_cfg.stream.save_http_path = g_strdup(gtk_entry_get_text(GTK_ENTRY(streaming_save_entry)));
-
-#ifdef FLAC_ICECAST
- flac_cfg.stream.cast_title_streaming = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_cast_title));
- flac_cfg.stream.use_udp_channel = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_udp_title));
-#endif
-
- xmms_cfg_write_int(cfg, "flac", "stream.http_buffer_size", flac_cfg.stream.http_buffer_size);
- xmms_cfg_write_int(cfg, "flac", "stream.http_prebuffer", flac_cfg.stream.http_prebuffer);
- xmms_cfg_write_boolean(cfg, "flac", "stream.use_proxy", flac_cfg.stream.use_proxy);
- xmms_cfg_write_string(cfg, "flac", "stream.proxy_host", flac_cfg.stream.proxy_host);
- xmms_cfg_write_int(cfg, "flac", "stream.proxy_port", flac_cfg.stream.proxy_port);
- xmms_cfg_write_boolean(cfg, "flac", "stream.proxy_use_auth", flac_cfg.stream.proxy_use_auth);
- if(flac_cfg.stream.proxy_user)
- xmms_cfg_write_string(cfg, "flac", "stream.proxy_user", flac_cfg.stream.proxy_user);
- else
- xmms_cfg_remove_key(cfg, "flac", "stream.proxy_user");
- if(flac_cfg.stream.proxy_pass)
- xmms_cfg_write_string(cfg, "flac", "stream.proxy_pass", flac_cfg.stream.proxy_pass);
- else
- xmms_cfg_remove_key(cfg, "flac", "stream.proxy_pass");
- xmms_cfg_write_boolean(cfg, "flac", "stream.save_http_stream", flac_cfg.stream.save_http_stream);
- xmms_cfg_write_string(cfg, "flac", "stream.save_http_path", flac_cfg.stream.save_http_path);
-#ifdef FLAC_ICECAST
- xmms_cfg_write_boolean(cfg, "flac", "stream.cast_title_streaming", flac_cfg.stream.cast_title_streaming);
- xmms_cfg_write_boolean(cfg, "flac", "stream.use_udp_channel", flac_cfg.stream.use_udp_channel);
-#endif
-
- xmms_cfg_write_file(cfg, filename);
- xmms_cfg_free(cfg);
- g_free(filename);
- gtk_widget_destroy(flac_configurewin);
-}
-
-static void configure_destroy(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
-}
-
-static void title_tag_override_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.title.tag_override = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(title_tag_override));
-
- gtk_widget_set_sensitive(title_tag_box, flac_cfg.title.tag_override);
- gtk_widget_set_sensitive(title_desc, flac_cfg.title.tag_override);
-
-}
-
-static void convert_char_set_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.title.convert_char_set = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(convert_char_set));
-
- gtk_widget_set_sensitive(fileCharacterSetEntry, FALSE);
- gtk_widget_set_sensitive(userCharacterSetEntry, flac_cfg.title.convert_char_set);
-}
-
-static void replaygain_enable_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.replaygain.enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(replaygain_enable));
-
- gtk_widget_set_sensitive(replaygain_album_mode, flac_cfg.output.replaygain.enable);
- gtk_widget_set_sensitive(replaygain_preamp_hscale, flac_cfg.output.replaygain.enable);
- gtk_widget_set_sensitive(replaygain_hard_limit, flac_cfg.output.replaygain.enable);
-}
-
-static void replaygain_album_mode_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.replaygain.album_mode = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(replaygain_album_mode));
-}
-
-static void replaygain_hard_limit_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.replaygain.hard_limit = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(replaygain_hard_limit));
-}
-
-static void replaygain_preamp_cb(GtkWidget *widget, gpointer data)
-{
- GString *gstring = g_string_new("");
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.replaygain.preamp = (int) floor(GTK_ADJUSTMENT(replaygain_preamp)->value + 0.5);
-
- g_string_sprintf(gstring, "%i dB", flac_cfg.output.replaygain.preamp);
- gtk_label_set_text(GTK_LABEL(replaygain_preamp_label), _(gstring->str));
-}
-
-static void resolution_normal_dither_24_to_16_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.resolution.normal.dither_24_to_16 = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_normal_dither_24_to_16));
-}
-
-static void resolution_replaygain_dither_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.resolution.replaygain.dither = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_dither));
-
- gtk_widget_set_sensitive(resolution_replaygain_noise_shaping_frame, flac_cfg.output.resolution.replaygain.dither);
-}
-
-static void resolution_replaygain_noise_shaping_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.resolution.replaygain.noise_shaping =
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_none))? 0 :
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_low))? 1 :
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_medium))? 2 :
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_high))? 3 :
- 0
- ;
-}
-
-static void resolution_replaygain_bps_out_cb(GtkWidget *widget, gpointer data)
-{
- (void)widget, (void)data; /* unused arguments */
- flac_cfg.output.resolution.replaygain.bps_out =
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_bps_out_radio_16bps))? 16 :
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(resolution_replaygain_bps_out_radio_24bps))? 24 :
- 16
- ;
-}
-
-static void proxy_use_cb(GtkWidget * w, gpointer data)
-{
- gboolean use_proxy, use_proxy_auth;
- (void) w;
- (void) data;
-
- use_proxy = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_use));
- use_proxy_auth = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_auth_use));
-
- gtk_widget_set_sensitive(streaming_proxy_hbox, use_proxy);
- gtk_widget_set_sensitive(streaming_proxy_auth_use, use_proxy);
- gtk_widget_set_sensitive(streaming_proxy_auth_hbox, use_proxy && use_proxy_auth);
-}
-
-static void proxy_auth_use_cb(GtkWidget *w, gpointer data)
-{
- gboolean use_proxy, use_proxy_auth;
- (void) w;
- (void) data;
-
- use_proxy = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_use));
- use_proxy_auth = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_proxy_auth_use));
-
- gtk_widget_set_sensitive(streaming_proxy_auth_hbox, use_proxy && use_proxy_auth);
-}
-
-static void streaming_save_dirbrowser_cb(gchar * dir)
-{
- gtk_entry_set_text(GTK_ENTRY(streaming_save_entry), dir);
-}
-
-static void streaming_save_browse_cb(GtkWidget * w, gpointer data)
-{
- (void) w;
- (void) data;
- if (!streaming_save_dirbrowser)
- {
- streaming_save_dirbrowser = xmms_create_dir_browser(_("Select the directory where you want to store the MPEG streams:"),
- flac_cfg.stream.save_http_path, GTK_SELECTION_SINGLE, streaming_save_dirbrowser_cb);
- gtk_signal_connect(GTK_OBJECT(streaming_save_dirbrowser), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &streaming_save_dirbrowser);
- gtk_window_set_transient_for(GTK_WINDOW(streaming_save_dirbrowser), GTK_WINDOW(flac_configurewin));
- gtk_widget_show(streaming_save_dirbrowser);
- }
-}
-
-static void streaming_save_use_cb(GtkWidget * w, gpointer data)
-{
- gboolean save_stream;
- (void) w;
- (void) data;
-
- save_stream = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(streaming_save_use));
-
- gtk_widget_set_sensitive(streaming_save_hbox, save_stream);
-}
-
-
-void FLAC_XMMS__configure(void)
-{
- GtkWidget *title_frame, *title_tag_vbox, *title_tag_label;
- GtkWidget *replaygain_frame, *resolution_frame, *output_vbox, *resolution_normal_frame, *resolution_replaygain_frame;
- GtkWidget *replaygain_vbox, *resolution_hbox, *resolution_normal_vbox, *resolution_replaygain_vbox;
- GtkWidget *resolution_replaygain_noise_shaping_vbox;
- GtkWidget *resolution_replaygain_bps_out_vbox;
- GtkWidget *label, *hbox;
- GtkWidget *bbox, *ok, *cancel;
- GList *list;
-
- GtkWidget *streaming_vbox;
- GtkWidget *streaming_buf_frame, *streaming_buf_hbox;
- GtkWidget *streaming_size_box, *streaming_size_label, *streaming_size_spin;
- GtkWidget *streaming_pre_box, *streaming_pre_label, *streaming_pre_spin;
- GtkWidget *streaming_proxy_frame, *streaming_proxy_vbox;
- GtkWidget *streaming_proxy_port_label, *streaming_proxy_host_label;
- GtkWidget *streaming_save_frame, *streaming_save_vbox;
- GtkWidget *streaming_save_label, *streaming_save_browse;
-#ifdef FLAC_ICECAST
- GtkWidget *streaming_cast_frame, *streaming_cast_vbox;
-#endif
- char *temp;
-
- if (flac_configurewin != NULL) {
- gdk_window_raise(flac_configurewin->window);
- return;
- }
- flac_configurewin = gtk_window_new(GTK_WINDOW_DIALOG);
- gtk_signal_connect(GTK_OBJECT(flac_configurewin), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &flac_configurewin);
- gtk_signal_connect(GTK_OBJECT(flac_configurewin), "destroy", GTK_SIGNAL_FUNC(configure_destroy), &flac_configurewin);
- gtk_window_set_title(GTK_WINDOW(flac_configurewin), _("Flac Configuration"));
- gtk_window_set_policy(GTK_WINDOW(flac_configurewin), FALSE, FALSE, FALSE);
- gtk_container_border_width(GTK_CONTAINER(flac_configurewin), 10);
-
- vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_add(GTK_CONTAINER(flac_configurewin), vbox);
-
- notebook = gtk_notebook_new();
- gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0);
-
- /* Title config.. */
-
- title_frame = gtk_frame_new(_("Tag Handling"));
- gtk_container_border_width(GTK_CONTAINER(title_frame), 5);
-
- title_tag_vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(title_tag_vbox), 5);
- gtk_container_add(GTK_CONTAINER(title_frame), title_tag_vbox);
-
- /* Convert Char Set */
-
- convert_char_set = gtk_check_button_new_with_label(_("Convert Character Set"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(convert_char_set), flac_cfg.title.convert_char_set);
- gtk_signal_connect(GTK_OBJECT(convert_char_set), "clicked", convert_char_set_cb, NULL);
- gtk_box_pack_start(GTK_BOX(title_tag_vbox), convert_char_set, FALSE, FALSE, 0);
- /* Combo boxes... */
- hbox = gtk_hbox_new(FALSE,4);
- gtk_container_add(GTK_CONTAINER(title_tag_vbox),hbox);
- label = gtk_label_new(_("Convert character set from :"));
- gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0);
- fileCharacterSetEntry = gtk_combo_new();
- gtk_box_pack_start(GTK_BOX(hbox),fileCharacterSetEntry,TRUE,TRUE,0);
-
- label = gtk_label_new (_("to :"));
- gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0);
- userCharacterSetEntry = gtk_combo_new();
- gtk_box_pack_start(GTK_BOX(hbox),userCharacterSetEntry,TRUE,TRUE,0);
-
- gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(fileCharacterSetEntry)->entry),FALSE);
- gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(userCharacterSetEntry)->entry),FALSE);
- gtk_combo_set_value_in_list(GTK_COMBO(fileCharacterSetEntry),TRUE,FALSE);
- gtk_combo_set_value_in_list(GTK_COMBO(userCharacterSetEntry),TRUE,FALSE);
-
- list = Charset_Create_List();
- gtk_combo_set_popdown_strings(GTK_COMBO(fileCharacterSetEntry),Charset_Create_List_UTF8_Only());
- gtk_combo_set_popdown_strings(GTK_COMBO(userCharacterSetEntry),list);
- gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(userCharacterSetEntry)->entry),Charset_Get_Title_From_Name(flac_cfg.title.user_char_set));
- gtk_widget_set_sensitive(fileCharacterSetEntry, FALSE);
- gtk_widget_set_sensitive(userCharacterSetEntry, flac_cfg.title.convert_char_set);
-
- /* Override Tagging Format */
-
- title_tag_override = gtk_check_button_new_with_label(_("Override generic titles"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(title_tag_override), flac_cfg.title.tag_override);
- gtk_signal_connect(GTK_OBJECT(title_tag_override), "clicked", title_tag_override_cb, NULL);
- gtk_box_pack_start(GTK_BOX(title_tag_vbox), title_tag_override, FALSE, FALSE, 0);
-
- title_tag_box = gtk_hbox_new(FALSE, 5);
- gtk_widget_set_sensitive(title_tag_box, flac_cfg.title.tag_override);
- gtk_box_pack_start(GTK_BOX(title_tag_vbox), title_tag_box, FALSE, FALSE, 0);
-
- title_tag_label = gtk_label_new(_("Title format:"));
- gtk_box_pack_start(GTK_BOX(title_tag_box), title_tag_label, FALSE, FALSE, 0);
-
- title_tag_entry = gtk_entry_new();
- gtk_entry_set_text(GTK_ENTRY(title_tag_entry), flac_cfg.title.tag_format);
- gtk_box_pack_start(GTK_BOX(title_tag_box), title_tag_entry, TRUE, TRUE, 0);
-
- title_desc = xmms_titlestring_descriptions("pafFetnygc", 2);
- gtk_widget_set_sensitive(title_desc, flac_cfg.title.tag_override);
- gtk_box_pack_start(GTK_BOX(title_tag_vbox), title_desc, FALSE, FALSE, 0);
-
- gtk_notebook_append_page(GTK_NOTEBOOK(notebook), title_frame, gtk_label_new(_("Title")));
-
- /* Output config.. */
-
- output_vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(output_vbox), 5);
-
- /* replaygain */
-
- replaygain_frame = gtk_frame_new(_("ReplayGain"));
- gtk_container_border_width(GTK_CONTAINER(replaygain_frame), 5);
- gtk_box_pack_start(GTK_BOX(output_vbox), replaygain_frame, TRUE, TRUE, 0);
-
- replaygain_vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(replaygain_vbox), 5);
- gtk_container_add(GTK_CONTAINER(replaygain_frame), replaygain_vbox);
-
- replaygain_enable = gtk_check_button_new_with_label(_("Enable ReplayGain processing"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(replaygain_enable), flac_cfg.output.replaygain.enable);
- gtk_signal_connect(GTK_OBJECT(replaygain_enable), "clicked", replaygain_enable_cb, NULL);
- gtk_box_pack_start(GTK_BOX(replaygain_vbox), replaygain_enable, FALSE, FALSE, 0);
-
- replaygain_album_mode = gtk_check_button_new_with_label(_("Album mode"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(replaygain_album_mode), flac_cfg.output.replaygain.album_mode);
- gtk_signal_connect(GTK_OBJECT(replaygain_album_mode), "clicked", replaygain_album_mode_cb, NULL);
- gtk_box_pack_start(GTK_BOX(replaygain_vbox), replaygain_album_mode, FALSE, FALSE, 0);
-
- hbox = gtk_hbox_new(FALSE,3);
- gtk_container_add(GTK_CONTAINER(replaygain_vbox),hbox);
- label = gtk_label_new(_("Preamp:"));
- gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0);
- replaygain_preamp = gtk_adjustment_new(flac_cfg.output.replaygain.preamp, -24.0, +24.0, 1.0, 6.0, 0.0);
- gtk_signal_connect(GTK_OBJECT(replaygain_preamp), "value-changed", replaygain_preamp_cb, NULL);
- replaygain_preamp_hscale = gtk_hscale_new(GTK_ADJUSTMENT(replaygain_preamp));
- gtk_scale_set_draw_value(GTK_SCALE(replaygain_preamp_hscale), FALSE);
- gtk_box_pack_start(GTK_BOX(hbox),replaygain_preamp_hscale,TRUE,TRUE,0);
- replaygain_preamp_label = gtk_label_new(_("0 dB"));
- gtk_box_pack_start(GTK_BOX(hbox),replaygain_preamp_label,FALSE,FALSE,0);
- gtk_adjustment_value_changed(GTK_ADJUSTMENT(replaygain_preamp));
-
- replaygain_hard_limit = gtk_check_button_new_with_label(_("6dB hard limiting"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(replaygain_hard_limit), flac_cfg.output.replaygain.hard_limit);
- gtk_signal_connect(GTK_OBJECT(replaygain_hard_limit), "clicked", replaygain_hard_limit_cb, NULL);
- gtk_box_pack_start(GTK_BOX(replaygain_vbox), replaygain_hard_limit, FALSE, FALSE, 0);
-
- replaygain_enable_cb(replaygain_enable, NULL);
-
- /* resolution */
-
- resolution_frame = gtk_frame_new(_("Resolution"));
- gtk_container_border_width(GTK_CONTAINER(resolution_frame), 5);
- gtk_box_pack_start(GTK_BOX(output_vbox), resolution_frame, TRUE, TRUE, 0);
-
- resolution_hbox = gtk_hbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(resolution_hbox), 5);
- gtk_container_add(GTK_CONTAINER(resolution_frame), resolution_hbox);
-
- resolution_normal_frame = gtk_frame_new(_("Without ReplayGain"));
- gtk_container_border_width(GTK_CONTAINER(resolution_normal_frame), 5);
- gtk_box_pack_start(GTK_BOX(resolution_hbox), resolution_normal_frame, TRUE, TRUE, 0);
-
- resolution_normal_vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(resolution_normal_vbox), 5);
- gtk_container_add(GTK_CONTAINER(resolution_normal_frame), resolution_normal_vbox);
-
- resolution_normal_dither_24_to_16 = gtk_check_button_new_with_label(_("Dither 24bps to 16bps"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_normal_dither_24_to_16), flac_cfg.output.resolution.normal.dither_24_to_16);
- gtk_signal_connect(GTK_OBJECT(resolution_normal_dither_24_to_16), "clicked", resolution_normal_dither_24_to_16_cb, NULL);
- gtk_box_pack_start(GTK_BOX(resolution_normal_vbox), resolution_normal_dither_24_to_16, FALSE, FALSE, 0);
-
- resolution_replaygain_frame = gtk_frame_new(_("With ReplayGain"));
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_frame), 5);
- gtk_box_pack_start(GTK_BOX(resolution_hbox), resolution_replaygain_frame, TRUE, TRUE, 0);
-
- resolution_replaygain_vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_vbox), 5);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_frame), resolution_replaygain_vbox);
-
- resolution_replaygain_dither = gtk_check_button_new_with_label(_("Enable dithering"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_dither), flac_cfg.output.resolution.replaygain.dither);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_dither), "clicked", resolution_replaygain_dither_cb, NULL);
- gtk_box_pack_start(GTK_BOX(resolution_replaygain_vbox), resolution_replaygain_dither, FALSE, FALSE, 0);
-
- hbox = gtk_hbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(hbox), 5);
- gtk_box_pack_start(GTK_BOX(resolution_replaygain_vbox), hbox, TRUE, TRUE, 0);
-
- resolution_replaygain_noise_shaping_frame = gtk_frame_new(_("Noise shaping"));
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_noise_shaping_frame), 5);
- gtk_box_pack_start(GTK_BOX(hbox), resolution_replaygain_noise_shaping_frame, TRUE, TRUE, 0);
-
- resolution_replaygain_noise_shaping_vbox = gtk_vbutton_box_new();
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_noise_shaping_vbox), 5);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_noise_shaping_frame), resolution_replaygain_noise_shaping_vbox);
-
- resolution_replaygain_noise_shaping_radio_none = gtk_radio_button_new_with_label(NULL, _("none"));
- if(flac_cfg.output.resolution.replaygain.noise_shaping == 0)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_none), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_noise_shaping_radio_none), "clicked", resolution_replaygain_noise_shaping_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_noise_shaping_vbox), resolution_replaygain_noise_shaping_radio_none);
-
- resolution_replaygain_noise_shaping_radio_low = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(resolution_replaygain_noise_shaping_radio_none), _("low"));
- if(flac_cfg.output.resolution.replaygain.noise_shaping == 1)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_low), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_noise_shaping_radio_low), "clicked", resolution_replaygain_noise_shaping_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_noise_shaping_vbox), resolution_replaygain_noise_shaping_radio_low);
-
- resolution_replaygain_noise_shaping_radio_medium = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(resolution_replaygain_noise_shaping_radio_none), _("medium"));
- if(flac_cfg.output.resolution.replaygain.noise_shaping == 2)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_medium), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_noise_shaping_radio_medium), "clicked", resolution_replaygain_noise_shaping_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_noise_shaping_vbox), resolution_replaygain_noise_shaping_radio_medium);
-
- resolution_replaygain_noise_shaping_radio_high = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(resolution_replaygain_noise_shaping_radio_none), _("high"));
- if(flac_cfg.output.resolution.replaygain.noise_shaping == 3)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_noise_shaping_radio_high), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_noise_shaping_radio_high), "clicked", resolution_replaygain_noise_shaping_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_noise_shaping_vbox), resolution_replaygain_noise_shaping_radio_high);
-
- resolution_replaygain_bps_out_frame = gtk_frame_new(_("Dither to"));
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_bps_out_frame), 5);
- gtk_box_pack_start(GTK_BOX(hbox), resolution_replaygain_bps_out_frame, FALSE, FALSE, 0);
-
- resolution_replaygain_bps_out_vbox = gtk_vbutton_box_new();
- gtk_container_border_width(GTK_CONTAINER(resolution_replaygain_bps_out_vbox), 0);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_bps_out_frame), resolution_replaygain_bps_out_vbox);
-
- resolution_replaygain_bps_out_radio_16bps = gtk_radio_button_new_with_label(NULL, _("16 bps"));
- if(flac_cfg.output.resolution.replaygain.bps_out == 16)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_bps_out_radio_16bps), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_bps_out_radio_16bps), "clicked", resolution_replaygain_bps_out_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_bps_out_vbox), resolution_replaygain_bps_out_radio_16bps);
-
- resolution_replaygain_bps_out_radio_24bps = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(resolution_replaygain_bps_out_radio_16bps), _("24 bps"));
- if(flac_cfg.output.resolution.replaygain.bps_out == 24)
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resolution_replaygain_bps_out_radio_24bps), TRUE);
- gtk_signal_connect(GTK_OBJECT(resolution_replaygain_bps_out_radio_24bps), "clicked", resolution_replaygain_bps_out_cb, NULL);
- gtk_container_add(GTK_CONTAINER(resolution_replaygain_bps_out_vbox), resolution_replaygain_bps_out_radio_24bps);
-
- resolution_replaygain_dither_cb(resolution_replaygain_dither, NULL);
-
- gtk_notebook_append_page(GTK_NOTEBOOK(notebook), output_vbox, gtk_label_new(_("Output")));
-
- /* Streaming */
-
- streaming_vbox = gtk_vbox_new(FALSE, 0);
-
- streaming_buf_frame = gtk_frame_new(_("Buffering:"));
- gtk_container_set_border_width(GTK_CONTAINER(streaming_buf_frame), 5);
- gtk_box_pack_start(GTK_BOX(streaming_vbox), streaming_buf_frame, FALSE, FALSE, 0);
-
- streaming_buf_hbox = gtk_hbox_new(TRUE, 5);
- gtk_container_set_border_width(GTK_CONTAINER(streaming_buf_hbox), 5);
- gtk_container_add(GTK_CONTAINER(streaming_buf_frame), streaming_buf_hbox);
-
- streaming_size_box = gtk_hbox_new(FALSE, 5);
- /*gtk_table_attach_defaults(GTK_TABLE(streaming_buf_table),streaming_size_box,0,1,0,1); */
- gtk_box_pack_start(GTK_BOX(streaming_buf_hbox), streaming_size_box, TRUE, TRUE, 0);
- streaming_size_label = gtk_label_new(_("Buffer size (kb):"));
- gtk_box_pack_start(GTK_BOX(streaming_size_box), streaming_size_label, FALSE, FALSE, 0);
- streaming_size_adj = gtk_adjustment_new(flac_cfg.stream.http_buffer_size, 4, 4096, 4, 4, 4);
- streaming_size_spin = gtk_spin_button_new(GTK_ADJUSTMENT(streaming_size_adj), 8, 0);
- gtk_widget_set_usize(streaming_size_spin, 60, -1);
- gtk_box_pack_start(GTK_BOX(streaming_size_box), streaming_size_spin, FALSE, FALSE, 0);
-
- streaming_pre_box = gtk_hbox_new(FALSE, 5);
- /*gtk_table_attach_defaults(GTK_TABLE(streaming_buf_table),streaming_pre_box,1,2,0,1); */
- gtk_box_pack_start(GTK_BOX(streaming_buf_hbox), streaming_pre_box, TRUE, TRUE, 0);
- streaming_pre_label = gtk_label_new(_("Pre-buffer (percent):"));
- gtk_box_pack_start(GTK_BOX(streaming_pre_box), streaming_pre_label, FALSE, FALSE, 0);
- streaming_pre_adj = gtk_adjustment_new(flac_cfg.stream.http_prebuffer, 0, 90, 1, 1, 1);
- streaming_pre_spin = gtk_spin_button_new(GTK_ADJUSTMENT(streaming_pre_adj), 1, 0);
- gtk_widget_set_usize(streaming_pre_spin, 60, -1);
- gtk_box_pack_start(GTK_BOX(streaming_pre_box), streaming_pre_spin, FALSE, FALSE, 0);
-
- /*
- * Proxy config.
- */
- streaming_proxy_frame = gtk_frame_new(_("Proxy:"));
- gtk_container_set_border_width(GTK_CONTAINER(streaming_proxy_frame), 5);
- gtk_box_pack_start(GTK_BOX(streaming_vbox), streaming_proxy_frame, FALSE, FALSE, 0);
-
- streaming_proxy_vbox = gtk_vbox_new(FALSE, 5);
- gtk_container_set_border_width(GTK_CONTAINER(streaming_proxy_vbox), 5);
- gtk_container_add(GTK_CONTAINER(streaming_proxy_frame), streaming_proxy_vbox);
-
- streaming_proxy_use = gtk_check_button_new_with_label(_("Use proxy"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(streaming_proxy_use), flac_cfg.stream.use_proxy);
- gtk_signal_connect(GTK_OBJECT(streaming_proxy_use), "clicked", GTK_SIGNAL_FUNC(proxy_use_cb), NULL);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_vbox), streaming_proxy_use, FALSE, FALSE, 0);
-
- streaming_proxy_hbox = gtk_hbox_new(FALSE, 5);
- gtk_widget_set_sensitive(streaming_proxy_hbox, flac_cfg.stream.use_proxy);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_vbox), streaming_proxy_hbox, FALSE, FALSE, 0);
-
- streaming_proxy_host_label = gtk_label_new(_("Host:"));
- gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_host_label, FALSE, FALSE, 0);
-
- streaming_proxy_host_entry = gtk_entry_new();
- gtk_entry_set_text(GTK_ENTRY(streaming_proxy_host_entry), flac_cfg.stream.proxy_host? flac_cfg.stream.proxy_host : "");
- gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_host_entry, TRUE, TRUE, 0);
-
- streaming_proxy_port_label = gtk_label_new(_("Port:"));
- gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_port_label, FALSE, FALSE, 0);
-
- streaming_proxy_port_entry = gtk_entry_new();
- gtk_widget_set_usize(streaming_proxy_port_entry, 50, -1);
- temp = g_strdup_printf("%d", flac_cfg.stream.proxy_port);
- gtk_entry_set_text(GTK_ENTRY(streaming_proxy_port_entry), temp);
- g_free(temp);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_port_entry, FALSE, FALSE, 0);
-
- streaming_proxy_auth_use = gtk_check_button_new_with_label(_("Use authentication"));
- gtk_widget_set_sensitive(streaming_proxy_auth_use, flac_cfg.stream.use_proxy);
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(streaming_proxy_auth_use), flac_cfg.stream.proxy_use_auth);
- gtk_signal_connect(GTK_OBJECT(streaming_proxy_auth_use), "clicked", GTK_SIGNAL_FUNC(proxy_auth_use_cb), NULL);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_vbox), streaming_proxy_auth_use, FALSE, FALSE, 0);
-
- streaming_proxy_auth_hbox = gtk_hbox_new(FALSE, 5);
- gtk_widget_set_sensitive(streaming_proxy_auth_hbox, flac_cfg.stream.use_proxy && flac_cfg.stream.proxy_use_auth);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_vbox), streaming_proxy_auth_hbox, FALSE, FALSE, 0);
-
- streaming_proxy_auth_user_label = gtk_label_new(_("Username:"));
- gtk_box_pack_start(GTK_BOX(streaming_proxy_auth_hbox), streaming_proxy_auth_user_label, FALSE, FALSE, 0);
-
- streaming_proxy_auth_user_entry = gtk_entry_new();
- if(flac_cfg.stream.proxy_user)
- gtk_entry_set_text(GTK_ENTRY(streaming_proxy_auth_user_entry), flac_cfg.stream.proxy_user);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_auth_hbox), streaming_proxy_auth_user_entry, TRUE, TRUE, 0);
-
- streaming_proxy_auth_pass_label = gtk_label_new(_("Password:"));
- gtk_box_pack_start(GTK_BOX(streaming_proxy_auth_hbox), streaming_proxy_auth_pass_label, FALSE, FALSE, 0);
-
- streaming_proxy_auth_pass_entry = gtk_entry_new();
- if(flac_cfg.stream.proxy_pass)
- gtk_entry_set_text(GTK_ENTRY(streaming_proxy_auth_pass_entry), flac_cfg.stream.proxy_pass);
- gtk_entry_set_visibility(GTK_ENTRY(streaming_proxy_auth_pass_entry), FALSE);
- gtk_box_pack_start(GTK_BOX(streaming_proxy_auth_hbox), streaming_proxy_auth_pass_entry, TRUE, TRUE, 0);
-
-
- /*
- * Save to disk config.
- */
- streaming_save_frame = gtk_frame_new(_("Save stream to disk:"));
- gtk_container_set_border_width(GTK_CONTAINER(streaming_save_frame), 5);
- gtk_box_pack_start(GTK_BOX(streaming_vbox), streaming_save_frame, FALSE, FALSE, 0);
-
- streaming_save_vbox = gtk_vbox_new(FALSE, 5);
- gtk_container_set_border_width(GTK_CONTAINER(streaming_save_vbox), 5);
- gtk_container_add(GTK_CONTAINER(streaming_save_frame), streaming_save_vbox);
-
- streaming_save_use = gtk_check_button_new_with_label(_("Save stream to disk"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(streaming_save_use), flac_cfg.stream.save_http_stream);
- gtk_signal_connect(GTK_OBJECT(streaming_save_use), "clicked", GTK_SIGNAL_FUNC(streaming_save_use_cb), NULL);
- gtk_box_pack_start(GTK_BOX(streaming_save_vbox), streaming_save_use, FALSE, FALSE, 0);
-
- streaming_save_hbox = gtk_hbox_new(FALSE, 5);
- gtk_widget_set_sensitive(streaming_save_hbox, flac_cfg.stream.save_http_stream);
- gtk_box_pack_start(GTK_BOX(streaming_save_vbox), streaming_save_hbox, FALSE, FALSE, 0);
-
- streaming_save_label = gtk_label_new(_("Path:"));
- gtk_box_pack_start(GTK_BOX(streaming_save_hbox), streaming_save_label, FALSE, FALSE, 0);
-
- streaming_save_entry = gtk_entry_new();
- gtk_entry_set_text(GTK_ENTRY(streaming_save_entry), flac_cfg.stream.save_http_path? flac_cfg.stream.save_http_path : "");
- gtk_box_pack_start(GTK_BOX(streaming_save_hbox), streaming_save_entry, TRUE, TRUE, 0);
-
- streaming_save_browse = gtk_button_new_with_label(_("Browse"));
- gtk_signal_connect(GTK_OBJECT(streaming_save_browse), "clicked", GTK_SIGNAL_FUNC(streaming_save_browse_cb), NULL);
- gtk_box_pack_start(GTK_BOX(streaming_save_hbox), streaming_save_browse, FALSE, FALSE, 0);
-
-#ifdef FLAC_ICECAST
- streaming_cast_frame = gtk_frame_new(_("SHOUT/Icecast:"));
- gtk_container_set_border_width(GTK_CONTAINER(streaming_cast_frame), 5);
- gtk_box_pack_start(GTK_BOX(streaming_vbox), streaming_cast_frame, FALSE, FALSE, 0);
-
- streaming_cast_vbox = gtk_vbox_new(5, FALSE);
- gtk_container_add(GTK_CONTAINER(streaming_cast_frame), streaming_cast_vbox);
-
- streaming_cast_title = gtk_check_button_new_with_label(_("Enable SHOUT/Icecast title streaming"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(streaming_cast_title), flac_cfg.stream.cast_title_streaming);
- gtk_box_pack_start(GTK_BOX(streaming_cast_vbox), streaming_cast_title, FALSE, FALSE, 0);
-
- streaming_udp_title = gtk_check_button_new_with_label(_("Enable Icecast Metadata UDP Channel"));
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(streaming_udp_title), flac_cfg.stream.use_udp_channel);
- gtk_box_pack_start(GTK_BOX(streaming_cast_vbox), streaming_udp_title, FALSE, FALSE, 0);
-#endif
-
- gtk_notebook_append_page(GTK_NOTEBOOK(notebook), streaming_vbox, gtk_label_new(_("Streaming")));
-
- /* Buttons */
-
- bbox = gtk_hbutton_box_new();
- gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
- gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
- gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
-
- ok = gtk_button_new_with_label(_("Ok"));
- gtk_signal_connect(GTK_OBJECT(ok), "clicked", GTK_SIGNAL_FUNC(flac_configurewin_ok), NULL);
- GTK_WIDGET_SET_FLAGS(ok, GTK_CAN_DEFAULT);
- gtk_box_pack_start(GTK_BOX(bbox), ok, TRUE, TRUE, 0);
- gtk_widget_grab_default(ok);
-
- cancel = gtk_button_new_with_label(_("Cancel"));
- gtk_signal_connect_object(GTK_OBJECT(cancel), "clicked", GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(flac_configurewin));
- GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
- gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0);
-
- gtk_widget_show_all(flac_configurewin);
-}
-
-void FLAC_XMMS__aboutbox(void)
-{
- static GtkWidget *about_window;
-
- if (about_window)
- gdk_window_raise(about_window->window);
-
- about_window = xmms_show_message(
- _("About Flac Plugin"),
- _("Flac Plugin by Josh Coalson\n"
- "contributions by\n"
- "......\n"
- "......\n"
- "and\n"
- "Daisuke Shimamura\n"
- "Visit http://xiph.org/flac/"),
- _("Ok"), FALSE, NULL, NULL);
- gtk_signal_connect(GTK_OBJECT(about_window), "destroy",
- GTK_SIGNAL_FUNC(gtk_widget_destroyed),
- &about_window);
-}
-
-/*
- * Get text of an Entry or a ComboBox
- */
-static gchar *gtk_entry_get_text_1 (GtkWidget *widget)
-{
- if (GTK_IS_COMBO(widget))
- {
- return gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(widget)->entry));
- }else if (GTK_IS_ENTRY(widget))
- {
- return gtk_entry_get_text(GTK_ENTRY(widget));
- }else
- {
- return NULL;
- }
-}
diff --git a/src/plugin_xmms/configure.h b/src/plugin_xmms/configure.h
deleted file mode 100644
index 6cde1390..00000000
--- a/src/plugin_xmms/configure.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * Based on mpg123 plugin
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef FLAC__PLUGIN_XMMS__CONFIGURE_H
-#define FLAC__PLUGIN_XMMS__CONFIGURE_H
-
-#include <glib.h>
-
-typedef struct {
- struct {
- gboolean tag_override;
- gchar *tag_format;
- gboolean convert_char_set;
- gchar *user_char_set;
- } title;
-
- struct {
- gint http_buffer_size;
- gint http_prebuffer;
- gboolean use_proxy;
- gchar *proxy_host;
- gint proxy_port;
- gboolean proxy_use_auth;
- gchar *proxy_user;
- gchar *proxy_pass;
- gboolean save_http_stream;
- gchar *save_http_path;
- gboolean cast_title_streaming;
- gboolean use_udp_channel;
- } stream;
-
- struct {
- struct {
- gboolean enable;
- gboolean album_mode;
- gint preamp;
- gboolean hard_limit;
- } replaygain;
- struct {
- struct {
- gboolean dither_24_to_16;
- } normal;
- struct {
- gboolean dither;
- gint noise_shaping; /* value must be one of NoiseShaping enum, c.f. plugin_common/replaygain_synthesis.h */
- gint bps_out;
- } replaygain;
- } resolution;
- } output;
-} flac_config_t;
-
-extern flac_config_t flac_cfg;
-
-extern void FLAC_XMMS__configure(void);
-extern void FLAC_XMMS__aboutbox(void);
-
-#endif
-
-
-
diff --git a/src/plugin_xmms/fileinfo.c b/src/plugin_xmms/fileinfo.c
deleted file mode 100644
index 8eb1e115..00000000
--- a/src/plugin_xmms/fileinfo.c
+++ /dev/null
@@ -1,495 +0,0 @@
-/* XMMS - Cross-platform multimedia player
- * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
- * Copyright (C) 1999,2000 Håvard Kvålen
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * with this program; if not, write to the Free Software Foundation, Inc.,
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <stdlib.h>
-#include <string.h> /* for strlen() */
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <stdarg.h>
-#include <inttypes.h>
-#include <gtk/gtk.h>
-
-#include "FLAC/metadata.h"
-#include "charset.h"
-#include "configure.h"
-#include "plugin_common/replaygain.h"
-#include "plugin_common/tags.h"
-#include "locale_hack.h"
-
-static GtkWidget *window = NULL;
-static GList *genre_list = NULL;
-static GtkWidget *filename_entry, *tag_frame;
-static GtkWidget *title_entry, *artist_entry, *album_entry, *date_entry, *tracknum_entry, *comment_entry;
-static GtkWidget *replaygain_reference, *replaygain_track_gain, *replaygain_album_gain, *replaygain_track_peak, *replaygain_album_peak;
-static GtkWidget *genre_combo;
-static GtkWidget *flac_samplerate, *flac_channels, *flac_bits_per_sample, *flac_blocksize, *flac_filesize, *flac_samples, *flac_bitrate;
-
-static gchar *current_filename = NULL;
-static FLAC__StreamMetadata *tags_ = NULL;
-
-static const gchar *vorbis_genres[] =
-{
- N_("Blues"), N_("Classic Rock"), N_("Country"), N_("Dance"),
- N_("Disco"), N_("Funk"), N_("Grunge"), N_("Hip-Hop"),
- N_("Jazz"), N_("Metal"), N_("New Age"), N_("Oldies"),
- N_("Other"), N_("Pop"), N_("R&B"), N_("Rap"), N_("Reggae"),
- N_("Rock"), N_("Techno"), N_("Industrial"), N_("Alternative"),
- N_("Ska"), N_("Death Metal"), N_("Pranks"), N_("Soundtrack"),
- N_("Euro-Techno"), N_("Ambient"), N_("Trip-Hop"), N_("Vocal"),
- N_("Jazz+Funk"), N_("Fusion"), N_("Trance"), N_("Classical"),
- N_("Instrumental"), N_("Acid"), N_("House"), N_("Game"),
- N_("Sound Clip"), N_("Gospel"), N_("Noise"), N_("Alt"),
- N_("Bass"), N_("Soul"), N_("Punk"), N_("Space"),
- N_("Meditative"), N_("Instrumental Pop"),
- N_("Instrumental Rock"), N_("Ethnic"), N_("Gothic"),
- N_("Darkwave"), N_("Techno-Industrial"), N_("Electronic"),
- N_("Pop-Folk"), N_("Eurodance"), N_("Dream"),
- N_("Southern Rock"), N_("Comedy"), N_("Cult"),
- N_("Gangsta Rap"), N_("Top 40"), N_("Christian Rap"),
- N_("Pop/Funk"), N_("Jungle"), N_("Native American"),
- N_("Cabaret"), N_("New Wave"), N_("Psychedelic"), N_("Rave"),
- N_("Showtunes"), N_("Trailer"), N_("Lo-Fi"), N_("Tribal"),
- N_("Acid Punk"), N_("Acid Jazz"), N_("Polka"), N_("Retro"),
- N_("Musical"), N_("Rock & Roll"), N_("Hard Rock"), N_("Folk"),
- N_("Folk/Rock"), N_("National Folk"), N_("Swing"),
- N_("Fast-Fusion"), N_("Bebob"), N_("Latin"), N_("Revival"),
- N_("Celtic"), N_("Bluegrass"), N_("Avantgarde"),
- N_("Gothic Rock"), N_("Progressive Rock"),
- N_("Psychedelic Rock"), N_("Symphonic Rock"), N_("Slow Rock"),
- N_("Big Band"), N_("Chorus"), N_("Easy Listening"),
- N_("Acoustic"), N_("Humour"), N_("Speech"), N_("Chanson"),
- N_("Opera"), N_("Chamber Music"), N_("Sonata"), N_("Symphony"),
- N_("Booty Bass"), N_("Primus"), N_("Porn Groove"),
- N_("Satire"), N_("Slow Jam"), N_("Club"), N_("Tango"),
- N_("Samba"), N_("Folklore"), N_("Ballad"), N_("Power Ballad"),
- N_("Rhythmic Soul"), N_("Freestyle"), N_("Duet"),
- N_("Punk Rock"), N_("Drum Solo"), N_("A Cappella"),
- N_("Euro-House"), N_("Dance Hall"), N_("Goa"),
- N_("Drum & Bass"), N_("Club-House"), N_("Hardcore"),
- N_("Terror"), N_("Indie"), N_("BritPop"), N_("Negerpunk"),
- N_("Polsk Punk"), N_("Beat"), N_("Christian Gangsta Rap"),
- N_("Heavy Metal"), N_("Black Metal"), N_("Crossover"),
- N_("Contemporary Christian"), N_("Christian Rock"),
- N_("Merengue"), N_("Salsa"), N_("Thrash Metal"),
- N_("Anime"), N_("JPop"), N_("Synthpop")
-};
-
-static void label_set_text(GtkWidget * label, char *str, ...)
-{
- va_list args;
- gchar *tempstr;
-
- va_start(args, str);
- tempstr = g_strdup_vprintf(str, args);
- va_end(args);
-
- gtk_label_set_text(GTK_LABEL(label), tempstr);
- g_free(tempstr);
-}
-
-static void set_entry_tag(GtkEntry * entry, const char * utf8)
-{
- if(utf8) {
- if(flac_cfg.title.convert_char_set) {
- char *text = convert_from_utf8_to_user(utf8);
- gtk_entry_set_text(entry, text);
- free(text);
- }
- else
- gtk_entry_set_text(entry, utf8);
- }
- else
- gtk_entry_set_text(entry, "");
-}
-
-static void get_entry_tag(GtkEntry * entry, const char *name)
-{
- gchar *text;
- char *utf8;
-
- text = gtk_entry_get_text(entry);
- if (!text || strlen(text) == 0)
- return;
- if(flac_cfg.title.convert_char_set)
- utf8 = convert_from_user_to_utf8(text);
- else
- utf8 = text;
-
- FLAC_plugin__tags_add_tag_utf8(tags_, name, utf8, /*separator=*/0);
-
- if(flac_cfg.title.convert_char_set)
- free(utf8);
-}
-
-static void show_tag(void)
-{
- set_entry_tag(GTK_ENTRY(title_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "TITLE"));
- set_entry_tag(GTK_ENTRY(artist_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "ARTIST"));
- set_entry_tag(GTK_ENTRY(album_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "ALBUM"));
- set_entry_tag(GTK_ENTRY(date_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "DATE"));
- set_entry_tag(GTK_ENTRY(tracknum_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "TRACKNUMBER"));
- set_entry_tag(GTK_ENTRY(comment_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "DESCRIPTION"));
- set_entry_tag(GTK_ENTRY(GTK_COMBO(genre_combo)->entry), FLAC_plugin__tags_get_tag_utf8(tags_, "GENRE"));
-}
-
-static void save_tag(GtkWidget * w, gpointer data)
-{
- (void)w;
- (void)data;
-
- FLAC_plugin__tags_delete_tag(tags_, "TITLE");
- FLAC_plugin__tags_delete_tag(tags_, "ARTIST");
- FLAC_plugin__tags_delete_tag(tags_, "ALBUM");
- FLAC_plugin__tags_delete_tag(tags_, "DATE");
- FLAC_plugin__tags_delete_tag(tags_, "TRACKNUMBER");
- FLAC_plugin__tags_delete_tag(tags_, "DESCRIPTION");
- FLAC_plugin__tags_delete_tag(tags_, "GENRE");
-
- get_entry_tag(GTK_ENTRY(title_entry) , "TITLE");
- get_entry_tag(GTK_ENTRY(artist_entry) , "ARTIST");
- get_entry_tag(GTK_ENTRY(album_entry) , "ALBUM");
- get_entry_tag(GTK_ENTRY(date_entry) , "DATE");
- get_entry_tag(GTK_ENTRY(tracknum_entry) , "TRACKNUMBER");
- get_entry_tag(GTK_ENTRY(comment_entry) , "DESCRIPTION");
- get_entry_tag(GTK_ENTRY(GTK_COMBO(genre_combo)->entry), "GENRE");
-
- FLAC_plugin__tags_set(current_filename, tags_);
- gtk_widget_destroy(window);
-}
-
-static void remove_tag(GtkWidget * w, gpointer data)
-{
- (void)w;
- (void)data;
-
- FLAC_plugin__tags_delete_tag(tags_, "TITLE");
- FLAC_plugin__tags_delete_tag(tags_, "ARTIST");
- FLAC_plugin__tags_delete_tag(tags_, "ALBUM");
- FLAC_plugin__tags_delete_tag(tags_, "DATE");
- FLAC_plugin__tags_delete_tag(tags_, "TRACKNUMBER");
- FLAC_plugin__tags_delete_tag(tags_, "DESCRIPTION");
- FLAC_plugin__tags_delete_tag(tags_, "GENRE");
-
- FLAC_plugin__tags_set(current_filename, tags_);
- gtk_widget_destroy(window);
-}
-
-static void show_file_info(void)
-{
- FLAC__StreamMetadata streaminfo;
- struct stat _stat;
-
- gtk_label_set_text(GTK_LABEL(flac_samplerate), "");
- gtk_label_set_text(GTK_LABEL(flac_channels), "");
- gtk_label_set_text(GTK_LABEL(flac_bits_per_sample), "");
- gtk_label_set_text(GTK_LABEL(flac_blocksize), "");
- gtk_label_set_text(GTK_LABEL(flac_filesize), "");
- gtk_label_set_text(GTK_LABEL(flac_samples), "");
- gtk_label_set_text(GTK_LABEL(flac_bitrate), "");
-
- if(!FLAC__metadata_get_streaminfo(current_filename, &streaminfo)) {
- return;
- }
-
- label_set_text(flac_samplerate, _("Samplerate: %d Hz"), streaminfo.data.stream_info.sample_rate);
- label_set_text(flac_channels, _("Channels: %d"), streaminfo.data.stream_info.channels);
- label_set_text(flac_bits_per_sample, _("Bits/Sample: %d"), streaminfo.data.stream_info.bits_per_sample);
- if(streaminfo.data.stream_info.min_blocksize == streaminfo.data.stream_info.max_blocksize)
- label_set_text(flac_blocksize, _("Blocksize: %d"), streaminfo.data.stream_info.min_blocksize);
- else
- label_set_text(flac_blocksize, _("Blocksize: variable\n min/max: %d/%d"), streaminfo.data.stream_info.min_blocksize, streaminfo.data.stream_info.max_blocksize);
-
- if (streaminfo.data.stream_info.total_samples)
- label_set_text(flac_samples, _("Samples: %" PRIu64 "\nLength: %d:%.2d"),
- streaminfo.data.stream_info.total_samples,
- (int)(streaminfo.data.stream_info.total_samples / streaminfo.data.stream_info.sample_rate / 60),
- (int)(streaminfo.data.stream_info.total_samples / streaminfo.data.stream_info.sample_rate % 60));
-
- if(!stat(current_filename, &_stat) && S_ISREG(_stat.st_mode)) {
- label_set_text(flac_filesize, _("Filesize: %zd B"), _stat.st_size);
- if (streaminfo.data.stream_info.total_samples)
- label_set_text(flac_bitrate, _("Avg. bitrate: %.1f kb/s\nCompression ratio: %.1f%%"),
- 8.0 * (float)(_stat.st_size) / (1000.0 * (float)streaminfo.data.stream_info.total_samples / (float)streaminfo.data.stream_info.sample_rate),
- 100.0 * (float)_stat.st_size / (float)(streaminfo.data.stream_info.bits_per_sample / 8 * streaminfo.data.stream_info.channels * streaminfo.data.stream_info.total_samples));
- }
-}
-
-static void show_replaygain(void)
-{
- /* known limitation: If only one of gain and peak is set, neither will be shown. This is true for
- * both track and album replaygain tags. Written so it will be easy to fix, with some trouble. */
-
- gtk_label_set_text(GTK_LABEL(replaygain_reference), "");
- gtk_label_set_text(GTK_LABEL(replaygain_track_gain), "");
- gtk_label_set_text(GTK_LABEL(replaygain_album_gain), "");
- gtk_label_set_text(GTK_LABEL(replaygain_track_peak), "");
- gtk_label_set_text(GTK_LABEL(replaygain_album_peak), "");
-
- double reference, track_gain, track_peak, album_gain, album_peak;
- FLAC__bool reference_set, track_gain_set, track_peak_set, album_gain_set, album_peak_set;
-
- if(!FLAC_plugin__replaygain_get_from_file(
- current_filename,
- &reference, &reference_set,
- &track_gain, &track_gain_set,
- &album_gain, &album_gain_set,
- &track_peak, &track_peak_set,
- &album_peak, &album_peak_set
- ))
- return;
-
- if(reference_set)
- label_set_text(replaygain_reference, _("ReplayGain Reference Loudness: %2.1f dB"), reference);
- if(track_gain_set)
- label_set_text(replaygain_track_gain, _("ReplayGain Track Gain: %+2.2f dB"), track_gain);
- if(album_gain_set)
- label_set_text(replaygain_album_gain, _("ReplayGain Album Gain: %+2.2f dB"), album_gain);
- if(track_peak_set)
- label_set_text(replaygain_track_peak, _("ReplayGain Track Peak: %1.8f"), track_peak);
- if(album_peak_set)
- label_set_text(replaygain_album_peak, _("ReplayGain Album Peak: %1.8f"), album_peak);
-}
-
-void FLAC_XMMS__file_info_box(char *filename)
-{
- uint32_t i;
- gchar *title;
-
- if (!window)
- {
- GtkWidget *vbox, *hbox, *left_vbox, *table;
- GtkWidget *flac_frame, *flac_box;
- GtkWidget *label, *filename_hbox;
- GtkWidget *bbox, *save, *remove, *cancel;
-
- window = gtk_window_new(GTK_WINDOW_DIALOG);
- gtk_window_set_policy(GTK_WINDOW(window), FALSE, FALSE, FALSE);
- gtk_signal_connect(GTK_OBJECT(window), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &window);
- gtk_container_set_border_width(GTK_CONTAINER(window), 10);
-
- vbox = gtk_vbox_new(FALSE, 10);
- gtk_container_add(GTK_CONTAINER(window), vbox);
-
- filename_hbox = gtk_hbox_new(FALSE, 5);
- gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0);
-
- label = gtk_label_new(_("Filename:"));
- gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0);
- filename_entry = gtk_entry_new();
- gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE);
- gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0);
-
- hbox = gtk_hbox_new(FALSE, 10);
- gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0);
-
- left_vbox = gtk_vbox_new(FALSE, 10);
- gtk_box_pack_start(GTK_BOX(hbox), left_vbox, FALSE, FALSE, 0);
-
- tag_frame = gtk_frame_new(_("Tag:"));
- gtk_box_pack_start(GTK_BOX(left_vbox), tag_frame, FALSE, FALSE, 0);
-
- table = gtk_table_new(5, 5, FALSE);
- gtk_container_set_border_width(GTK_CONTAINER(table), 5);
- gtk_container_add(GTK_CONTAINER(tag_frame), table);
-
- label = gtk_label_new(_("Title:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 5, 5);
-
- title_entry = gtk_entry_new();
- gtk_table_attach(GTK_TABLE(table), title_entry, 1, 4, 0, 1, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Artist:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 5, 5);
-
- artist_entry = gtk_entry_new();
- gtk_table_attach(GTK_TABLE(table), artist_entry, 1, 4, 1, 2, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Album:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3, GTK_FILL, GTK_FILL, 5, 5);
-
- album_entry = gtk_entry_new();
- gtk_table_attach(GTK_TABLE(table), album_entry, 1, 4, 2, 3, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Comment:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, GTK_FILL, 5, 5);
-
- comment_entry = gtk_entry_new();
- gtk_table_attach(GTK_TABLE(table), comment_entry, 1, 4, 3, 4, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Date:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 4, 5, GTK_FILL, GTK_FILL, 5, 5);
-
- date_entry = gtk_entry_new();
- gtk_widget_set_usize(date_entry, 40, -1);
- gtk_table_attach(GTK_TABLE(table), date_entry, 1, 2, 4, 5, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Track number:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 2, 3, 4, 5, GTK_FILL, GTK_FILL, 5, 5);
-
- tracknum_entry = gtk_entry_new();
- gtk_widget_set_usize(tracknum_entry, 40, -1);
- gtk_table_attach(GTK_TABLE(table), tracknum_entry, 3, 4, 4, 5, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- label = gtk_label_new(_("Genre:"));
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, 5, 6, GTK_FILL, GTK_FILL, 5, 5);
-
- genre_combo = gtk_combo_new();
- gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(genre_combo)->entry), TRUE);
-
- if (!genre_list)
- {
- for (i = 0; i < sizeof(vorbis_genres) / sizeof(*vorbis_genres) ; i++)
- genre_list = g_list_prepend(genre_list, (char *)vorbis_genres[i]);
- genre_list = g_list_prepend(genre_list, "");
- genre_list = g_list_sort(genre_list, (GCompareFunc)g_strcasecmp);
- }
- gtk_combo_set_popdown_strings(GTK_COMBO(genre_combo), genre_list);
-
- gtk_table_attach(GTK_TABLE(table), genre_combo, 1, 4, 5, 6, GTK_FILL | GTK_EXPAND | GTK_SHRINK, GTK_FILL | GTK_EXPAND | GTK_SHRINK, 0, 5);
-
- bbox = gtk_hbutton_box_new();
- gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
- gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
- gtk_box_pack_start(GTK_BOX(left_vbox), bbox, FALSE, FALSE, 0);
-
- save = gtk_button_new_with_label(_("Save"));
- gtk_signal_connect(GTK_OBJECT(save), "clicked", GTK_SIGNAL_FUNC(save_tag), NULL);
- GTK_WIDGET_SET_FLAGS(save, GTK_CAN_DEFAULT);
- gtk_box_pack_start(GTK_BOX(bbox), save, TRUE, TRUE, 0);
- gtk_widget_grab_default(save);
-
- remove= gtk_button_new_with_label(_("Remove Tag"));
- gtk_signal_connect(GTK_OBJECT(remove), "clicked", GTK_SIGNAL_FUNC(remove_tag), NULL);
- GTK_WIDGET_SET_FLAGS(remove, GTK_CAN_DEFAULT);
- gtk_box_pack_start(GTK_BOX(bbox), remove, TRUE, TRUE, 0);
-
- cancel = gtk_button_new_with_label(_("Cancel"));
- gtk_signal_connect_object(GTK_OBJECT(cancel), "clicked", GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(window));
- GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
- gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0);
-
- flac_frame = gtk_frame_new(_("FLAC Info:"));
- gtk_box_pack_start(GTK_BOX(hbox), flac_frame, FALSE, FALSE, 0);
-
- flac_box = gtk_vbox_new(FALSE, 5);
- gtk_container_add(GTK_CONTAINER(flac_frame), flac_box);
- gtk_container_set_border_width(GTK_CONTAINER(flac_box), 10);
- gtk_box_set_spacing(GTK_BOX(flac_box), 0);
-
- flac_samplerate = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_samplerate), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_samplerate), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_samplerate, FALSE, FALSE, 0);
-
- flac_channels = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_channels), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_channels), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_channels, FALSE, FALSE, 0);
-
- flac_bits_per_sample = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_bits_per_sample), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_bits_per_sample), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_bits_per_sample, FALSE, FALSE, 0);
-
- flac_blocksize = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_blocksize), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_blocksize), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_blocksize, FALSE, FALSE, 0);
-
- flac_filesize = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_filesize), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_filesize), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_filesize, FALSE, FALSE, 0);
-
- flac_samples = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_samples), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_samples), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_samples, FALSE, FALSE, 0);
-
- flac_bitrate = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(flac_bitrate), 0, 0);
- gtk_label_set_justify(GTK_LABEL(flac_bitrate), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), flac_bitrate, FALSE, FALSE, 0);
-
- replaygain_reference = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(replaygain_reference), 0, 0);
- gtk_label_set_justify(GTK_LABEL(replaygain_reference), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), replaygain_reference, FALSE, FALSE, 0);
-
- replaygain_track_gain = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(replaygain_track_gain), 0, 0);
- gtk_label_set_justify(GTK_LABEL(replaygain_track_gain), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), replaygain_track_gain, FALSE, FALSE, 0);
-
- replaygain_album_gain = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(replaygain_album_gain), 0, 0);
- gtk_label_set_justify(GTK_LABEL(replaygain_album_gain), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), replaygain_album_gain, FALSE, FALSE, 0);
-
- replaygain_track_peak = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(replaygain_track_peak), 0, 0);
- gtk_label_set_justify(GTK_LABEL(replaygain_track_peak), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), replaygain_track_peak, FALSE, FALSE, 0);
-
- replaygain_album_peak = gtk_label_new("");
- gtk_misc_set_alignment(GTK_MISC(replaygain_album_peak), 0, 0);
- gtk_label_set_justify(GTK_LABEL(replaygain_album_peak), GTK_JUSTIFY_LEFT);
- gtk_box_pack_start(GTK_BOX(flac_box), replaygain_album_peak, FALSE, FALSE, 0);
-
- gtk_widget_show_all(window);
- }
-
- if(current_filename)
- g_free(current_filename);
- if(!(current_filename = g_strdup(filename)))
- return;
-
- title = g_strdup_printf(_("File Info - %s"), g_basename(filename));
- gtk_window_set_title(GTK_WINDOW(window), title);
- g_free(title);
-
- gtk_entry_set_text(GTK_ENTRY(filename_entry), filename);
- gtk_editable_set_position(GTK_EDITABLE(filename_entry), -1);
-
- if(tags_)
- FLAC_plugin__tags_destroy(&tags_);
-
- FLAC_plugin__tags_get(current_filename, &tags_);
-
- show_tag();
- show_file_info();
- show_replaygain();
-
- gtk_widget_set_sensitive(tag_frame, TRUE);
-}
diff --git a/src/plugin_xmms/http.c b/src/plugin_xmms/http.c
deleted file mode 100644
index 161d1b3d..00000000
--- a/src/plugin_xmms/http.c
+++ /dev/null
@@ -1,899 +0,0 @@
-/* XMMS - Cross-platform multimedia player
- * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * with this program; if not, write to the Free Software Foundation, Inc.,
- */
-/* modified for FLAC support by Steven Richman (2003) */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <netdb.h>
-#include <glib.h>
-#include <string.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <errno.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <inttypes.h>
-
-#include <pthread.h>
-
-#include <xmms/util.h>
-#include <xmms/plugin.h>
-
-#include "FLAC/format.h"
-#include "configure.h"
-#include "locale_hack.h"
-
-/* on FreeBSD we get socklen_t from <sys/socket.h> */
-#if (!defined HAVE_SOCKLEN_T) && !defined(__FreeBSD__)
-typedef uint32_t socklen_t;
-#endif
-
-#define min(x,y) ((x)<(y)?(x):(y))
-#define min3(x,y,z) (min(x,y)<(z)?min(x,y):(z))
-#define min4(x,y,z,w) (min3(x,y,z)<(w)?min3(x,y,z):(w))
-
-static gchar *icy_name = NULL;
-static gint icy_metaint = 0;
-
-extern InputPlugin flac_ip;
-
-/* Static udp channel functions */
-static int udp_establish_listener (gint *sock);
-static int udp_check_for_data(gint sock);
-
-static char *flac_http_get_title(char *url);
-
-static gboolean prebuffering, going, eof = FALSE;
-static gint sock, rd_index, wr_index, buffer_length, prebuffer_length;
-static guint64 buffer_read = 0;
-static gchar *buffer;
-static guint64 offset;
-static pthread_t thread;
-static GtkWidget *error_dialog = NULL;
-
-static FILE *output_file = NULL;
-
-#define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
-
-/* Encode the string S of length LENGTH to base64 format and place it
- to STORE. STORE will be 0-terminated, and must point to a writable
- buffer of at least 1+BASE64_LENGTH(length) bytes. */
-static void base64_encode (const gchar *s, gchar *store, gint length)
-{
- /* Conversion table. */
- static gchar tbl[64] = {
- 'A','B','C','D','E','F','G','H',
- 'I','J','K','L','M','N','O','P',
- 'Q','R','S','T','U','V','W','X',
- 'Y','Z','a','b','c','d','e','f',
- 'g','h','i','j','k','l','m','n',
- 'o','p','q','r','s','t','u','v',
- 'w','x','y','z','0','1','2','3',
- '4','5','6','7','8','9','+','/'
- };
- gint i;
- guchar *p = (guchar *)store;
-
- /* Transform the 3x8 bits to 4x6 bits, as required by base64. */
- for (i = 0; i < length; i += 3)
- {
- *p++ = tbl[s[0] >> 2];
- *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
- *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
- *p++ = tbl[s[2] & 0x3f];
- s += 3;
- }
- /* Pad the result if necessary... */
- if (i == length + 1)
- *(p - 1) = '=';
- else if (i == length + 2)
- *(p - 1) = *(p - 2) = '=';
- /* ...and zero-terminate it. */
- *p = '\0';
-}
-
-/* Create the authentication header contents for the `Basic' scheme.
- This is done by encoding the string `USER:PASS' in base64 and
- prepending `HEADER: Basic ' to it. */
-static gchar *basic_authentication_encode (const gchar *user, const gchar *passwd, const gchar *header)
-{
- gchar *t1, *t2, *res;
- gint len1 = strlen (user) + 1 + strlen (passwd);
- gint len2 = BASE64_LENGTH (len1);
-
- t1 = g_strdup_printf("%s:%s", user, passwd);
- t2 = g_malloc0(len2 + 1);
- base64_encode (t1, t2, len1);
- res = g_strdup_printf("%s: Basic %s\r\n", header, t2);
- g_free(t2);
- g_free(t1);
-
- return res;
-}
-
-static void parse_url(const gchar * url, gchar ** user, gchar ** pass, gchar ** host, int *port, gchar ** filename)
-{
- gchar *h, *p, *pt, *f, *temp, *ptr;
-
- temp = g_strdup(url);
- ptr = temp;
-
- if (!strncasecmp("http://", ptr, 7))
- ptr += 7;
- h = strchr(ptr, '@');
- f = strchr(ptr, '/');
- if (h != NULL && (!f || h < f))
- {
- *h = '\0';
- p = strchr(ptr, ':');
- if (p != NULL && p < h)
- {
- *p = '\0';
- p++;
- *pass = g_strdup(p);
- }
- else
- *pass = NULL;
- *user = g_strdup(ptr);
- h++;
- ptr = h;
- }
- else
- {
- *user = NULL;
- *pass = NULL;
- h = ptr;
- }
- pt = strchr(ptr, ':');
- if (pt != NULL && (f == NULL || pt < f))
- {
- *pt = '\0';
- *port = atoi(pt + 1);
- }
- else
- {
- if (f)
- *f = '\0';
- *port = 80;
- }
- *host = g_strdup(h);
-
- if (f)
- *filename = g_strdup(f + 1);
- else
- *filename = NULL;
- g_free(temp);
-}
-
-void flac_http_close(void)
-{
- going = FALSE;
-
- pthread_join(thread, NULL);
- g_free(icy_name);
- icy_name = NULL;
-}
-
-
-static gint http_used(void)
-{
- if (wr_index >= rd_index)
- return wr_index - rd_index;
- return buffer_length - (rd_index - wr_index);
-}
-
-static gint http_free(void)
-{
- if (rd_index > wr_index)
- return (rd_index - wr_index) - 1;
- return (buffer_length - (wr_index - rd_index)) - 1;
-}
-
-static void http_wait_for_data(gint bytes)
-{
- while ((prebuffering || http_used() < bytes) && !eof && going)
- xmms_usleep(10000);
-}
-
-static void show_error_message(gchar *error)
-{
- if(!error_dialog)
- {
- GDK_THREADS_ENTER();
- error_dialog = xmms_show_message(_("Error"), error, _("Ok"), FALSE,
- NULL, NULL);
- gtk_signal_connect(GTK_OBJECT(error_dialog),
- "destroy",
- GTK_SIGNAL_FUNC(gtk_widget_destroyed),
- &error_dialog);
- GDK_THREADS_LEAVE();
- }
-}
-
-int flac_http_read(gpointer data, gint length)
-{
- gint len, cnt, off = 0, meta_len, meta_off = 0, i;
- gchar *meta_data, **tags, *temp, *title;
- if (length > buffer_length) {
- length = buffer_length;
- }
-
- http_wait_for_data(length);
-
- if (!going)
- return 0;
- len = min(http_used(), length);
-
- while (len && http_used())
- {
- if ((flac_cfg.stream.cast_title_streaming) && (icy_metaint > 0) && (buffer_read % icy_metaint) == 0 && (buffer_read > 0))
- {
- meta_len = *((guchar *) buffer + rd_index) * 16;
- rd_index = (rd_index + 1) % buffer_length;
- if (meta_len > 0)
- {
- http_wait_for_data(meta_len);
- meta_data = g_malloc0(meta_len);
- if (http_used() >= meta_len)
- {
- while (meta_len)
- {
- cnt = min(meta_len, buffer_length - rd_index);
- memcpy(meta_data + meta_off, buffer + rd_index, cnt);
- rd_index = (rd_index + cnt) % buffer_length;
- meta_len -= cnt;
- meta_off += cnt;
- }
- tags = g_strsplit(meta_data, "';", 0);
-
- for (i = 0; tags[i]; i++)
- {
- if (!strncasecmp(tags[i], "StreamTitle=", 12))
- {
- temp = g_strdup(tags[i] + 13);
- title = g_strdup_printf("%s (%s)", temp, icy_name);
- set_track_info(title, -1);
- g_free(title);
- g_free(temp);
- }
-
- }
- g_strfreev(tags);
-
- }
- g_free(meta_data);
- }
- if (!http_used())
- http_wait_for_data(length - off);
- cnt = min3(len, buffer_length - rd_index, http_used());
- }
- else if ((icy_metaint > 0) && (flac_cfg.stream.cast_title_streaming))
- cnt = min4(len, buffer_length - rd_index, http_used(), icy_metaint - (gint) (buffer_read % icy_metaint));
- else
- cnt = min3(len, buffer_length - rd_index, http_used());
- if (output_file)
- fwrite(buffer + rd_index, 1, cnt, output_file);
-
- memcpy((gchar *)data + off, buffer + rd_index, cnt);
- rd_index = (rd_index + cnt) % buffer_length;
- buffer_read += cnt;
- len -= cnt;
- off += cnt;
- }
- if (!off) {
- fprintf(stderr, "returning zero\n");
- }
- return off;
-}
-
-static gboolean http_check_for_data(void)
-{
-
- fd_set set;
- struct timeval tv;
- gint ret;
-
- tv.tv_sec = 0;
- tv.tv_usec = 20000;
- FD_ZERO(&set);
- FD_SET(sock, &set);
- ret = select(sock + 1, &set, NULL, NULL, &tv);
- if (ret > 0)
- return TRUE;
- return FALSE;
-}
-
-gint flac_http_read_line(gchar * buf, gint size)
-{
- gint i = 0;
-
- while (going && i < size - 1)
- {
- if (http_check_for_data())
- {
- if (read(sock, buf + i, 1) <= 0)
- return -1;
- if (buf[i] == '\n')
- break;
- if (buf[i] != '\r')
- i++;
- }
- }
- if (!going)
- return -1;
- buf[i] = '\0';
- return i;
-}
-
-/* returns the file descriptor of the socket, or -1 on error */
-static int http_connect (gchar *url_, gboolean head, guint64 offset)
-{
- gchar line[1024], *user, *pass, *host, *filename,
- *status, *url, *temp, *file;
- gchar *chost;
- gint cnt, error, port, cport;
- socklen_t err_len;
- gboolean redirect;
- int udp_sock = 0;
- fd_set set;
- struct hostent *hp;
- struct sockaddr_in address;
- struct timeval tv;
-
- url = g_strdup (url_);
-
- do
- {
- redirect=FALSE;
-
- g_strstrip(url);
-
- parse_url(url, &user, &pass, &host, &port, &filename);
-
- if ((!filename || !*filename) && url[strlen(url) - 1] != '/')
- temp = g_strconcat(url, "/", NULL);
- else
- temp = g_strdup(url);
- g_free(url);
- url = temp;
-
- chost = flac_cfg.stream.use_proxy ? flac_cfg.stream.proxy_host : host;
- cport = flac_cfg.stream.use_proxy ? flac_cfg.stream.proxy_port : port;
-
- sock = socket(AF_INET, SOCK_STREAM, 0);
- fcntl(sock, F_SETFL, O_NONBLOCK);
- address.sin_family = AF_INET;
-
- status = g_strdup_printf(_("LOOKING UP %s"), chost);
- flac_ip.set_info_text(status);
- g_free(status);
-
- if (!(hp = gethostbyname(chost)))
- {
- status = g_strdup_printf(_("Couldn't look up host %s"), chost);
- show_error_message(status);
- g_free(status);
-
- flac_ip.set_info_text(NULL);
- eof = TRUE;
- }
-
- if (!eof)
- {
- memcpy(&address.sin_addr.s_addr, *(hp->h_addr_list), sizeof (address.sin_addr.s_addr));
- address.sin_port = (gint) g_htons(cport);
-
- status = g_strdup_printf(_("CONNECTING TO %s:%d"), chost, cport);
- flac_ip.set_info_text(status);
- g_free(status);
- if (connect(sock, (struct sockaddr *) &address, sizeof (struct sockaddr_in)) == -1)
- {
- if (errno != EINPROGRESS)
- {
- status = g_strdup_printf(_("Couldn't connect to host %s"), chost);
- show_error_message(status);
- g_free(status);
-
- flac_ip.set_info_text(NULL);
- eof = TRUE;
- }
- }
- while (going)
- {
- tv.tv_sec = 0;
- tv.tv_usec = 10000;
- FD_ZERO(&set);
- FD_SET(sock, &set);
- if (select(sock + 1, NULL, &set, NULL, &tv) > 0)
- {
- err_len = sizeof (error);
- getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &err_len);
- if (error)
- {
- status = g_strdup_printf(_("Couldn't connect to host %s"),
- chost);
- show_error_message(status);
- g_free(status);
-
- flac_ip.set_info_text(NULL);
- eof = TRUE;
-
- }
- break;
- }
- }
- if (!eof)
- {
- gchar *auth = NULL, *proxy_auth = NULL;
- gchar udpspace[30];
- int udp_port;
-
- if (flac_cfg.stream.use_udp_channel)
- {
- udp_port = udp_establish_listener (&udp_sock);
- if (udp_port > 0)
- flac_snprintf (udpspace, sizeof (udpspace), "x-audiocast-udpport: %d\r\n", udp_port);
- else
- udp_sock = 0;
- }
-
- if(user && pass)
- auth = basic_authentication_encode(user, pass, "Authorization");
-
- if (flac_cfg.stream.use_proxy)
- {
- file = g_strdup(url);
- if(flac_cfg.stream.proxy_use_auth && flac_cfg.stream.proxy_user && flac_cfg.stream.proxy_pass)
- {
- proxy_auth = basic_authentication_encode(flac_cfg.stream.proxy_user,
- flac_cfg.stream.proxy_pass,
- "Proxy-Authorization");
- }
- }
- else
- file = g_strconcat("/", filename, NULL);
-
- temp = g_strdup_printf("GET %s HTTP/1.0\r\n"
- "Host: %s\r\n"
- "User-Agent: %s/%s\r\n"
- "%s%s%s%s",
- file, host, "Reference FLAC Player", FLAC__VERSION_STRING,
- proxy_auth ? proxy_auth : "", auth ? auth : "",
- flac_cfg.stream.cast_title_streaming ? "Icy-MetaData:1\r\n" : "",
- flac_cfg.stream.use_udp_channel ? udpspace : "");
- if (offset && !head) {
- gchar *temp_dead = temp;
- temp = g_strdup_printf ("%sRange: %" PRIu64 "-\r\n", temp, offset);
- fputs (temp, stderr);
- g_free (temp_dead);
- }
-
- g_free(file);
- if(proxy_auth)
- g_free(proxy_auth);
- if(auth)
- g_free(auth);
- write(sock, temp, strlen(temp));
- write(sock, "\r\n", 2);
- g_free(temp);
- flac_ip.set_info_text(_("CONNECTED: WAITING FOR REPLY"));
- while (going && !eof)
- {
- if (http_check_for_data())
- {
- if (flac_http_read_line(line, 1024))
- {
- status = strchr(line, ' ');
- if (status)
- {
- if (status[1] == '2')
- break;
- else if(status[1] == '3' && status[2] == '0' && status[3] == '2')
- {
- while(going)
- {
- if(http_check_for_data())
- {
- if((cnt = flac_http_read_line(line, 1024)) != -1)
- {
- if(!cnt)
- break;
- if(!strncmp(line, "Location:", 9))
- {
- g_free(url);
- url = g_strdup(line+10);
- }
- }
- else
- {
- eof=TRUE;
- flac_ip.set_info_text(NULL);
- break;
- }
- }
- }
- redirect=TRUE;
- break;
- }
- else
- {
- status = g_strdup_printf(_("Couldn't connect to host %s\nServer reported: %s"), chost, status);
- show_error_message(status);
- g_free(status);
- break;
- }
- }
- }
- else
- {
- eof = TRUE;
- flac_ip.set_info_text(NULL);
- }
- }
- }
-
- while (going && !redirect)
- {
- if (http_check_for_data())
- {
- if ((cnt = flac_http_read_line(line, 1024)) != -1)
- {
- if (!cnt)
- break;
- if (!strncmp(line, "icy-name:", 9))
- icy_name = g_strdup(line + 9);
- else if (!strncmp(line, "x-audiocast-name:", 17))
- icy_name = g_strdup(line + 17);
- if (!strncmp(line, "icy-metaint:", 12))
- icy_metaint = atoi(line + 12);
- if (!strncmp(line, "x-audiocast-udpport:", 20)) {
-#ifndef NDEBUG
- fprintf (stderr, "Server wants udp messages on port %d\n", atoi (line + 20));
-#endif
- /*udp_serverport = atoi (line + 20);*/
- }
-
- }
- else
- {
- eof = TRUE;
- flac_ip.set_info_text(NULL);
- break;
- }
- }
- }
- }
- }
-
- if(redirect)
- {
- if (output_file)
- {
- fclose(output_file);
- output_file = NULL;
- }
- close(sock);
- }
-
- g_free(user);
- g_free(pass);
- g_free(host);
- g_free(filename);
- } while(redirect);
-
- g_free(url);
- return eof ? -1 : sock;
-}
-
-static void *http_buffer_loop(void *arg)
-{
- gchar *status, *url, *temp, *file;
- gint cnt, written;
- int udp_sock = 0;
-
- url = (gchar *) arg;
- sock = http_connect (url, false, offset);
-
- if (sock >= 0 && flac_cfg.stream.save_http_stream) {
- gchar *output_name;
- file = flac_http_get_title(url);
- output_name = file;
- if (!strncasecmp(output_name, "http://", 7))
- output_name += 7;
- temp = strrchr(output_name, '.');
- if (temp && (!strcasecmp(temp, ".fla") || !strcasecmp(temp, ".flac")))
- *temp = '\0';
-
- while ((temp = strchr(output_name, '/')))
- *temp = '_';
- output_name = g_strdup_printf("%s/%s.flac", flac_cfg.stream.save_http_path, output_name);
-
- g_free(file);
-
- output_file = fopen(output_name, "wb");
- g_free(output_name);
- }
-
- while (going)
- {
-
- if (!http_used() && !flac_ip.output->buffer_playing())
- prebuffering = TRUE;
- if (http_free() > 0 && !eof)
- {
- if (http_check_for_data())
- {
- cnt = min(http_free(), buffer_length - wr_index);
- if (cnt > 1024)
- cnt = 1024;
- written = read(sock, buffer + wr_index, cnt);
- if (written <= 0)
- {
- eof = TRUE;
- if (prebuffering)
- {
- prebuffering = FALSE;
-
- flac_ip.set_info_text(NULL);
- }
-
- }
- else
- wr_index = (wr_index + written) % buffer_length;
- }
-
- if (prebuffering)
- {
- if (http_used() > prebuffer_length)
- {
- prebuffering = FALSE;
- flac_ip.set_info_text(NULL);
- }
- else
- {
- status = g_strdup_printf(_("PRE-BUFFERING: %dKB/%dKB"), http_used() / 1024, prebuffer_length / 1024);
- flac_ip.set_info_text(status);
- g_free(status);
- }
-
- }
- }
- else
- xmms_usleep(10000);
-
- if (flac_cfg.stream.use_udp_channel && udp_sock != 0)
- if (udp_check_for_data(udp_sock) < 0)
- {
- close(udp_sock);
- udp_sock = 0;
- }
- }
- if (output_file)
- {
- fclose(output_file);
- output_file = NULL;
- }
- if (sock >= 0) {
- close(sock);
- }
- if (udp_sock != 0)
- close(udp_sock);
-
- g_free(buffer);
- g_free(url);
-
- pthread_exit(NULL);
- return NULL; /* avoid compiler warning */
-}
-
-int flac_http_open(const gchar * _url, guint64 _offset)
-{
- gchar *url;
-
- url = g_strdup(_url);
-
- rd_index = 0;
- wr_index = 0;
- buffer_length = flac_cfg.stream.http_buffer_size * 1024;
- prebuffer_length = (buffer_length * flac_cfg.stream.http_prebuffer) / 100;
- buffer_read = 0;
- icy_metaint = 0;
- prebuffering = TRUE;
- going = TRUE;
- eof = FALSE;
- buffer = g_malloc(buffer_length);
- offset = _offset;
-
- pthread_create(&thread, NULL, http_buffer_loop, url);
-
- return 0;
-}
-
-char *flac_http_get_title(char *url)
-{
- if (icy_name)
- return g_strdup(icy_name);
- if (g_basename(url) && strlen(g_basename(url)) > 0)
- return g_strdup(g_basename(url));
- return g_strdup(url);
-}
-
-/* Start UDP Channel specific stuff */
-
-/* Find a good local udp port and bind udp_sock to it, return the port */
-static int udp_establish_listener(int *sock)
-{
- struct sockaddr_in sin;
- socklen_t sinlen = sizeof (struct sockaddr_in);
-
-#ifndef NDEBUG
- fprintf (stderr,"Establishing udp listener\n");
-#endif
-
- if ((*sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
- {
- g_log(NULL, G_LOG_LEVEL_CRITICAL,
- "udp_establish_listener(): unable to create socket");
- return -1;
- }
-
- memset(&sin, 0, sinlen);
- sin.sin_family = AF_INET;
- sin.sin_addr.s_addr = g_htonl(INADDR_ANY);
-
- if (bind(*sock, (struct sockaddr *)&sin, sinlen) < 0)
- {
- g_log(NULL, G_LOG_LEVEL_CRITICAL,
- "udp_establish_listener(): Failed to bind socket to localhost: %s", strerror(errno));
- close(*sock);
- return -1;
- }
- if (fcntl(*sock, F_SETFL, O_NONBLOCK) < 0)
- {
- g_log(NULL, G_LOG_LEVEL_CRITICAL,
- "udp_establish_listener(): Failed to set flags: %s", strerror(errno));
- close(*sock);
- return -1;
- }
-
- memset(&sin, 0, sinlen);
- if (getsockname(*sock, (struct sockaddr *)&sin, &sinlen) < 0)
- {
- g_log(NULL, G_LOG_LEVEL_CRITICAL,
- "udp_establish_listener(): Failed to retrieve socket info: %s", strerror(errno));
- close(*sock);
- return -1;
- }
-
-#ifndef NDEBUG
- fprintf (stderr,"Listening on local %s:%d\n", inet_ntoa(sin.sin_addr), g_ntohs(sin.sin_port));
-#endif
-
- return g_ntohs(sin.sin_port);
-}
-
-static int udp_check_for_data(int sock)
-{
- char buf[1025], **lines;
- char *valptr;
- gchar *title;
- gint len, i;
- struct sockaddr_in from;
- socklen_t fromlen;
-
- fromlen = sizeof(struct sockaddr_in);
-
- if ((len = recvfrom(sock, buf, 1024, 0, (struct sockaddr *)&from, &fromlen)) < 0)
- {
- if (errno != EAGAIN)
- {
- g_log(NULL, G_LOG_LEVEL_CRITICAL,
- "udp_read_data(): Error reading from socket: %s", strerror(errno));
- return -1;
- }
- return 0;
- }
- buf[len] = '\0';
-#ifndef NDEBUG
- fprintf (stderr,"Received: [%s]\n", buf);
-#endif
- lines = g_strsplit(buf, "\n", 0);
- if (!lines)
- return 0;
-
- for (i = 0; lines[i]; i++)
- {
- while ((lines[i][strlen(lines[i]) - 1] == '\n') ||
- (lines[i][strlen(lines[i]) - 1] == '\r'))
- lines[i][strlen(lines[i]) - 1] = '\0';
-
- valptr = strchr(lines[i], ':');
-
- if (!valptr)
- continue;
- else
- valptr++;
-
- g_strstrip(valptr);
- if (!strlen(valptr))
- continue;
-
- if (strstr(lines[i], "x-audiocast-streamtitle") != NULL)
- {
- title = g_strdup_printf ("%s (%s)", valptr, icy_name);
- if (going)
- set_track_info(title, -1);
- g_free (title);
- }
-
-#if 0
- else if (strstr(lines[i], "x-audiocast-streamlength") != NULL)
- {
- if (atoi(valptr) != -1)
- set_track_info(NULL, atoi(valptr));
- }
-#endif
-
- else if (strstr(lines[i], "x-audiocast-streammsg") != NULL)
- {
- /* set_track_info(title, -1); */
-/* xmms_show_message(_("Message"), valptr, _("Ok"), */
-/* FALSE, NULL, NULL); */
- g_message("Stream_message: %s", valptr);
- }
-
-#if 0
- /* Use this to direct your webbrowser.. yeah right.. */
- else if (strstr(lines[i], "x-audiocast-streamurl") != NULL)
- {
- if (lasturl && g_strcmp (valptr, lasturl))
- {
- c_message (stderr, "Song URL: %s\n", valptr);
- g_free (lasturl);
- lasturl = g_strdup (valptr);
- }
- }
-#endif
- else if (strstr(lines[i], "x-audiocast-udpseqnr:") != NULL)
- {
- gchar obuf[60];
- flac_snprintf(obuf, sizeof (obuf), "x-audiocast-ack: %ld \r\n", atol(valptr));
- if (sendto(sock, obuf, strlen(obuf), 0, (struct sockaddr *) &from, fromlen) < 0)
- {
- g_log(NULL, G_LOG_LEVEL_WARNING,
- "udp_check_for_data(): Unable to send ack to server: %s", strerror(errno));
- }
-#ifndef NDEBUG
- else
- fprintf(stderr,"Sent ack: %s", obuf);
- fprintf (stderr,"Remote: %s:%d\n", inet_ntoa(from.sin_addr), g_ntohs(from.sin_port));
-#endif
- }
- }
- g_strfreev(lines);
- return 0;
-}
diff --git a/src/plugin_xmms/http.h b/src/plugin_xmms/http.h
deleted file mode 100644
index a78e162b..00000000
--- a/src/plugin_xmms/http.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef FLAC__PLUGIN_XMMS__HTTP_H
-#define FLAC__PLUGIN_XMMS__HTTP_H
-
-extern int flac_http_open(const gchar * url, guint64 offset);
-extern void flac_http_close(void);
-extern int flac_http_read(gpointer data, gint length);
-
-
-#endif
diff --git a/src/plugin_xmms/locale_hack.h b/src/plugin_xmms/locale_hack.h
deleted file mode 100644
index c67e3814..00000000
--- a/src/plugin_xmms/locale_hack.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * Based on:
- * locale.h - 2000/05/05 13:10 Jerome Couderc
- * EasyTAG - Tag editor for MP3 and OGG files
- * Copyright (C) 1999-2001 Håvard Kvålen <havardk@xmms.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-/*
- * Gettext support for EasyTAG
- */
-
-
-#ifndef FLAC__PLUGIN_COMMON__LOCALE_HACK_H
-#define FLAC__PLUGIN_COMMON__LOCALE_HACK_H
-
-#include <locale.h>
-
-/*
- * Standard gettext macros.
- */
-#ifdef ENABLE_NLS
-# include <libintl.h>
-# define _(String) gettext (String)
-# ifdef gettext_noop
-# define N_(String) gettext_noop (String)
-# else
-# define N_(String) (String)
-# endif
-#else
-# define textdomain(String) (String)
-# define gettext(String) (String)
-# define dgettext(Domain,Message) (Message)
-# define dcgettext(Domain,Message,Type) (Message)
-# define bindtextdomain(Domain,Directory) (Domain)
-# define _(String) (String)
-# define N_(String) (String)
-#endif
-
-
-#endif
diff --git a/src/plugin_xmms/plugin.c b/src/plugin_xmms/plugin.c
deleted file mode 100644
index a38ccf43..00000000
--- a/src/plugin_xmms/plugin.c
+++ /dev/null
@@ -1,688 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2000-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <limits.h>
-#include <pthread.h>
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-#include <glib.h>
-#include <pwd.h>
-#include <sys/types.h>
-#include <unistd.h>
-
-#include <xmms/plugin.h>
-#include <xmms/util.h>
-#include <xmms/configfile.h>
-#include <xmms/titlestring.h>
-
-#ifdef HAVE_LANGINFO_CODESET
-#include <langinfo.h>
-#endif
-
-#include "FLAC/all.h"
-#include "plugin_common/all.h"
-#include "share/grabbag.h"
-#include "share/replaygain_synthesis.h"
-#include "configure.h"
-#include "charset.h"
-#include "http.h"
-#include "tag.h"
-
-#ifdef min
-#undef min
-#endif
-#define min(x,y) ((x)<(y)?(x):(y))
-
-extern void FLAC_XMMS__file_info_box(char *filename);
-
-typedef struct {
- FLAC__bool abort_flag;
- FLAC__bool is_playing;
- FLAC__bool is_http_source;
- FLAC__bool eof;
- FLAC__bool play_thread_open; /* if true, is_playing must also be true */
- FLAC__uint64 total_samples;
- uint32_t bits_per_sample;
- uint32_t channels;
- uint32_t sample_rate;
- int length_in_msec; /* int (instead of FLAC__uint64) only because that's what XMMS uses; seeking won't work right if this maxes out */
- gchar *title;
- AFormat sample_format;
- uint32_t sample_format_bytes_per_sample;
- int seek_to_in_sec;
- FLAC__bool has_replaygain;
- double replay_scale;
- DitherContext dither_context;
-} stream_data_struct;
-
-static void FLAC_XMMS__init(void);
-static int FLAC_XMMS__is_our_file(char *filename);
-static void FLAC_XMMS__play_file(char *filename);
-static void FLAC_XMMS__stop(void);
-static void FLAC_XMMS__pause(short p);
-static void FLAC_XMMS__seek(int time);
-static int FLAC_XMMS__get_time(void);
-static void FLAC_XMMS__cleanup(void);
-static void FLAC_XMMS__get_song_info(char *filename, char **title, int *length);
-
-static void *play_loop_(void *arg);
-
-static FLAC__bool safe_decoder_init_(const char *filename, FLAC__StreamDecoder *decoder);
-static void safe_decoder_finish_(FLAC__StreamDecoder *decoder);
-static void safe_decoder_delete_(FLAC__StreamDecoder *decoder);
-
-static FLAC__StreamDecoderReadStatus http_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
-static FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
-static void metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
-static void error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
-
-InputPlugin flac_ip =
-{
- NULL,
- NULL,
- "FLAC Player v" VERSION,
- FLAC_XMMS__init,
- FLAC_XMMS__aboutbox,
- FLAC_XMMS__configure,
- FLAC_XMMS__is_our_file,
- NULL,
- FLAC_XMMS__play_file,
- FLAC_XMMS__stop,
- FLAC_XMMS__pause,
- FLAC_XMMS__seek,
- NULL,
- FLAC_XMMS__get_time,
- NULL,
- NULL,
- FLAC_XMMS__cleanup,
- NULL,
- NULL,
- NULL,
- NULL,
- FLAC_XMMS__get_song_info,
- FLAC_XMMS__file_info_box,
- NULL
-};
-
-#define SAMPLES_PER_WRITE 512
-#define SAMPLE_BUFFER_SIZE ((FLAC__MAX_BLOCK_SIZE + SAMPLES_PER_WRITE) * FLAC_PLUGIN__MAX_SUPPORTED_CHANNELS * (24/8))
-static FLAC__byte sample_buffer_[SAMPLE_BUFFER_SIZE];
-static uint32_t sample_buffer_first_, sample_buffer_last_;
-
-static FLAC__StreamDecoder *decoder_ = 0;
-static stream_data_struct stream_data_;
-static pthread_t decode_thread_;
-static FLAC__bool audio_error_ = false;
-static FLAC__bool is_big_endian_host_;
-
-#define BITRATE_HIST_SEGMENT_MSEC 500
-/* 500ms * 50 = 25s should be enough */
-#define BITRATE_HIST_SIZE 50
-static uint32_t bitrate_history_[BITRATE_HIST_SIZE];
-
-
-FLAC_API InputPlugin *get_iplugin_info(void)
-{
- flac_ip.description = g_strdup_printf("Reference FLAC Player v%s", FLAC__VERSION_STRING);
- return &flac_ip;
-}
-
-void set_track_info(const char* title, int length_in_msec)
-{
- if (stream_data_.is_playing) {
- flac_ip.set_info((char*) title, length_in_msec, stream_data_.sample_rate * stream_data_.channels * stream_data_.bits_per_sample, stream_data_.sample_rate, stream_data_.channels);
- }
-}
-
-static gchar* homedir(void)
-{
- gchar *result;
- char *env_home = getenv("HOME");
- if (env_home) {
- result = g_strdup (env_home);
- } else {
- uid_t uid = getuid();
- struct passwd *pwent;
- do {
- pwent = getpwent();
- } while (pwent && pwent->pw_uid != uid);
- result = pwent ? g_strdup (pwent->pw_dir) : NULL;
- endpwent();
- }
- return result;
-}
-
-static FLAC__bool is_http_source(const char *source)
-{
- return 0 == strncasecmp(source, "http://", 7);
-}
-
-void FLAC_XMMS__init(void)
-{
- ConfigFile *cfg;
- FLAC__uint32 test = 1;
-
- is_big_endian_host_ = (*((FLAC__byte*)(&test)))? false : true;
-
- flac_cfg.title.tag_override = FALSE;
- if (flac_cfg.title.tag_format)
- g_free(flac_cfg.title.tag_format);
- flac_cfg.title.convert_char_set = FALSE;
-
- cfg = xmms_cfg_open_default_file();
-
- /* title */
-
- xmms_cfg_read_boolean(cfg, "flac", "title.tag_override", &flac_cfg.title.tag_override);
-
- if(!xmms_cfg_read_string(cfg, "flac", "title.tag_format", &flac_cfg.title.tag_format))
- flac_cfg.title.tag_format = g_strdup("%p - %t");
-
- xmms_cfg_read_boolean(cfg, "flac", "title.convert_char_set", &flac_cfg.title.convert_char_set);
-
- if(!xmms_cfg_read_string(cfg, "flac", "title.user_char_set", &flac_cfg.title.user_char_set))
- flac_cfg.title.user_char_set = FLAC_plugin__charset_get_current();
-
- /* replaygain */
-
- xmms_cfg_read_boolean(cfg, "flac", "output.replaygain.enable", &flac_cfg.output.replaygain.enable);
-
- xmms_cfg_read_boolean(cfg, "flac", "output.replaygain.album_mode", &flac_cfg.output.replaygain.album_mode);
-
- if(!xmms_cfg_read_int(cfg, "flac", "output.replaygain.preamp", &flac_cfg.output.replaygain.preamp))
- flac_cfg.output.replaygain.preamp = 0;
-
- xmms_cfg_read_boolean(cfg, "flac", "output.replaygain.hard_limit", &flac_cfg.output.replaygain.hard_limit);
-
- xmms_cfg_read_boolean(cfg, "flac", "output.resolution.normal.dither_24_to_16", &flac_cfg.output.resolution.normal.dither_24_to_16);
- xmms_cfg_read_boolean(cfg, "flac", "output.resolution.replaygain.dither", &flac_cfg.output.resolution.replaygain.dither);
-
- if(!xmms_cfg_read_int(cfg, "flac", "output.resolution.replaygain.noise_shaping", &flac_cfg.output.resolution.replaygain.noise_shaping))
- flac_cfg.output.resolution.replaygain.noise_shaping = 1;
-
- if(!xmms_cfg_read_int(cfg, "flac", "output.resolution.replaygain.bps_out", &flac_cfg.output.resolution.replaygain.bps_out))
- flac_cfg.output.resolution.replaygain.bps_out = 16;
-
- /* stream */
-
- xmms_cfg_read_int(cfg, "flac", "stream.http_buffer_size", &flac_cfg.stream.http_buffer_size);
- xmms_cfg_read_int(cfg, "flac", "stream.http_prebuffer", &flac_cfg.stream.http_prebuffer);
- xmms_cfg_read_boolean(cfg, "flac", "stream.use_proxy", &flac_cfg.stream.use_proxy);
- if(flac_cfg.stream.proxy_host)
- g_free(flac_cfg.stream.proxy_host);
- if(!xmms_cfg_read_string(cfg, "flac", "stream.proxy_host", &flac_cfg.stream.proxy_host))
- flac_cfg.stream.proxy_host = g_strdup("");
- xmms_cfg_read_int(cfg, "flac", "stream.proxy_port", &flac_cfg.stream.proxy_port);
- xmms_cfg_read_boolean(cfg, "flac", "stream.proxy_use_auth", &flac_cfg.stream.proxy_use_auth);
- if(flac_cfg.stream.proxy_user)
- g_free(flac_cfg.stream.proxy_user);
- flac_cfg.stream.proxy_user = NULL;
- xmms_cfg_read_string(cfg, "flac", "stream.proxy_user", &flac_cfg.stream.proxy_user);
- if(flac_cfg.stream.proxy_pass)
- g_free(flac_cfg.stream.proxy_pass);
- flac_cfg.stream.proxy_pass = NULL;
- xmms_cfg_read_string(cfg, "flac", "stream.proxy_pass", &flac_cfg.stream.proxy_pass);
- xmms_cfg_read_boolean(cfg, "flac", "stream.save_http_stream", &flac_cfg.stream.save_http_stream);
- if (flac_cfg.stream.save_http_path)
- g_free (flac_cfg.stream.save_http_path);
- if (!xmms_cfg_read_string(cfg, "flac", "stream.save_http_path", &flac_cfg.stream.save_http_path) || ! *flac_cfg.stream.save_http_path) {
- if (flac_cfg.stream.save_http_path)
- g_free (flac_cfg.stream.save_http_path);
- flac_cfg.stream.save_http_path = homedir();
- }
- xmms_cfg_read_boolean(cfg, "flac", "stream.cast_title_streaming", &flac_cfg.stream.cast_title_streaming);
- xmms_cfg_read_boolean(cfg, "flac", "stream.use_udp_channel", &flac_cfg.stream.use_udp_channel);
-
- decoder_ = FLAC__stream_decoder_new();
-
- xmms_cfg_free(cfg);
-}
-
-int FLAC_XMMS__is_our_file(char *filename)
-{
- char *ext;
-
- ext = strrchr(filename, '.');
- if(ext)
- if(!strcasecmp(ext, ".flac") || !strcasecmp(ext, ".fla"))
- return 1;
- return 0;
-}
-
-void FLAC_XMMS__play_file(char *filename)
-{
- FILE *f;
-
- sample_buffer_first_ = sample_buffer_last_ = 0;
- audio_error_ = false;
- stream_data_.abort_flag = false;
- stream_data_.is_playing = false;
- stream_data_.is_http_source = is_http_source(filename);
- stream_data_.eof = false;
- stream_data_.play_thread_open = false;
- stream_data_.has_replaygain = false;
-
- if(!is_http_source(filename)) {
- if(0 == (f = fopen(filename, "r")))
- return;
- fclose(f);
- }
-
- if(decoder_ == 0)
- return;
-
- if(!safe_decoder_init_(filename, decoder_))
- return;
-
- if(stream_data_.has_replaygain && flac_cfg.output.replaygain.enable) {
- if(flac_cfg.output.resolution.replaygain.bps_out == 8) {
- stream_data_.sample_format = FMT_U8;
- stream_data_.sample_format_bytes_per_sample = 1;
- }
- else if(flac_cfg.output.resolution.replaygain.bps_out == 16) {
- stream_data_.sample_format = (is_big_endian_host_) ? FMT_S16_BE : FMT_S16_LE;
- stream_data_.sample_format_bytes_per_sample = 2;
- }
- else {
- /*@@@ need some error here like wa2: MessageBox(mod_.hMainWindow, "ERROR: plugin can only handle 8/16-bit samples\n", "ERROR: plugin can only handle 8/16-bit samples", 0); */
- fprintf(stderr, "libxmms-flac: can't handle %d bit output\n", flac_cfg.output.resolution.replaygain.bps_out);
- safe_decoder_finish_(decoder_);
- return;
- }
- }
- else {
- if(stream_data_.bits_per_sample == 8) {
- stream_data_.sample_format = FMT_U8;
- stream_data_.sample_format_bytes_per_sample = 1;
- }
- else if(stream_data_.bits_per_sample == 16 || (stream_data_.bits_per_sample == 24 && flac_cfg.output.resolution.normal.dither_24_to_16)) {
- stream_data_.sample_format = (is_big_endian_host_) ? FMT_S16_BE : FMT_S16_LE;
- stream_data_.sample_format_bytes_per_sample = 2;
- }
- else {
- /*@@@ need some error here like wa2: MessageBox(mod_.hMainWindow, "ERROR: plugin can only handle 8/16-bit samples\n", "ERROR: plugin can only handle 8/16-bit samples", 0); */
- fprintf(stderr, "libxmms-flac: can't handle %u bit output\n", stream_data_.bits_per_sample);
- safe_decoder_finish_(decoder_);
- return;
- }
- }
- FLAC__replaygain_synthesis__init_dither_context(&stream_data_.dither_context, stream_data_.sample_format_bytes_per_sample * 8, flac_cfg.output.resolution.replaygain.noise_shaping);
- stream_data_.is_playing = true;
-
- if(flac_ip.output->open_audio(stream_data_.sample_format, stream_data_.sample_rate, stream_data_.channels) == 0) {
- audio_error_ = true;
- safe_decoder_finish_(decoder_);
- return;
- }
-
- stream_data_.title = flac_format_song_title(filename);
- flac_ip.set_info(stream_data_.title, stream_data_.length_in_msec, stream_data_.sample_rate * stream_data_.channels * stream_data_.bits_per_sample, stream_data_.sample_rate, stream_data_.channels);
-
- stream_data_.seek_to_in_sec = -1;
- stream_data_.play_thread_open = true;
- pthread_create(&decode_thread_, NULL, play_loop_, NULL);
-}
-
-void FLAC_XMMS__stop(void)
-{
- if(stream_data_.is_playing) {
- stream_data_.is_playing = false;
- if(stream_data_.play_thread_open) {
- stream_data_.play_thread_open = false;
- pthread_join(decode_thread_, NULL);
- }
- flac_ip.output->close_audio();
- safe_decoder_finish_(decoder_);
- }
-}
-
-void FLAC_XMMS__pause(short p)
-{
- flac_ip.output->pause(p);
-}
-
-void FLAC_XMMS__seek(int time)
-{
- if(!stream_data_.is_http_source) {
- stream_data_.seek_to_in_sec = time;
- stream_data_.eof = false;
-
- while(stream_data_.seek_to_in_sec != -1)
- xmms_usleep(10000);
- }
-}
-
-int FLAC_XMMS__get_time(void)
-{
- if(audio_error_)
- return -2;
- if(!stream_data_.is_playing || (stream_data_.eof && !flac_ip.output->buffer_playing()))
- return -1;
- else
- return flac_ip.output->output_time();
-}
-
-void FLAC_XMMS__cleanup(void)
-{
- safe_decoder_delete_(decoder_);
- decoder_ = 0;
-}
-
-void FLAC_XMMS__get_song_info(char *filename, char **title, int *length_in_msec)
-{
- FLAC__StreamMetadata streaminfo;
-
- if(0 == filename)
- filename = "";
-
- if(!FLAC__metadata_get_streaminfo(filename, &streaminfo)) {
- /* @@@ how to report the error? */
- if(title) {
- if (!is_http_source(filename)) {
- static const char *errtitle = "Invalid FLAC File: ";
- if(strlen(errtitle) + 1 + strlen(filename) + 1 + 1 < strlen(filename)) { /* overflow check */
- *title = NULL;
- }
- else {
- size_t len = strlen(errtitle) + 1 + strlen(filename) + 1 + 1;
- *title = g_malloc(len);
- flac_snprintf(*title, len, "%s\"%s\"", errtitle, filename);
- }
- } else {
- *title = NULL;
- }
- }
- if(length_in_msec)
- *length_in_msec = -1;
- return;
- }
-
- if(title) {
- *title = flac_format_song_title(filename);
- }
- if(length_in_msec) {
- FLAC__uint64 l = (FLAC__uint64)((double)streaminfo.data.stream_info.total_samples / (double)streaminfo.data.stream_info.sample_rate * 1000.0 + 0.5);
- if (l > INT_MAX)
- l = INT_MAX;
- *length_in_msec = (int)l;
- }
-}
-
-/***********************************************************************
- * local routines
- **********************************************************************/
-
-void *play_loop_(void *arg)
-{
- uint32_t written_time_last = 0, bh_index_last_w = 0, bh_index_last_o = BITRATE_HIST_SIZE, blocksize = 1;
- FLAC__uint64 decode_position_last = 0, decode_position_frame_last = 0, decode_position_frame = 0;
-
- (void)arg;
-
- while(stream_data_.is_playing) {
- if(!stream_data_.eof) {
- while(sample_buffer_last_ - sample_buffer_first_ < SAMPLES_PER_WRITE) {
- uint32_t s;
-
- s = sample_buffer_last_ - sample_buffer_first_;
- if(FLAC__stream_decoder_get_state(decoder_) == FLAC__STREAM_DECODER_END_OF_STREAM) {
- stream_data_.eof = true;
- break;
- }
- else if(!FLAC__stream_decoder_process_single(decoder_)) {
- /*@@@ this should probably be a dialog */
- fprintf(stderr, "libxmms-flac: READ ERROR processing frame\n");
- stream_data_.eof = true;
- break;
- }
- blocksize = sample_buffer_last_ - sample_buffer_first_ - s;
- decode_position_frame_last = decode_position_frame;
- if(stream_data_.is_http_source || !FLAC__stream_decoder_get_decode_position(decoder_, &decode_position_frame))
- decode_position_frame = 0;
- }
- if(sample_buffer_last_ - sample_buffer_first_ > 0) {
- const uint32_t n = min(sample_buffer_last_ - sample_buffer_first_, SAMPLES_PER_WRITE);
- int bytes = n * stream_data_.channels * stream_data_.sample_format_bytes_per_sample;
- FLAC__byte *sample_buffer_start = sample_buffer_ + sample_buffer_first_ * stream_data_.channels * stream_data_.sample_format_bytes_per_sample;
- uint32_t written_time, bh_index_w;
- FLAC__uint64 decode_position;
-
- sample_buffer_first_ += n;
- flac_ip.add_vis_pcm(flac_ip.output->written_time(), stream_data_.sample_format, stream_data_.channels, bytes, sample_buffer_start);
- while(flac_ip.output->buffer_free() < (int)bytes && stream_data_.is_playing && stream_data_.seek_to_in_sec == -1)
- xmms_usleep(10000);
- if(stream_data_.is_playing && stream_data_.seek_to_in_sec == -1)
- flac_ip.output->write_audio(sample_buffer_start, bytes);
-
- /* compute current bitrate */
-
- written_time = flac_ip.output->written_time();
- bh_index_w = written_time / BITRATE_HIST_SEGMENT_MSEC % BITRATE_HIST_SIZE;
- if(bh_index_w != bh_index_last_w) {
- bh_index_last_w = bh_index_w;
- decode_position = decode_position_frame - (double)(sample_buffer_last_ - sample_buffer_first_) * (double)(decode_position_frame - decode_position_frame_last) / (double)blocksize;
- bitrate_history_[(bh_index_w + BITRATE_HIST_SIZE - 1) % BITRATE_HIST_SIZE] =
- decode_position > decode_position_last && written_time > written_time_last ?
- 8000 * (decode_position - decode_position_last) / (written_time - written_time_last) :
- stream_data_.sample_rate * stream_data_.channels * stream_data_.bits_per_sample;
- decode_position_last = decode_position;
- written_time_last = written_time;
- }
- }
- else {
- stream_data_.eof = true;
- xmms_usleep(10000);
- }
- }
- else
- xmms_usleep(10000);
- if(!stream_data_.is_http_source && stream_data_.seek_to_in_sec != -1) {
- const double distance = (double)stream_data_.seek_to_in_sec * 1000.0 / (double)stream_data_.length_in_msec;
- FLAC__uint64 target_sample = (FLAC__uint64)(distance * (double)stream_data_.total_samples);
- if(stream_data_.total_samples > 0 && target_sample >= stream_data_.total_samples)
- target_sample = stream_data_.total_samples - 1;
- if(FLAC__stream_decoder_seek_absolute(decoder_, target_sample)) {
- flac_ip.output->flush(stream_data_.seek_to_in_sec * 1000);
- bh_index_last_w = bh_index_last_o = flac_ip.output->output_time() / BITRATE_HIST_SEGMENT_MSEC % BITRATE_HIST_SIZE;
- if(!FLAC__stream_decoder_get_decode_position(decoder_, &decode_position_frame))
- decode_position_frame = 0;
- stream_data_.eof = false;
- sample_buffer_first_ = sample_buffer_last_ = 0;
- }
- else if(FLAC__stream_decoder_get_state(decoder_) == FLAC__STREAM_DECODER_SEEK_ERROR) {
- /*@@@ this should probably be a dialog */
- fprintf(stderr, "libxmms-flac: SEEK ERROR\n");
- FLAC__stream_decoder_flush(decoder_);
- stream_data_.eof = false;
- sample_buffer_first_ = sample_buffer_last_ = 0;
- }
- stream_data_.seek_to_in_sec = -1;
- }
- else {
- /* display the right bitrate from history */
- uint32_t bh_index_o = flac_ip.output->output_time() / BITRATE_HIST_SEGMENT_MSEC % BITRATE_HIST_SIZE;
- if(bh_index_o != bh_index_last_o && bh_index_o != bh_index_last_w && bh_index_o != (bh_index_last_w + 1) % BITRATE_HIST_SIZE) {
- bh_index_last_o = bh_index_o;
- flac_ip.set_info(stream_data_.title, stream_data_.length_in_msec, bitrate_history_[bh_index_o], stream_data_.sample_rate, stream_data_.channels);
- }
- }
- }
-
- safe_decoder_finish_(decoder_);
-
- /* are these two calls necessary? */
- flac_ip.output->buffer_free();
- flac_ip.output->buffer_free();
-
- g_free(stream_data_.title);
-
- pthread_exit(NULL);
- return 0; /* to silence the compiler warning about not returning a value */
-}
-
-FLAC__bool safe_decoder_init_(const char *filename, FLAC__StreamDecoder *decoder)
-{
- if(decoder == 0)
- return false;
-
- safe_decoder_finish_(decoder);
-
- FLAC__stream_decoder_set_md5_checking(decoder, false);
- FLAC__stream_decoder_set_metadata_ignore_all(decoder);
- FLAC__stream_decoder_set_metadata_respond(decoder, FLAC__METADATA_TYPE_STREAMINFO);
- FLAC__stream_decoder_set_metadata_respond(decoder, FLAC__METADATA_TYPE_VORBIS_COMMENT);
- if(stream_data_.is_http_source) {
- flac_http_open(filename, 0);
- if(FLAC__stream_decoder_init_stream(decoder, http_read_callback_, /*seek_callback=*/0, /*tell_callback=*/0, /*length_callback=*/0, /*eof_callback=*/0, write_callback_, metadata_callback_, error_callback_, /*client_data=*/&stream_data_) != FLAC__STREAM_DECODER_INIT_STATUS_OK)
- return false;
- }
- else {
- if(FLAC__stream_decoder_init_file(decoder, filename, write_callback_, metadata_callback_, error_callback_, /*client_data=*/&stream_data_) != FLAC__STREAM_DECODER_INIT_STATUS_OK)
- return false;
- }
-
- if(!FLAC__stream_decoder_process_until_end_of_metadata(decoder))
- return false;
-
- return true;
-}
-
-void safe_decoder_finish_(FLAC__StreamDecoder *decoder)
-{
- if(decoder && FLAC__stream_decoder_get_state(decoder) != FLAC__STREAM_DECODER_UNINITIALIZED)
- (void)FLAC__stream_decoder_finish(decoder);
- if(stream_data_.is_http_source)
- flac_http_close();
-}
-
-void safe_decoder_delete_(FLAC__StreamDecoder *decoder)
-{
- if(decoder) {
- safe_decoder_finish_(decoder);
- FLAC__stream_decoder_delete(decoder);
- }
-}
-
-FLAC__StreamDecoderReadStatus http_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
-{
- (void)decoder;
- (void)client_data;
- *bytes = flac_http_read(buffer, *bytes);
- return *bytes ? FLAC__STREAM_DECODER_READ_STATUS_CONTINUE : FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
-}
-
-FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
-{
- stream_data_struct *stream_data = (stream_data_struct *)client_data;
- const uint32_t channels = stream_data->channels, wide_samples = frame->header.blocksize;
- const uint32_t bits_per_sample = stream_data->bits_per_sample;
- FLAC__byte *sample_buffer_start;
-
- (void)decoder;
-
- if(stream_data->abort_flag)
- return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
-
- if((sample_buffer_last_ + wide_samples) > (SAMPLE_BUFFER_SIZE / (channels * stream_data->sample_format_bytes_per_sample))) {
- memmove(sample_buffer_, sample_buffer_ + sample_buffer_first_ * channels * stream_data->sample_format_bytes_per_sample, (sample_buffer_last_ - sample_buffer_first_) * channels * stream_data->sample_format_bytes_per_sample);
- sample_buffer_last_ -= sample_buffer_first_;
- sample_buffer_first_ = 0;
- }
- sample_buffer_start = sample_buffer_ + sample_buffer_last_ * channels * stream_data->sample_format_bytes_per_sample;
- if(stream_data->has_replaygain && flac_cfg.output.replaygain.enable) {
- FLAC__replaygain_synthesis__apply_gain(
- sample_buffer_start,
- !is_big_endian_host_,
- stream_data->sample_format_bytes_per_sample == 1, /* uint32_t_data_out */
- buffer,
- wide_samples,
- channels,
- bits_per_sample,
- stream_data->sample_format_bytes_per_sample * 8,
- stream_data->replay_scale,
- flac_cfg.output.replaygain.hard_limit,
- flac_cfg.output.resolution.replaygain.dither,
- &stream_data->dither_context
- );
- }
- else if(is_big_endian_host_) {
- FLAC__plugin_common__pack_pcm_signed_big_endian(
- sample_buffer_start,
- buffer,
- wide_samples,
- channels,
- bits_per_sample,
- stream_data->sample_format_bytes_per_sample * 8
- );
- }
- else {
- FLAC__plugin_common__pack_pcm_signed_little_endian(
- sample_buffer_start,
- buffer,
- wide_samples,
- channels,
- bits_per_sample,
- stream_data->sample_format_bytes_per_sample * 8
- );
- }
-
- sample_buffer_last_ += wide_samples;
-
- return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
-}
-
-void metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
-{
- stream_data_struct *stream_data = (stream_data_struct *)client_data;
- (void)decoder;
- if(metadata->type == FLAC__METADATA_TYPE_STREAMINFO) {
- stream_data->total_samples = metadata->data.stream_info.total_samples;
- stream_data->bits_per_sample = metadata->data.stream_info.bits_per_sample;
- stream_data->channels = metadata->data.stream_info.channels;
- stream_data->sample_rate = metadata->data.stream_info.sample_rate;
- {
- FLAC__uint64 l = (FLAC__uint64)((double)stream_data->total_samples / (double)stream_data->sample_rate * 1000.0 + 0.5);
- if (l > INT_MAX)
- l = INT_MAX;
- stream_data->length_in_msec = (int)l;
- }
- }
- else if(metadata->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
- double reference, gain, peak;
- if(grabbag__replaygain_load_from_vorbiscomment(metadata, flac_cfg.output.replaygain.album_mode, /*strict=*/false, &reference, &gain, &peak)) {
- stream_data->has_replaygain = true;
- stream_data->replay_scale = grabbag__replaygain_compute_scale_factor(peak, gain, (double)flac_cfg.output.replaygain.preamp, /*prevent_clipping=*/!flac_cfg.output.replaygain.hard_limit);
- }
- }
-}
-
-void error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
-{
- stream_data_struct *stream_data = (stream_data_struct *)client_data;
- (void)decoder;
- if(status != FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC)
- stream_data->abort_flag = true;
-}
diff --git a/src/plugin_xmms/plugin.h b/src/plugin_xmms/plugin.h
deleted file mode 100644
index 7377919f..00000000
--- a/src/plugin_xmms/plugin.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2004-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef FLAC__PLUGIN_XMMS__PLUGIN_H
-#define FLAC__PLUGIN_XMMS__PLUGIN_H
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#if defined(__GNUC_STDC_INLINE__)
-# define G_INLINE_FUNC extern inline __attribute__((gnu_inline))
-#endif
-
-void set_track_info(const char* title, int length_in_msec);
-
-#endif
diff --git a/src/plugin_xmms/tag.c b/src/plugin_xmms/tag.c
deleted file mode 100644
index c18df2c2..00000000
--- a/src/plugin_xmms/tag.c
+++ /dev/null
@@ -1,157 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2000-2009 Josh Coalson
- * Copyright (C) 2011-2022 Xiph.Org Foundation
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * Based on FLAC plugin.c and mpg123 plugin
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "plugin.h"
-
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-#include <glib.h>
-#include <xmms/plugin.h>
-#include <xmms/util.h>
-#include <xmms/configfile.h>
-#include <xmms/titlestring.h>
-
-#include "FLAC/metadata.h"
-#include "plugin_common/tags.h"
-#include "charset.h"
-#include "configure.h"
-
-/*
- * Function local__extname (filename)
- *
- * Return pointer within filename to its extension, or NULL if
- * filename has no extension.
- *
- */
-static char *local__extname(const char *filename)
-{
- char *ext = strrchr(filename, '.');
-
- if (ext != NULL)
- ++ext;
-
- return ext;
-}
-
-static char *local__getstr(char* str)
-{
- if (str && strlen(str) > 0)
- return str;
- return NULL;
-}
-
-static int local__getnum(char* str)
-{
- if (str && strlen(str) > 0)
- return atoi(str);
- return 0;
-}
-
-static char *local__getfield(const FLAC__StreamMetadata *tags, const char *name)
-{
- if (0 != tags) {
- const char *utf8 = FLAC_plugin__tags_get_tag_utf8(tags, name);
- if (0 != utf8) {
- if(flac_cfg.title.convert_char_set)
- return convert_from_utf8_to_user(utf8);
- else
- return strdup(utf8);
- }
- }
-
- return 0;
-}
-
-static void local__safe_free(char *s)
-{
- if (0 != s)
- free(s);
-}
-
-/*
- * Function flac_format_song_title (tag, filename)
- *
- * Create song title according to `tag' and/or `filename' and
- * return it. The title must be subsequently freed using g_free().
- *
- */
-char *flac_format_song_title(char *filename)
-{
- char *ret = NULL;
- TitleInput *input = NULL;
- FLAC__StreamMetadata *tags;
- char *title, *artist, *performer, *album, *date, *tracknumber, *genre, *description;
-
- FLAC_plugin__tags_get(filename, &tags);
-
- title = local__getfield(tags, "TITLE");
- artist = local__getfield(tags, "ARTIST");
- performer = local__getfield(tags, "PERFORMER");
- album = local__getfield(tags, "ALBUM");
- date = local__getfield(tags, "DATE");
- tracknumber = local__getfield(tags, "TRACKNUMBER");
- genre = local__getfield(tags, "GENRE");
- description = local__getfield(tags, "DESCRIPTION");
-
- XMMS_NEW_TITLEINPUT(input);
-
- input->performer = local__getstr(artist);
- if(!input->performer)
- input->performer = local__getstr(performer);
- input->album_name = local__getstr(album);
- input->track_name = local__getstr(title);
- input->track_number = local__getnum(tracknumber);
- input->year = local__getnum(date);
- input->genre = local__getstr(genre);
- input->comment = local__getstr(description);
-
- input->file_name = g_basename(filename);
- input->file_path = filename;
- input->file_ext = local__extname(filename);
- ret = xmms_get_titlestring(flac_cfg.title.tag_override ? flac_cfg.title.tag_format : xmms_get_gentitle_format(), input);
- g_free(input);
-
- if (!ret) {
- /*
- * Format according to filename.
- */
- ret = g_strdup(g_basename(filename));
- if (local__extname(ret) != NULL)
- *(local__extname(ret) - 1) = '\0'; /* removes period */
- }
-
- FLAC_plugin__tags_destroy(&tags);
- local__safe_free(title);
- local__safe_free(artist);
- local__safe_free(performer);
- local__safe_free(album);
- local__safe_free(date);
- local__safe_free(tracknumber);
- local__safe_free(genre);
- local__safe_free(description);
- return ret;
-}
diff --git a/src/plugin_xmms/tag.h b/src/plugin_xmms/tag.h
deleted file mode 100644
index cc5bccf2..00000000
--- a/src/plugin_xmms/tag.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* libxmms-flac - XMMS FLAC input plugin
- * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef FLAC__PLUGIN_XMMS__TAG_H
-#define FLAC__PLUGIN_XMMS__TAG_H
-
-gchar *flac_format_song_title(gchar * filename);
-
-#endif