mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
src/gui/movieplayer.cpp enable 10sek jump for hd51
This commit is contained in:
@@ -1818,12 +1818,10 @@ void CMoviePlayerGui::PlayFileLoop(void)
|
|||||||
SetPosition(duration/2, true);
|
SetPosition(duration/2, true);
|
||||||
} else if (msg == CRCInput::RC_8) { // goto end
|
} else if (msg == CRCInput::RC_8) { // goto end
|
||||||
SetPosition(duration - 60 * 1000, true);
|
SetPosition(duration - 60 * 1000, true);
|
||||||
#if HAVE_COOL_HARDWARE
|
|
||||||
} else if (msg == CRCInput::RC_page_up) {
|
} else if (msg == CRCInput::RC_page_up) {
|
||||||
SetPosition(10 * 1000);
|
SetPosition(10 * 1000);
|
||||||
} else if (msg == CRCInput::RC_page_down) {
|
} else if (msg == CRCInput::RC_page_down) {
|
||||||
SetPosition(-10 * 1000);
|
SetPosition(-10 * 1000);
|
||||||
#endif
|
|
||||||
#if 0
|
#if 0
|
||||||
//- bisectional jumps
|
//- bisectional jumps
|
||||||
} else if (msg == CRCInput::RC_page_up || msg == CRCInput::RC_page_down) {
|
} else if (msg == CRCInput::RC_page_up || msg == CRCInput::RC_page_down) {
|
||||||
|
Reference in New Issue
Block a user