summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-12 10:28:19 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-12 10:28:19 +0200
commit12e957b6df87440007dd1d723c0a174e3bcc91c7 (patch)
tree16661a56b6f22fad2f93eaac3e6e3a57e74d61b8 /src/de/podfetcher/feed
parent68385f848f73dec74fa23ec5c9629306f3953d41 (diff)
downloadAntennaPod-12e957b6df87440007dd1d723c0a174e3bcc91c7.zip
Minor improvements to Mediaplayer
Diffstat (limited to 'src/de/podfetcher/feed')
-rw-r--r--src/de/podfetcher/feed/FeedMedia.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/podfetcher/feed/FeedMedia.java b/src/de/podfetcher/feed/FeedMedia.java
index 51eaf9c7b..a74947411 100644
--- a/src/de/podfetcher/feed/FeedMedia.java
+++ b/src/de/podfetcher/feed/FeedMedia.java
@@ -28,7 +28,7 @@ public class FeedMedia extends FeedFile{
this.download_url = download_url;
}
- public long getDuration() {
+ public int getDuration() {
return duration;
}
@@ -36,7 +36,7 @@ public class FeedMedia extends FeedFile{
this.duration = duration;
}
- public long getPosition() {
+ public int getPosition() {
return position;
}