diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-09 14:57:43 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-09 14:57:43 +0200 |
commit | c00d4ea326e61d76d7ab5760a5c06646d6b88ab0 (patch) | |
tree | 2462fd5c1759f451d8f1c54cedc10b5b0d74cfd1 /dvbapi.c | |
parent | d4eb96f725bed149762665ddee275301c9f069a6 (diff) | |
download | vdr-c00d4ea326e61d76d7ab5760a5c06646d6b88ab0.tar.gz vdr-c00d4ea326e61d76d7ab5760a5c06646d6b88ab0.tar.bz2 |
Implemented 'channel grouping'
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.22 2000/08/06 14:06:14 kls Exp $ + * $Id: dvbapi.c 1.23 2000/09/09 12:13:55 kls Exp $ */ #include "dvbapi.h" @@ -1199,6 +1199,10 @@ void cDvbApi::Cmd(OSD_Command cmd, int color, int x0, int y0, int x1, int y1, co dc.y1 = y1; dc.data = (void *)data; ioctl(videoDev, VIDIOCSOSDCOMMAND, &dc); + usleep(10); // XXX Workaround for a driver bug (cInterface::DisplayChannel() displayed texts at wrong places + // XXX and sometimes the OSD was no longer displayed). + // XXX Increase the value if the problem still persists on your particular system. + // TODO Check if this is still necessary with driver versions after 0.6. } } #endif |