decoder/faad: remove unnecessary read
Eliminate some overhead when the caller doesn't need the buffer.
This commit is contained in:
parent
5958b78459
commit
47e8fcf37e
|
@ -192,9 +192,7 @@ faad_song_duration(DecoderBuffer *buffer, InputStream &is)
|
||||||
float song_length = adts_song_duration(buffer);
|
float song_length = adts_song_duration(buffer);
|
||||||
|
|
||||||
is.LockSeek(tagsize, SEEK_SET, IgnoreError());
|
is.LockSeek(tagsize, SEEK_SET, IgnoreError());
|
||||||
|
|
||||||
decoder_buffer_clear(buffer);
|
decoder_buffer_clear(buffer);
|
||||||
decoder_buffer_fill(buffer);
|
|
||||||
|
|
||||||
return song_length;
|
return song_length;
|
||||||
} else if (length >= 5 && memcmp(data, "ADIF", 4) == 0) {
|
} else if (length >= 5 && memcmp(data, "ADIF", 4) == 0) {
|
||||||
|
|
Loading…
Reference in New Issue