mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
fix HD60/HD61 playback
This commit is contained in:
@@ -137,6 +137,9 @@ int cAudio::Start(void)
|
||||
{
|
||||
int ret;
|
||||
ret = ioctl(fd, AUDIO_PLAY);
|
||||
#ifdef BOXMODEL_HD60 || BOXMODEL_HD61
|
||||
ioctl(fd, AUDIO_CONTINUE);
|
||||
#endif
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@@ -541,6 +541,9 @@ int cVideo::Start(void * /*PcrChannel*/, unsigned short /*PcrPid*/, unsigned sho
|
||||
playstate = VIDEO_PLAYING;
|
||||
fop(ioctl, VIDEO_SELECT_SOURCE, VIDEO_SOURCE_DEMUX);
|
||||
int res = fop(ioctl, VIDEO_PLAY);
|
||||
#ifdef BOXMODEL_HD60 || BOXMODEL_HD61
|
||||
fop(ioctl, VIDEO_CONTINUE);
|
||||
#endif
|
||||
if (brightness > -1) {
|
||||
SetControl(VIDEO_CONTROL_BRIGHTNESS, brightness);
|
||||
brightness = -1;
|
||||
|
Reference in New Issue
Block a user