Commit 3e53b9d5 authored by Led's avatar Led

0.12.0

parent 79382483
ver 0.12.0 (2006/??/??) ver 0.12.0 (2006/9/22)
* New audio output code which supports: * New audio output code which supports:
* A plugin-like architecture * A plugin-like architecture
* Non-libao ("native") outputs: * Non-libao ("native") outputs:
......
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for mpd 0.12.0rc4. # Generated by GNU Autoconf 2.59 for mpd 0.12.0.
# #
# Report bugs to <warren.dukes@gmail.com>. # Report bugs to <warren.dukes@gmail.com>.
# #
...@@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} ...@@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package. # Identity of this package.
PACKAGE_NAME='mpd' PACKAGE_NAME='mpd'
PACKAGE_TARNAME='mpd' PACKAGE_TARNAME='mpd'
PACKAGE_VERSION='0.12.0rc4' PACKAGE_VERSION='0.12.0'
PACKAGE_STRING='mpd 0.12.0rc4' PACKAGE_STRING='mpd 0.12.0'
PACKAGE_BUGREPORT='warren.dukes@gmail.com' PACKAGE_BUGREPORT='warren.dukes@gmail.com'
# Factoring default headers for most tests. # Factoring default headers for most tests.
...@@ -965,7 +965,7 @@ if test "$ac_init_help" = "long"; then ...@@ -965,7 +965,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures mpd 0.12.0rc4 to adapt to many kinds of systems. \`configure' configures mpd 0.12.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
...@@ -1031,7 +1031,7 @@ fi ...@@ -1031,7 +1031,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of mpd 0.12.0rc4:";; short | recursive ) echo "Configuration of mpd 0.12.0:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
...@@ -1236,7 +1236,7 @@ fi ...@@ -1236,7 +1236,7 @@ fi
test -n "$ac_init_help" && exit 0 test -n "$ac_init_help" && exit 0
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
mpd configure 0.12.0rc4 mpd configure 0.12.0
generated by GNU Autoconf 2.59 generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc. Copyright (C) 2003 Free Software Foundation, Inc.
...@@ -1250,7 +1250,7 @@ cat >&5 <<_ACEOF ...@@ -1250,7 +1250,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by mpd $as_me 0.12.0rc4, which was It was created by mpd $as_me 0.12.0, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@ $ $0 $@
...@@ -27401,7 +27401,7 @@ _ASBOX ...@@ -27401,7 +27401,7 @@ _ASBOX
} >&5 } >&5
cat >&5 <<_CSEOF cat >&5 <<_CSEOF
This file was extended by mpd $as_me 0.12.0rc4, which was This file was extended by mpd $as_me 0.12.0, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
...@@ -27464,7 +27464,7 @@ _ACEOF ...@@ -27464,7 +27464,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\ ac_cs_version="\\
mpd config.status 0.12.0rc4 mpd config.status 0.12.0
configured by $0, generated by GNU Autoconf 2.59, configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
......
dnl AC_INIT(src/main.c) dnl AC_INIT(src/main.c)
dnl AM_INIT_AUTOMAKE(mpd, 0.12.0rc4) dnl AM_INIT_AUTOMAKE(mpd, 0.12.0)
AC_PREREQ(2.58) AC_PREREQ(2.58)
AC_INIT(mpd, 0.12.0rc4, warren.dukes@gmail.com) AC_INIT(mpd, 0.12.0, warren.dukes@gmail.com)
AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION) AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
AC_SUBST(MPD_LIBS) AC_SUBST(MPD_LIBS)
......
...@@ -41,18 +41,18 @@ void clearOutputBuffer(OutputBuffer * cb) ...@@ -41,18 +41,18 @@ void clearOutputBuffer(OutputBuffer * cb)
{ {
int currentSet = 1; int currentSet = 1;
currentChunk = -1;
cb->end = cb->begin; cb->end = cb->begin;
/* be sure to reset metaChunkSets cause we are skipping over audio /* be sure to reset metaChunkSets cause we are skipping over audio
* audio chunks, and thus skipping over metadata */ * audio chunks, and thus skipping over metadata */
if (sendMetaChunk == 0 && currentMetaChunk >= 0) { if (currentChunk >= 0 && sendMetaChunk == 0 && currentMetaChunk >= 0) {
currentSet = cb->metaChunkSet[currentChunk]; currentSet = cb->metaChunkSet[currentChunk];
} }
clearAllMetaChunkSets(cb); clearAllMetaChunkSets(cb);
if (sendMetaChunk == 0 && currentMetaChunk >= 0) { if (currentChunk >= 0 && sendMetaChunk == 0 && currentMetaChunk >= 0) {
cb->metaChunkSet[currentChunk] = currentSet; cb->metaChunkSet[currentChunk] = currentSet;
} }
currentChunk = -1;
} }
void flushOutputBuffer(OutputBuffer * cb) void flushOutputBuffer(OutputBuffer * cb)
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <errno.h> #include <errno.h>
#include <stddef.h> #include <stddef.h>
volatile sig_atomic_t __caught_signals[NSIG]; static volatile sig_atomic_t __caught_signals[NSIG];
static void __signal_handler(int sig) static void __signal_handler(int sig)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment