qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Enable Recording with mythtv protocol 32 to 35 (at least)
@ 2007-12-30 17:22 Iain McFarlane
  2007-12-30 21:35 ` Hetz Ben Hamo
  0 siblings, 1 reply; 2+ messages in thread
From: Iain McFarlane @ 2007-12-30 17:22 UTC (permalink / raw)
  To: qemu-devel

Hi all,

This patch allows mvpmc to schedule recordings with Mythtv protocol 32 to 35 (and may do 36 but I haven't got a backend at that level to test)

Signed-off-by: Iain McFarlane <iain@imcfarla.homelinux.net>

Regards,

Iain

--- src/mythtv.c.orig   2007-12-29 09:21:39.000000000 +0000
+++ src/mythtv.c        2007-12-30 15:22:20.000000000 +0000
@@ -3130,6 +3130,35 @@
                                        '0')", \
                                        sqlprog[which].seriesid,sqlprog[which].programid,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime);
                                break;
+                       case 32 ... 35:
+                               sprintf(query, "REPLACE INTO record ( \
+                                       recordid,type,chanid,starttime,startdate,endtime, \
+                                       enddate,search,\
+                                       title,\
+                                       subtitle, \
+                                       description, \
+                                       profile,recpriority,category,maxnewest,inactive,maxepisodes, \
+                                       autoexpire,startoffset,endoffset,recgroup,dupmethod,dupin, \
+                                       station,\
+                                       seriesid,programid,autocommflag,findday,findtime,findid, \
+                                       autotranscode,parentid,transcoder,tsdefault,autouserjob1,autouserjob2,autouserjob3, \
+                                       autouserjob4,playgroup,prefinput, \
+                                       next_record,last_record,last_delete) values \
+                                       ('%s','%d','%d',FROM_UNIXTIME(%d), \
+                                        FROM_UNIXTIME(%d), FROM_UNIXTIME(%d), \
+                                        FROM_UNIXTIME(%d),'',", recordid,
+                                       type, sqlprog[which].chanid,
+                                       (int)sqlprog[which].starttime,
+                                       (int)sqlprog[which].starttime,
+                                       (int)sqlprog[which].endtime,
+                                       (int)sqlprog[which].endtime);
+                               sprintf(query1, " ,'Default','0','%s','0','0','0','0', '%s', '%s','%s','6','15',", sqlprog[which].category,startoffset,endoffset,sqlrecgroups[rgroup].recgroups);
+                               sprintf(query2,",'%s','%s','1',DAYOFWEEK(FROM_UNIXTIME(%d)),FROM_UNIXTIME(%d),TO_DAYS(FROM_UNIXTIME(%d)), \
+                                       '0','0','0','1.00','0','0','0', \
+                                       '0','0','0', \
+                                       '00:00:00','00:00:00','00:00:00')", \
+                                       sqlprog[which].seriesid,sqlprog[which].programid,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime);
+                               break;
                        default:
                                sprintf(guierrormsg, "No MythTV SQL support\nMythTV version: %d\n", cmyth_conn_get_protocol_version(control));
                                gui_error(guierrormsg);

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] Enable Recording with mythtv protocol 32 to 35 (at least)
  2007-12-30 17:22 [Qemu-devel] Enable Recording with mythtv protocol 32 to 35 (at least) Iain McFarlane
@ 2007-12-30 21:35 ` Hetz Ben Hamo
  0 siblings, 0 replies; 2+ messages in thread
From: Hetz Ben Hamo @ 2007-12-30 21:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: iain

Hi,

Are you sure you've sent it to correct mailing list? :)

Thanks,
Hetz

On Dec 30, 2007 7:22 PM, Iain McFarlane <iain@imcfarla.homelinux.net> wrote:
> Hi all,
>
> This patch allows mvpmc to schedule recordings with Mythtv protocol 32 to 35 (and may do 36 but I haven't got a backend at that level to test)
>
> Signed-off-by: Iain McFarlane <iain@imcfarla.homelinux.net>
>
> Regards,
>
> Iain
>
> --- src/mythtv.c.orig   2007-12-29 09:21:39.000000000 +0000
> +++ src/mythtv.c        2007-12-30 15:22:20.000000000 +0000
> @@ -3130,6 +3130,35 @@
>                                         '0')", \
>                                         sqlprog[which].seriesid,sqlprog[which].programid,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime);
>                                 break;
> +                       case 32 ... 35:
> +                               sprintf(query, "REPLACE INTO record ( \
> +                                       recordid,type,chanid,starttime,startdate,endtime, \
> +                                       enddate,search,\
> +                                       title,\
> +                                       subtitle, \
> +                                       description, \
> +                                       profile,recpriority,category,maxnewest,inactive,maxepisodes, \
> +                                       autoexpire,startoffset,endoffset,recgroup,dupmethod,dupin, \
> +                                       station,\
> +                                       seriesid,programid,autocommflag,findday,findtime,findid, \
> +                                       autotranscode,parentid,transcoder,tsdefault,autouserjob1,autouserjob2,autouserjob3, \
> +                                       autouserjob4,playgroup,prefinput, \
> +                                       next_record,last_record,last_delete) values \
> +                                       ('%s','%d','%d',FROM_UNIXTIME(%d), \
> +                                        FROM_UNIXTIME(%d), FROM_UNIXTIME(%d), \
> +                                        FROM_UNIXTIME(%d),'',", recordid,
> +                                       type, sqlprog[which].chanid,
> +                                       (int)sqlprog[which].starttime,
> +                                       (int)sqlprog[which].starttime,
> +                                       (int)sqlprog[which].endtime,
> +                                       (int)sqlprog[which].endtime);
> +                               sprintf(query1, " ,'Default','0','%s','0','0','0','0', '%s', '%s','%s','6','15',", sqlprog[which].category,startoffset,endoffset,sqlrecgroups[rgroup].recgroups);
> +                               sprintf(query2,",'%s','%s','1',DAYOFWEEK(FROM_UNIXTIME(%d)),FROM_UNIXTIME(%d),TO_DAYS(FROM_UNIXTIME(%d)), \
> +                                       '0','0','0','1.00','0','0','0', \
> +                                       '0','0','0', \
> +                                       '00:00:00','00:00:00','00:00:00')", \
> +                                       sqlprog[which].seriesid,sqlprog[which].programid,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime,(int)sqlprog[which].starttime);
> +                               break;
>                         default:
>                                 sprintf(guierrormsg, "No MythTV SQL support\nMythTV version: %d\n", cmyth_conn_get_protocol_version(control));
>                                 gui_error(guierrormsg);
>
>
>



-- 
Skepticism is the lazy person's default position.
my blog (hebrew): http://benhamo.org

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-12-30 21:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-30 17:22 [Qemu-devel] Enable Recording with mythtv protocol 32 to 35 (at least) Iain McFarlane
2007-12-30 21:35 ` Hetz Ben Hamo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).