libeplayer3-arm: fix fast forward (thx DboxOldie)

Origin commit data
------------------
Branch: master
Commit: fd5025a507
Author: Frankenstone <dampf_acc@online.de>
Date: 2018-01-19 (Fri, 19 Jan 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Frankenstone
2018-01-19 15:09:41 +01:00
committed by max_10
parent c101bad2a4
commit c5d1b04382
2 changed files with 7 additions and 2 deletions

View File

@@ -401,6 +401,10 @@ int LinuxDvbContinue(Context_t *context __attribute__((unused)), char *type)
linuxdvb_printf(10, "v%d a%d\n", video, audio);
if (video && videofd != -1)
{
if (context->playback->isForwarding == 0)
{
ioctl(videofd, VIDEO_FAST_FORWARD, 0);
}
if (ioctl(videofd, VIDEO_CONTINUE, NULL) == -1)
{
linuxdvb_err("ioctl failed with errno %d\n", errno);