You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
554 B
13 lines
554 B
16 years ago
|
diff -up mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp~ mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp
|
||
|
--- mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp~ 2005-10-13 18:43:10.000000000 +0200
|
||
|
+++ mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp 2009-04-15 12:22:29.000000000 +0200
|
||
|
@@ -53,7 +53,7 @@ LPCMStream::LPCMStream(IBitStream &ibs,
|
||
|
|
||
|
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;
|