From 83b6e5cefcb87477e79f8d4ab247fd75b2cbeead Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Sun, 29 Oct 2017 15:43:53 +0000 Subject: [PATCH] Add a 2s skip back button (for interlacing resync) --- vvideorec.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vvideorec.cc b/vvideorec.cc index 0989cda..7e2b3cc 100644 --- a/vvideorec.cc +++ b/vvideorec.cc @@ -366,6 +366,11 @@ int VVideoRec::handleCommand(int command) } return 2; } + case Remote::PREVCHANNEL: + { + player->skipBackward(2); + return 2; + } case Remote::STAR: { doBar(2); -- 2.39.2