-
Changed the compare. It is now in the CVS.
2010-01-06 15:43:28 UTC by waldviertler
-
waldviertler committed patchset 2752 of module mjpeg_play to the The MJPEG/Linux square CVS repository, changing 1 files.
2010-01-06 15:40:52 UTC by waldviertler
-
deque iterators are random access iterators and thus define
2010-01-06 08:57:43 UTC by wackston2
-
I just had a look at source code file mjpegtools-1.9.0/mplex/aunitbuffer.hpp,
around line 14 is the code
for( std::deque::iterator i = buf.begin(); i < buf.end(); ++i )
The compare looks wrong to me, because the order of the iterators
is undefined. Suggest new code
for( std::deque::iterator i = buf.begin(); i != buf.end(); ++i )
2009-12-31 10:55:01 UTC by dcb314
-
waldviertler made 1 file-release changes.
2009-11-29 12:20:01 UTC by waldviertler
-
waldviertler made 1 file-release changes.
2009-11-29 12:19:01 UTC by waldviertler
-
waldviertler made 1 file-release changes.
2009-11-29 12:18:01 UTC by waldviertler
-
waldviertler made 1 file-release changes.
2009-11-29 12:16:02 UTC by waldviertler
-
waldviertler made 2 file-release changes.
2009-11-29 12:15:01 UTC by waldviertler
-
Can you please provide additional information on which system you try to compile it, which gcc you use.
And which package of the mjpegtools you use. (tar/rpm/rpm from distribution...)
I remember a patch for a compiler problem but without further information it is not possible to help.
2009-11-11 17:56:10 UTC by waldviertler