[mythtv-users] Re: Slow skip-forward and skip-back with 0.17 (PVR-350)

2005-02-18 Thread Dan Wilga
At 10:39 PM -0600 2/16/05, David Engel wrote:
On Wed, Feb 16, 2005 at 04:45:05PM -0500, Chris wrote:
 Ouch, after upgrading to 0.17 it seems that skipping forward and back
 with the stream is now very slow.  These are mpeg2 streams recorded with
 a PVR-350 and playing back on the 350 as well.
Here's a small patch that might help.  It's not in the official code
because it can cause other problems, mainly sluggishness in other
areas, if your system isn't fast enough.
Actually, I have a really fast system (3.0 GHz), and I found that 
while this patch does help the problem it's supposed to help, it also 
causes live TV to fail when changing channels. I get a string of 
Waited too long for decoder to pause errors instead, and the 
frontend stops responding to keypresses. The audio and video from the 
initial channel continue to play, however.

--
Dan Wilga [EMAIL PROTECTED]
Web Administrator http://www.mtholyoke.edu
Mount Holyoke CollegeTel: 413-538-3027
South Hadley, MA  01075Who left the cake out in the rain?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Re: Slow skip-forward and skip-back with 0.17 (PVR-350)

2005-02-18 Thread David Engel
On Fri, Feb 18, 2005 at 02:56:47PM -0500, Dan Wilga wrote:
 Actually, I have a really fast system (3.0 GHz), and I found that 
 while this patch does help the problem it's supposed to help, it also 
 causes live TV to fail when changing channels. I get a string of 

Yep, that's one of the symptoms.  I don't use Myth to watch live TV so
it's not a problem for me.  

Anyway, I think I now know how to add the needed new functionality on
to the old bufferring.  If I can just find time to try it...

David
-- 
David Engel
[EMAIL PROTECTED]
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Re: Slow skip-forward and skip-back with 0.17 (PVR-350)

2005-02-17 Thread Gabe Rubin
 Here's a small patch that might help.  It's not in the official code
 because it can cause other problems, mainly sluggishness in other
 areas, if your system isn't fast enough.
 
Thanks.  I actually use packages and do not compile myself, so I will
wait for this to be incorporated into a version of myth and deal with
the slow skip issue till then.  I also have a slow machine so I do not
want to introduce other problems.

Just out of curiousity, why did the skip ahead/back become slow with .17? 


-- 
Email me if you want a gmail account, I have invites.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Re: Slow skip-forward and skip-back with 0.17 (PVR-350)

2005-02-16 Thread David Engel
On Wed, Feb 16, 2005 at 04:45:05PM -0500, Chris wrote:
 Ouch, after upgrading to 0.17 it seems that skipping forward and back
 with the stream is now very slow.  These are mpeg2 streams recorded with
 a PVR-350 and playing back on the 350 as well.

Here's a small patch that might help.  It's not in the official code
because it can cause other problems, mainly sluggishness in other
areas, if your system isn't fast enough.

I have some other ideas to try to improve skips and speed changes, but
don't know when I will get to them.  My plate of things to do seems to
always be full.

David
-- 
David Engel
[EMAIL PROTECTED]
Index: libs/libmythtv/ivtvdecoder.cpp
===
RCS file: /var/lib/mythcvs/mythtv/libs/libmythtv/ivtvdecoder.cpp,v
retrieving revision 1.38
diff -u -r1.38 ivtvdecoder.cpp
--- libs/libmythtv/ivtvdecoder.cpp  14 Feb 2005 20:05:30 -  1.38
+++ libs/libmythtv/ivtvdecoder.cpp  17 Feb 2005 04:26:47 -
@@ -409,7 +409,7 @@
 if (vidanyframes)
 {
 framesRead++;
-return false;
+//return false;
 }
 vidanyframes = 1;
 }
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users