diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-25 20:09:03 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-25 20:09:03 +0000 |
commit | ce10ba4b119faac3eb7c5d1251b1a875d28056c1 (patch) | |
tree | 0770735cd27e4ac6ca137656c341c6ca346e45ab /src/audio.c | |
parent | b6bcc65a454b711b586ca221323f1efba35e6dab (diff) | |
download | mpd-ce10ba4b119faac3eb7c5d1251b1a875d28056c1.tar.gz mpd-ce10ba4b119faac3eb7c5d1251b1a875d28056c1.tar.xz mpd-ce10ba4b119faac3eb7c5d1251b1a875d28056c1.zip |
fix a big time bug in metadataChunk (off by one in an array assignment)
also, now we have metadata in our streams
git-svn-id: https://svn.musicpd.org/mpd/trunk@2337 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c index 75d833be3..f66d25c98 100644 --- a/src/audio.c +++ b/src/audio.c @@ -34,7 +34,7 @@ static AudioFormat * audio_configFormat = NULL; static AudioOutput * aoOutput = NULL; static AudioOutput * shoutOutput = NULL; -static void copyAudioFormat(AudioFormat * dest, AudioFormat * src) { +void copyAudioFormat(AudioFormat * dest, AudioFormat * src) { if(!src) return; dest->sampleRate = src->sampleRate; @@ -182,3 +182,7 @@ void closeAudioDevice() { if(shoutOutput) closeAudioOutput(shoutOutput); closeAudioOutput(aoOutput); } + +void sendMetdataToAudioDevice(MpdTag * tag) { + if(shoutOutput) sendMetadataToAudioOutput(shoutOutput, tag); +} |