Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: unknwon picture type / error in data stream



Gregoire Favre wrote:
> 
> On Sat, Aug 16, 2003 at 10:33:42AM +0200, Klaus Schmidinger wrote:
> 
> > Well, it's very simple:
> >
> > - locate the file that contains the error message:
> >
> >   kls@hawk2:/home/kls/vdr/VDR > grep "nknown picture ty" *.c
> >   remux.c:                           esyslog("ERROR: unknown picture type '%d'", pt);
> >
> > - edit that file and change the lines
> >
> >                         if (pt < I_FRAME || B_FRAME < pt)
> >                            esyslog("ERROR: unknown picture type '%d'", pt);
> >
> >   to
> >
> >                         if (pt < I_FRAME || B_FRAME < pt) {
> >                            esyslog("ERROR: unknown picture type '%d'", pt);
> >                            cThread::EmergencyExit(true);
> >                            }
> 
> >From my point of view, it's something that should have come already in
> the vdr-1.2.pre3 I am right now compiling ;-)
> 
> PS: the patch works just tremendous in 1.2.2!!!

Well, I wouldn't want to make this a general feature, since an occasional
error like this shouldn't cause a restart.

It would probably be a lot better to find the real cause of this and fix that,
although that may not be easy to find...

Klaus


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index