Ticket #2840: mythdvd-mtdautostart.diff
| File mythdvd-mtdautostart.diff, 1.3 KB (added by , 20 years ago) |
|---|
-
mythplugins/mythdvd/mythdvd/settings.cpp
259 259 return gc; 260 260 } 261 261 262 static HostCheckBox *MTDautostart() 263 { 264 HostCheckBox *gc = new HostCheckBox("MTDautostart"); 265 gc->setLabel(QObject::tr("Autostart MythTranscodeDaemon")); 266 gc->setValue(true); 267 gc->setHelpText(QObject::tr("If set, mythdvd will try and autostart " 268 "the transcode daemon. ")); 269 return gc; 270 } 262 271 263 272 static HostSpinBox *MTDNiceLevel() 264 273 { … … 314 323 mtdsettings->addChild(MTDLogFlag()); 315 324 mtdsettings->addChild(MTDac3Flag()); 316 325 mtdsettings->addChild(MTDxvidFlag()); 326 mtdsettings->addChild(MTDautostart()); 317 327 addChild(mtdsettings); 318 328 } 319 329 -
mythplugins/mythdvd/mythdvd/dvdripbox.cpp
130 130 131 131 setContext(0); 132 132 createSocket(); 133 connectToMtd( false);133 connectToMtd(gContext->GetSetting("MTDAutostart")); 134 134 135 135 // 136 136 // Create (but do not open) the DVD probing object
