<div dir="ltr">Hi<br><br>I am using the MythTV source from <a href="http://pkendall.homeip.net/">http://pkendall.homeip.net/</a>.&nbsp;&nbsp; Everything worked great, except I got skipping on TV3 (Opteron 2.5ghz dual core).&nbsp; Using skiploopfilter and 2 threads on Mplayer sped things up enough to prevent the skipping.&nbsp; Couldnt find how to set the same options in mythtv,&nbsp; So investigated it myself and found how to get the equivilant in MythTV.&nbsp; Would be good if this sort of thing could be configured in Myth.&nbsp; <br>
<br>Thought this may be of help for some people that are having trouble with skipping. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>libs/libmythtv/avformatdecoder.cpp about line 1589.<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; video_codec_id = kCodec_MPEG2; // default to MPEG2<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp; <br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; + &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (CODEC_ID_H264 == enc-&gt;codec_id)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VERBOSE(VB_PLAYBACK, LOC + &quot;Turning off loop filter&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enc-&gt;skip_loop_filter = AVDISCARD_ALL;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; + &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; VERBOSE(VB_PLAYBACK, LOC + &quot;Setting the thread count to 2&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; + &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; enc-&gt;thread_count = 2;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; + &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (enc-&gt;codec)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
<br>Regards<br><br></div>