Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 1 times, last edit by "McWizard" (Aug 17th 2003, 9:34pm)
This post has been edited 1 times, last edit by "John Difool" (Aug 19th 2003, 12:07am)
Quoted
reading EPG data from /video/epg.data
ERROR: illegal channel ID: S19.2E-1-0-898
Quoted
=============
EPG bugfix statustics
=============
This post has been edited 1 times, last edit by "McWizard" (Aug 19th 2003, 12:13am)
This post has been edited 1 times, last edit by "John Difool" (Aug 19th 2003, 12:20am)
Quoted
Original von eddie
oh man ich verstehe nur bahnhof was soll ich den genau tun?
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
--- av7110.c.org Sat May 17 05:12:30 2003
+++ av7110.c Sat May 17 05:19:39 2003
@@ -1116,6 +1116,8 @@ pes_play(void *dest, ring_buffer_t *buf,
int len, split=0;
u32 sync;
u16 blen;
+ int i, ftype;
+ char *p;
dprintk ("function : %s\n", __FUNCTION__);
if (!dlen) {
@@ -1165,6 +1167,20 @@ pes_play(void *dest, ring_buffer_t *buf,
dprintk ("function: %s pread=%08x pwrite=%08x\n", __FUNCTION__,
buf->pread, buf->pwrite);
+
+ p = dest;
+ for (i = 0; i < blen-8; i++) {
+ if (p[i] == 0 && p[i+1] == 0 && p[i+2] == 1 && p[i+3] == 0) {
+ ftype = (p[i+5] >> 3) & 0x07;
+ if (ftype) {
+ //printk ("pic %d at %d/%d\n", ftype, i, blen);
+ p[i+5] |= 0x07;
+ p[i+6] |= 0xff;
+ p[i+7] |= 0xf8;
+ }
+ }
+ }
+
wake_up(&buf->queue);
return blen;
}
|
This post has been edited 1 times, last edit by "TheAlamo" (Aug 21st 2003, 4:02pm)