Skip to content
Snippets Groups Projects
Commit d74653b3 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Additionnal remote control actions

parent 90605cdc
No related branches found
No related tags found
No related merge requests found
......@@ -1092,6 +1092,21 @@ public class PlaybackService extends Service implements IVLCVout.Callback {
public void onSkipToPrevious() {
previous();
}
@Override
public void onSeekTo(long pos) {
setTime(pos);
}
@Override
public void onFastForward() {
next();
}
@Override
public void onRewind() {
previous();
}
}
protected void updateMetadata() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment