diff options
author | Max Kellermann <max@duempel.org> | 2009-09-10 23:04:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-09-10 23:04:01 +0200 |
commit | a99202a8a4ebda1fcbedb3b024cab3b25c63adad (patch) | |
tree | f7e5eba6301f569e3593d7f6da42bbd216a05078 | |
parent | e8569af35f5c346a86a2f0dcd4090ac919ac5543 (diff) | |
download | mpd-a99202a8a4ebda1fcbedb3b024cab3b25c63adad.tar.gz mpd-a99202a8a4ebda1fcbedb3b024cab3b25c63adad.tar.xz mpd-a99202a8a4ebda1fcbedb3b024cab3b25c63adad.zip |
decoder/vorbis: revert "faster tag scanning with ov_test_callback()"
This patch made ov_time_total() unusable, and MPD did not know the
duration of songs.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | src/decoder/vorbis_plugin.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,6 @@ ver 0.15.4 (2009/??/??) +* decoders: + - vorbis: revert "faster tag scanning with ov_test_callback()" ver 0.15.3 (2009/08/29) diff --git a/src/decoder/vorbis_plugin.c b/src/decoder/vorbis_plugin.c index 81950eb22..d4f81e91f 100644 --- a/src/decoder/vorbis_plugin.c +++ b/src/decoder/vorbis_plugin.c @@ -383,7 +383,7 @@ vorbis_tag_dup(const char *file) return NULL; } - if (ov_test_callbacks(fp, &vf, NULL, 0, OV_CALLBACKS_STREAMONLY) < 0) { + if (ov_open(fp, &vf, NULL, 0) < 0) { fclose(fp); return NULL; } |