diff options
author | Max Kellermann <max@duempel.org> | 2008-11-16 20:42:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-16 20:42:08 +0100 |
commit | 7591403566971eb19ba7bb16002eaa2689a637c7 (patch) | |
tree | cc08c5542d7e52b3bb3457b1e62fd209ba125be5 /src/decoder/aac_plugin.c | |
parent | 8882f062000ec6f86d932eee7c948d1369901c03 (diff) | |
download | mpd-7591403566971eb19ba7bb16002eaa2689a637c7.tar.gz mpd-7591403566971eb19ba7bb16002eaa2689a637c7.tar.xz mpd-7591403566971eb19ba7bb16002eaa2689a637c7.zip |
input_stream: size==-1 means unknown size
Define the special value "-1" as "unknown size". Previously, there
was no indicator for streams with unknown size, which might confuse
some decoders.
Diffstat (limited to 'src/decoder/aac_plugin.c')
-rw-r--r-- | src/decoder/aac_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c index 95b19735a..d23d43b55 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/aac_plugin.c @@ -186,7 +186,7 @@ static void aac_parse_header(AacBuffer * b, float *length) if (length) *length = -1; - fileread = b->inStream->size; + fileread = b->inStream->size >= 0 ? b->inStream->size : 0; fillAacBuffer(b); |