aboutsummaryrefslogtreecommitdiffstats
path: root/test/FakeSong.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/LightSong.cxx (renamed from test/FakeSong.cxx)20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/FakeSong.cxx b/src/LightSong.cxx
index e2fae4d6e..af1e801f8 100644
--- a/test/FakeSong.cxx
+++ b/src/LightSong.cxx
@@ -17,17 +17,17 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#include "config.h"
-#include "Song.hxx"
-#include "directory.h"
-#include "Compiler.h"
+#include "LightSong.hxx"
+#include "tag/Tag.hxx"
-#include <stdlib.h>
+double
+LightSong::GetDuration() const
+{
+ if (end_ms > 0)
+ return (end_ms - start_ms) / 1000.0;
-struct directory detached_root;
+ if (tag->time <= 0)
+ return 0;
-Song *
-song_dup_detached(gcc_unused const Song *src)
-{
- abort();
+ return tag->time - start_ms / 1000.0;
}