[mythtv-commits] Re: Ticket #650: Handle simultaneous recordings of same program on same channel

MythTV mythtv at cvs.mythtv.org
Mon Nov 21 08:28:48 EST 2005


#650: Handle simultaneous recordings of same program on same channel
---------------------+------------------------------------------------------
 Reporter:  danielk  |        Owner:  danielk 
     Type:  defect   |       Status:  reopened
 Priority:  blocker  |    Milestone:  0.19    
Component:  mythtv   |      Version:  head    
 Severity:  medium   |   Resolution:          
---------------------+------------------------------------------------------
Changes (by mythtv at hburch.com):

  * resolution:  fixed =>
  * status:  closed => reopened

Comment:

 [7892] does not increment starttime by a second (as I discovered yesterday
 when errors started to spew). addSecs() returns an altered qdatetime
 instead of altering in place.

 Suggest:
 {{{
 Index: programinfo.cpp
 ===================================================================
 --- programinfo.cpp     (revision 7956)
 +++ programinfo.cpp     (working copy)
 @@ -1368,7 +1368,7 @@
      pathname = CreateRecordBasename(ext);
      while (!insert_program(query, this, record))
      {
 -        recstartts.addSecs(1);
 +        recstartts = recstartts.addSecs(1);
          pathname = CreateRecordBasename(ext);
      }
      pathname = prefix + "/" + pathname;
 }}}

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/650>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list