[mythtv-commits] Ticket #1544: DVD Bookmarks for internal dvd player

MythTV mythtv at cvs.mythtv.org
Sat Mar 25 14:10:12 UTC 2006


#1544: DVD Bookmarks for internal dvd player
--------------------------------+-------------------------------------------
 Reporter:  skamithi at gmail.com  |        Owner:  ijr
     Type:  enhancement         |       Status:  new
 Priority:  minor               |    Milestone:     
Component:  mythtv              |      Version:     
 Severity:  low                 |   Resolution:     
--------------------------------+-------------------------------------------
Comment (by skamithi at gmail.com):

 here is the current table I use. bookmarking for all different types of
 recordings will be integrated , so this patch and table is just to show
 what factors to consider for dvd bookmarks when the integration is done.

 {{{
 DROP TABLE IF EXISTS `dvdbookmark`;
 CREATE TABLE `dvdbookmark` (
   `serialid` varchar(16) NOT NULL default '',
   `name` varchar(32) default NULL,
   `title` smallint(6) NOT NULL default '0',
   `audionum` tinyint(4) NOT NULL default '-1',
   `subtitlenum` tinyint(4) NOT NULL default '-1',
   `framenum` bigint(20) NOT NULL default '0',
   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
   PRIMARY KEY  (`serialid`);

 }}}

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


More information about the mythtv-commits mailing list