From 4984639b7255d72e272f278c95adb1a2cf71b61c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 17 Oct 2008 17:53:59 +0200 Subject: 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. --- src/inputPlugins/mp4_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inputPlugins/mp4_plugin.c') 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) -- cgit v1.2.3