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