AUDIO: Fix MSVC warnings
Fixes warning C4245: signed/unsigned mismatch (seems in line with other decoders)
This commit is contained in:
parent
369ba0c4b7
commit
8d17b6c48a
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ public:
|
|||
|
||||
virtual bool rewind();
|
||||
virtual bool seek(const Timestamp &where) { return false; }
|
||||
virtual Timestamp getLength() const { return -1; }
|
||||
virtual Timestamp getLength() const { return Timestamp(); }
|
||||
|
||||
/**
|
||||
* This table is used by some ADPCM variants (IMA and OKI) to adjust the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue