Mailing List archive

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

[vdr] [PATCH] vcd plugin for 1.3.18



Here is a patch for vcd-0.0.6c and vdr-1.3.18....

diff -ru ../../../vdr-1.3.17-mod-eepg-ts/PLUGINS/src/vcd/vcd_player.c vcd/vcd_player.c
--- vdr-1.3.17/PLUGINS/src/vcd/vcd_player.c.orig	2003-11-16 07:16:52.000000000 -0800
+++ vdr-1.3.18/PLUGINS/src/vcd/vcd_player.c	2005-01-09 23:38:43.000000000 -0800
@@ -525,7 +525,7 @@
 
         if (playFrame && autoWait<0) {
            StripAudioPackets((uchar *)playFrame->Data(), playFrame->Count(), (playMode == pmFast || playMode == pmSlow) ? 0x00 : audioTrack);
-           int w = PlayVideo(p, pc);
+           int w = PlayPes(p, pc);
            if (w > 0) {
               running = true;
               p += w;
diff -ru vdr-1.3.17-mod-eepg-ts/PLUGINS/src/vcd/vcd_viewer.c vcd/vcd_viewer.c
--- vdr-1.3.17/PLUGINS/src/vcd/vcd_viewer.c.orig	2003-11-17 10:59:48.000000000 -0800
+++ vdr-1.3.18/PLUGINS/src/vcd/vcd_viewer.c	2005-01-09 23:40:16.000000000 -0800
@@ -211,7 +211,7 @@
 //            running = false;
 //         }
         if (playItem) {
-           int w = PlayVideo(p, pc);
+           int w = PlayPes(p, pc);
            if (w>0) {
               running = true;
               p += w;

Home | Main Index | Thread Index