decoder/opus: fix mistyped LoadEOSPacket() return value
This commit is contained in:
parent
466b6a23cd
commit
7886a14b74
1
NEWS
1
NEWS
@ -9,6 +9,7 @@ ver 0.19.3 (not yet released)
|
|||||||
- audiofile: fix crash while playing streams
|
- audiofile: fix crash while playing streams
|
||||||
- audiofile: fix bit rate calculation
|
- audiofile: fix bit rate calculation
|
||||||
- ffmpeg: support opus
|
- ffmpeg: support opus
|
||||||
|
- opus: fix bogus duration on streams
|
||||||
* fix distorted audio with soxr resampler
|
* fix distorted audio with soxr resampler
|
||||||
* fix build failure on Mac OS X with non-Apple compilers
|
* fix build failure on Mac OS X with non-Apple compilers
|
||||||
|
|
||||||
|
@ -188,7 +188,7 @@ LoadEOSPacket(InputStream &is, Decoder *decoder, int serialno,
|
|||||||
/* we do this for local files only, because seeking
|
/* we do this for local files only, because seeking
|
||||||
around remote files is expensive and not worth the
|
around remote files is expensive and not worth the
|
||||||
troubl */
|
troubl */
|
||||||
return -1;
|
return false;
|
||||||
|
|
||||||
const auto old_offset = is.GetOffset();
|
const auto old_offset = is.GetOffset();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user