Mailing List archive

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

[vdr] UPT...



Hello,

again with 1.3.4:

Feb 12 18:12:13 greg vdr[11096]: ERROR: unknown picture type '7'
Feb 12 18:12:13 greg vdr[11096]: ERROR: unknown picture type '4'
Feb 12 18:12:16 greg vdr[11096]: ERROR: unknown picture type '4'
Feb 12 18:12:16 greg vdr[11096]: ERROR: unknown picture type '7'
Feb 12 18:12:18 greg vdr[11096]: ERROR: unknown picture type '6'
Feb 12 18:12:21 greg vdr[11096]: ERROR: unknown picture type '7'
Feb 12 18:12:22 greg vdr[11096]: ERROR: unknown picture type '4'
Feb 12 18:12:31 greg vdr[11096]: ERROR: unknown picture type '6'
Feb 12 18:12:33 greg vdr[11096]: ERROR: unknown picture type '4'
Feb 12 18:12:35 greg last message repeated 4 times
Feb 12 18:12:38 greg vdr[11096]: ERROR: unknown picture type '6'
Feb 12 18:12:42 greg last message repeated 2 times
...

remux.c really need an edit... for example that way:

--- remux.c     2004-02-08 17:30:39.265236720 +0100
+++ ../vdr-1.3.3/remux.c        2004-01-31 15:08:43.785945080 +0100
@@ -618,8 +618,10 @@
                      if (l < 0)
                         return NULL; // no useful data found, wait for more
                      if (pt != NO_PICTURE) {
-                        if (pt < I_FRAME || B_FRAME < pt)
+                        if (pt < I_FRAME || B_FRAME < pt) {
                            esyslog("ERROR: unknown picture type '%d'", pt);
+                          cThread::EmergencyExit(true);
+                       }
                         else if (!synced) {
                            if (pt == I_FRAME) {
                               resultDelivered = i; // will drop everything before this position

Or with an ifdef...

I didn't complain with 1.3.3 because it haded this patch applied...

	Grégoire
________________________________________________________________________
http://magma.epfl.ch/greg ICQ:16624071 mailto:Gregoire.Favre@freesurf.ch


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



Home | Main Index | Thread Index