aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/aac_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:10 +0200
committerEric Wong <normalperson@yhbt.net>2008-08-30 18:44:53 -0700
commit15e76670b40a223ee58c5aae26b2d9540a1b87b8 (patch)
treee6e97b7324302bceabd4576fbe24a76a095c2bf2 /src/inputPlugins/aac_plugin.c
parentd9ae11d885acdca92ce0f17cc455e891e88a0f77 (diff)
downloadmpd-15e76670b40a223ee58c5aae26b2d9540a1b87b8.tar.gz
mpd-15e76670b40a223ee58c5aae26b2d9540a1b87b8.tar.xz
mpd-15e76670b40a223ee58c5aae26b2d9540a1b87b8.zip
aac: make adtsParse() void
adtsParse() always returns 1, and its caller does not use the return value.
Diffstat (limited to 'src/inputPlugins/aac_plugin.c')
-rw-r--r--src/inputPlugins/aac_plugin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c
index 1487a6c2f..353fafd40 100644
--- a/src/inputPlugins/aac_plugin.c
+++ b/src/inputPlugins/aac_plugin.c
@@ -90,7 +90,7 @@ static int adtsSampleRates[] =
16000, 12000, 11025, 8000, 7350, 0, 0, 0
};
-static int adtsParse(AacBuffer * b, float *length)
+static void adtsParse(AacBuffer * b, float *length)
{
unsigned int frames, frameLength;
int sampleRate = 0;
@@ -128,8 +128,6 @@ static int adtsParse(AacBuffer * b, float *length)
framesPerSec = (float)sampleRate / 1024.0;
if (framesPerSec != 0)
*length = (float)frames / framesPerSec;
-
- return 1;
}
static void initAacBuffer(InputStream * inStream, AacBuffer * b, float *length)