From a99202a8a4ebda1fcbedb3b024cab3b25c63adad Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 10 Sep 2009 23:04:01 +0200 Subject: 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. --- src/decoder/vorbis_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder/vorbis_plugin.c') 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; } -- cgit v1.2.3