Viktor,<br><br>Do you mean that even using the VGA to SCART to get proper interlaced in pseudo 50hz I'm going to have to double the frame rate AND use bob?!?!?!<br><br>That's a hellava hit on the CPU isn't it?<br>
<br>Cheers<br><br>Steve<br><br><div><span class="gmail_quote">On 15/06/07, <b class="gmail_sendername">Viktor Avramov</b> <<a href="mailto:drvik@bigpond.net.au">drvik@bigpond.net.au</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I recommend using a VGA -> SCART cable... then you will have very precise<br>control of what goes to the TV.... I had a problem like you using PAL 25FPS<br>on a 50Hz interlaced TV... I wrote a patch which doubles the framerate for
<br>interlaced modes... I now use it wil BOB deinterlacing and the result is<br>silky smooth!<br><br>Here's the patch.... do with it what you will... I submitted it for inclusion<br>in trunk but it was rejected because it's flawed in it's logic... all I can
<br>say is on my setup it's the only way of getting smooth, fluid motion.... the<br>devs told me to use the myth-vid branch instead!!<br><br>Viktor<br><br><br>Index: libs/libmythtv/videoout_xv.cpp<br>===================================================================
<br>--- libs/libmythtv/videoout_xv.cpp (revision 12477)<br>+++ libs/libmythtv/videoout_xv.cpp (working copy)<br>@@ -308,6 +308,9 @@<br> if (rate == 0)<br> rate = 60;<br><br>+ if (mode_line.flags && 0x010) // #define V_INTERLACE 0x010
<br>+ rate = rate * 2; // if modeline is interlaced then double<br>the effective refresh rate<br>+<br> if (rate < 20 || rate > 200)<br> {<br> VERBOSE(VB_PLAYBACK, LOC + QString("Unreasonable refresh rate %1Hz "
<br>_______________________________________________<br>mythtv-users mailing list<br><a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br><a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br></blockquote></div><br>