wok annotate mjpegtools/stuff/gcc44.u @ rev 23757
fusecloop/extract_compressed_fs: fix v2 convertion
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat May 02 17:31:45 2020 +0000 (2020-05-02) |
parents | |
children |
rev | line source |
---|---|
pascal@3553 | 1 --- mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp |
pascal@3553 | 2 +++ mjpegtools-1.9.0/mplex/lpcmstrm_in.cpp |
pascal@3553 | 3 @@ -53,7 +53,7 @@ |
pascal@3553 | 4 |
pascal@3553 | 5 bool LPCMStream::Probe(IBitStream &bs ) |
pascal@3553 | 6 { |
pascal@3553 | 7 - char *last_dot = strrchr( bs.StreamName(), '.' ); |
pascal@3553 | 8 + const char *last_dot = strrchr( bs.StreamName(), '.' ); |
pascal@3553 | 9 return |
pascal@3553 | 10 last_dot != NULL |
pascal@3553 | 11 && strcmp( last_dot+1, "lpcm") == 0; |