From 5f84fe2717628fcd5689060ca7e4556ade577b4a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 12 Feb 2009 18:39:04 +0100 Subject: aac: fix stream metadata Pass the input_stream object to decoder_data(). Without it, the MPD core does not see stream tags. --- src/decoder/aac_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c index 19a7d7c9c..0d2c2c356 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/aac_plugin.c @@ -430,7 +430,7 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream) sampleBufferLen = sampleCount * 2; - cmd = decoder_data(mpd_decoder, NULL, sampleBuffer, + cmd = decoder_data(mpd_decoder, inStream, sampleBuffer, sampleBufferLen, file_time, bitRate, NULL); if (cmd == DECODE_COMMAND_SEEK) -- cgit v1.2.3