Programming Languages: C, Assembly
License: GNU General Public License version 2.0 (GPLv2)
browse code,
statistics cvs -d:pserver:anonymous@tvtime.cvs.sourceforge.net:/cvsroot/tvtime login
cvs -z3 -d:pserver:anonymous@tvtime.cvs.sourceforge.net:/cvsroot/tvtime co -P modulename
I have a Linux system with multiple keyboard layouts/groups configured through the GNOME interface (not using setxkbmap via the command line) so that I'm able to switch between them. In my case dvorak is the primary default group, which means it's group 0 in the X11 API, and the second group is US, which means it's group 1 in the X11 API. When I switch from my primary default group (dvorak) to...
2012-04-07 12:10:55 PDT by selliott4
It would be nice if in the new EPG would be support for cursor. Move the cursor (jump from 3 in 3 line , over lines with EPG description at line with number and name of channel, and with ENTER command, change channel). In this way they could use and as a CHANNER SELECTOR. Example in screenshoot attasament [31] TVR 1 *****************EPG INFORMATION***** *****************EPG...
2012-03-21 10:39:15 PDT by https://www.google.com/accounts
In 16:9 matte mode if take screenshot, png image is 4:3 format.
2012-02-25 03:49:57 PST by zradu
It is posible to implement new function: Select TV channels from OSD menu like in this image? http://onebithq.com/pub/pic/mplayer/osdmenu/t_tv.jpg source: http://onebithq.com/root/mplayer/osdmenu.
2012-02-19 04:19:53 PST by ghitaaadrian
You're not checking the return value of read, which is a bug just waiting to happen. ssize_t r = read(rtctimer->rtc_fd, &rtc_data, sizeof( rtc_data ) ); if (r == -1) { // deal with failed read } else if (r != sizeof(rtc_data)) { // you didn't read as much as you wanted to ... If you don't check what read returns, chances are very high that your program will fail...
2012-02-05 03:00:21 PST by zradu
------------------------------------------------------------------------------------- int rtctimer_next_tick( rtctimer_t *rtctimer ) { unsigned long rtc_data; struct pollfd pfd; pfd.fd = rtctimer->rtc_fd; pfd.events = POLLIN | POLLERR; again: if( poll( &pfd, 1, 100000 ) < 0 ) { if( errno == EINTR ) { goto again; }...
2012-02-05 02:48:35 PST by zradu
It's possible to increase the display time of message along the bottom of the OSD? From about 2 seconds, as is now, to 5 seconds. Thanks.
2012-01-08 01:21:16 PST by zradu