Hallo

Robert Valliant wrote:
I downloaded the above and tried to install it on my system.

I am not a programmer, just a user, but an experienced one. I know nothing at all about g++/c++.

Here is the error it gave me. Forgive me if this is not in the correct format.

I spaced it out so that I could read it.
That is a known problem with gcc 4.4.
I have attached a patch that solves the problem. You will also find it in the cvs.

-----------------------------------------------------------------------------------------------------------------
g++ (Debian 4.4.3-5) 4.4.3
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

uname -a
Linux magadan 2.6.32-3-amd64 #1 SMP Wed Feb 24 18:07:42 UTC 2010 x86_64 GNU/Linux

It compiled fine under FreeBSD. I also have that installed -- on another disk.

auf hoffentlich bald,

Berni the Chaos of Woodquarter

Email: shadowl...@utanet.at
www: http://www.lysator.liu.se/~gz/bernhard
--- mplex/lpcmstrm_in.cpp.1	2009-06-13 13:19:45.000000000 +0200
+++ mplex/lpcmstrm_in.cpp	2009-06-13 13:18:47.000000000 +0200
@@ -53,7 +53,7 @@
 
 bool LPCMStream::Probe(IBitStream &bs )
 {
-    char *last_dot = strrchr( bs.StreamName(), '.' );
+    const char *last_dot = strrchr( bs.StreamName(), '.' );
     return 
         last_dot != NULL 
         && strcmp( last_dot+1, "lpcm") == 0;
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Mjpeg-users mailing list
Mjpeg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to