[mythtv] CVS XVMC-VLD status?

Steven mythmail at richardstraat.homedns.org
Tue Jul 5 15:39:54 EDT 2005


>>
>> Try current svn with a value of 2 for "xvmcBuffersID" in the settings
>> table.
>>


Created the table manually and can confirm this fixes playback on my
epiaM1000.

PS
Used this sql script to create the table because for some reason the
dbcheck portion of the patch didn't work on my machine. If anyone else
want to give it a try :
CREATE TABLE IF NOT EXISTS xvmc_buffer_settings (
              id int(11) NOT NULL auto_increment,
              description varchar(255) NOT NULL default '',
              osd_num int(11) NOT NULL default '0',
              osd_res_num int(11) NOT NULL default '0',
              min_surf int(11) NOT NULL default '0',
              max_surf int(11) NOT NULL default '0',
              decode_num int(11) NOT NULL default '0',
              agressive int(11) NOT NULL default '1',
              PRIMARY KEY  (id) );
INSERT INTO xvmc_buffer_settings VALUES (1,'Default / nVidia',2,2,8,16,8,1);
INSERT INTO xvmc_buffer_settings VALUES (2,'VLD (More decode
buffers)',2,2,8,16,
16,1);
INSERT INTO settings VALUES ('xvmcBuffersID', '2', 'frontend');



More information about the mythtv-dev mailing list