diff options
author | Max Kellermann <max@duempel.org> | 2008-10-17 17:53:59 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-17 17:53:59 +0200 |
commit | 4984639b7255d72e272f278c95adb1a2cf71b61c (patch) | |
tree | 4751fbdef706d62b77d41c411462fbf6f852f384 /src/inputPlugins/mp4_plugin.c | |
parent | b73ecbb073625b56aaef33f2fa7f102fdc9a6247 (diff) | |
download | mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.tar.gz mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.tar.xz mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.zip |
input_stream: removed nmemb argument
The nmemb argument isn't actually useful, and one of nmemb and size
was always passed as 1. Remove it.
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/mp4_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputPlugins/mp4_plugin.c b/src/inputPlugins/mp4_plugin.c index d284313d4..0e152c3a6 100644 --- a/src/inputPlugins/mp4_plugin.c +++ b/src/inputPlugins/mp4_plugin.c @@ -71,7 +71,7 @@ static int mp4_getAACTrack(mp4ff_t * infile) static uint32_t mp4_inputStreamReadCallback(void *inStream, void *buffer, uint32_t length) { - return readFromInputStream((InputStream *) inStream, buffer, 1, length); + return readFromInputStream((InputStream *) inStream, buffer, length); } static uint32_t mp4_inputStreamSeekCallback(void *inStream, uint64_t position) |