Mailing List archive

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

[vdr] Re: @Thomas Heiligenmann: Status of S/VCD-plugin




* Rene Bartsch <vdr@bartschnet.de> [021208 04:18]:
> Hi,
> 
> the S/VCD-plugin 0.0.3 does not compile with GCC 3.2 and about two month ago
> you told in a mail on the ML that you're going to rewrite the plugin.
> So I'd like to know of the status of the S/VCD-plugin.
  
With the following patch the plugin compiles cleanly with gcc 3.2 and
newer.

Stefan

-- 
The x86 isn't all that complex - it just doesn't make a lot of
sense.          -- Mike Johnson, Leader of 80x86 Design at AMD
	                          Microprocessor Report (1994)


-- Attached file included as plaintext by Listar --

diff -ur vcd-0.0.3.orig/vcd_player.c vcd-0.0.3/vcd_player.c
--- vcd-0.0.3.orig/vcd_player.c	2002-09-01 19:51:08.000000000 +0200
+++ vcd-0.0.3/vcd_player.c	2002-10-20 01:12:07.000000000 +0200
@@ -310,7 +310,7 @@
   return false;
 }
 
-void cVCDPlayer::Goto(int Position, bool Still = false)
+void cVCDPlayer::Goto(int Position, bool Still )
 {
 //TODO
 }
@@ -330,7 +330,7 @@
   return 0;
 }
 
-bool cVCDPlayer::GetIndex(int &Current, int &Total, bool SnapToIFrame = false)
+bool cVCDPlayer::GetIndex(int &Current, int &Total, bool SnapToIFrame)
 {
   Current = max(writeIndex,0);
   Total = trackLast/3;
@@ -539,7 +539,7 @@
   return 0;
 }
 
-void cVCDPlayer::StripAudioPackets(uchar *b, int Length, uchar Except = 0x00)
+void cVCDPlayer::StripAudioPackets(uchar *b, int Length, uchar Except)
 {
   for (int i=0; i < Length-6; i++) {
      if (b[i]==0x00 && b[i+1]==0x00 && b[i+2]== 0x01) {



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



Home | Main Index | Thread Index