diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:10 +0200 |
commit | a6332fd13be233ae177316ac22489876513aee60 (patch) | |
tree | c2809c41b365dbea2715259f10a296b4a667d434 /src/inputPlugins | |
parent | 4ca24b960b53e1775daef44e59aa2ce5c7ecd3fd (diff) | |
download | mpd-a6332fd13be233ae177316ac22489876513aee60.tar.gz mpd-a6332fd13be233ae177316ac22489876513aee60.tar.xz mpd-a6332fd13be233ae177316ac22489876513aee60.zip |
aac: removed unused initAacBuffer() parameters
Since we eliminated the parameters retFileread and retTagsize in all
callers, we can now safely remove it from the function prototype.
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/aac_plugin.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index e725049e2..0e87c8adc 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -132,8 +132,7 @@ static int adtsParse(AacBuffer * b, float *length) return 1; } -static void initAacBuffer(InputStream * inStream, AacBuffer * b, float *length, - size_t * retFileread, size_t * retTagsize) +static void initAacBuffer(InputStream * inStream, AacBuffer * b, float *length) { size_t fileread; size_t bread; @@ -170,11 +169,6 @@ static void initAacBuffer(InputStream * inStream, AacBuffer * b, float *length, fillAacBuffer(b); } - if (retFileread) - *retFileread = fileread; - if (retTagsize) - *retTagsize = tagsize; - if (length == NULL) return; @@ -230,7 +224,7 @@ static float getAacFloatTotalTime(char *file) if (openInputStream(&inStream, file) < 0) return -1; - initAacBuffer(&inStream, &b, &length, NULL, NULL); + initAacBuffer(&inStream, &b, &length); if (length < 0) { decoder = faacDecOpen(); @@ -298,7 +292,7 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) if (openInputStream(&inStream, path) < 0) return -1; - initAacBuffer(&inStream, &b, NULL, NULL, NULL); + initAacBuffer(&inStream, &b, NULL); decoder = faacDecOpen(); |