Case of packJPG/packMP3

Always lower case
This commit is contained in:
Christian Schneider 2016-01-25 15:15:50 +01:00
parent d48f1a86ef
commit ce52abaddf
3 changed files with 10 additions and 10 deletions

View file

@ -41,7 +41,7 @@ Thanks for support, help and comments:
- Stephan Busch (Squeeze Chart Author, http://www.squeezechart.com)
- Werner Bergmans (Maximum Compression Benchmark Author, http://www.maximumcompression.com)
- Matthias Stirner (PackJPG, PackMP3, http://www.elektronik.htw-aalen.de/packjpg/index.htm, http://packjpg.encode.ru/?page_id=19, http://www.matthiasstirner.com)
- Matthias Stirner (packJPG, packMP3, http://www.elektronik.htw-aalen.de/packjpg/index.htm, http://packjpg.encode.ru/?page_id=19, http://www.matthiasstirner.com)
- Mark Adler (http://www.zlib.net)
- Matt Mahoney (http://www.mattmahoney.net)
- Malcolm Taylor (http://www.msoftware.co.nz)
@ -50,8 +50,8 @@ Thanks for support, help and comments:
Legal stuff
-----------
- PackJPG v2.5j (http://www.elektronik.htw-aalen.de/packjpg/index.htm) by Matthias Stirner is used for compression/decompression of JPG files.
- PackMP3 v1.0f by Matthias Stirner (http://packjpg.encode.ru/?page_id=19) by Matthias Stirner is used for compression/decompression of MP3 files.
- packJPG v2.5j (http://www.elektronik.htw-aalen.de/packjpg/index.htm) by Matthias Stirner is used for compression/decompression of JPG files.
- packMP3 v1.0f by Matthias Stirner (http://packjpg.encode.ru/?page_id=19) by Matthias Stirner is used for compression/decompression of MP3 files.
- bZip2 1.0.6 (http://www.bzip.org) by Julian Seward is used for compression/decompression of bZip2 streams.
- zLib 1.2.8 (http://www.zlib.net) by Jean-loup Gailly and Mark Adler is used for compression/decompression of zLib streams.
- GifLib 4.1.4 (http://sourceforge.net/projects/giflib) is used for compression/decompression of GIF files. The GIFLIB distribution is Copyright (c) 1997 Eric S. Raymond

View file

@ -79,7 +79,7 @@ extern "C"
#include "contrib/giflib/gif_lib.h"
}
//PackJPG things
// packJPG things
// Motion JPEG DHT header
// JPEG DHT Segment for YCrCb omitted from MJPEG data
@ -122,7 +122,7 @@ bool pjglib_convert_file2file( char* in, char* out, char* msg );
// DLL to a string
const char* pjglib_version_info( void );
//PackMP3 things
// packMP3 things
#include "contrib/packjpg/bitops.h" // for MBITS
#include "contrib/packmp3/pmp3tbl.h"
@ -7510,10 +7510,10 @@ void try_decompression_gif(unsigned char version[5]) {
void packjpg_mp3_dll_msg() {
printf("Using PackJPG for JPG recompression, PackMP3 for MP3 recompression.\n");
printf("Using packJPG for JPG recompression, packMP3 for MP3 recompression.\n");
printf("%s\n", pjglib_version_info());
printf("%s\n", pmplib_version_info());
printf("More about PackJPG and PackMP3 here: http://www.matthiasstirner.com\n\n");
printf("More about packJPG and packMP3 here: http://www.matthiasstirner.com\n\n");
}

View file

@ -218,7 +218,7 @@ http://schnaader.info
Thanks for support, help and comments:
Stephan Busch (Squeeze Chart Author, http://www.squeezechart.com))
Werner Bergmans (Maximum Compression Benchmark Author, http://www.maximumcompression.com)
Matthias Stirner (PackJPG, PackMP3, http://www.elektronik.htw-aalen.de/packjpg/index.htm, http://packjpg.encode.ru/?page_id=19, http://www.matthiasstirner.com)
Matthias Stirner (packJPG, packMP3, http://www.elektronik.htw-aalen.de/packjpg/index.htm, http://packjpg.encode.ru/?page_id=19, http://www.matthiasstirner.com)
Mark Adler (http://www.zlib.net)
Matt Mahoney (http://www.mattmahoney.net)
Malcolm Taylor (http://www.msoftware.co.nz)
@ -227,8 +227,8 @@ Thanks for support, help and comments:
8. Legal stuff
--------------
PackJPG v2.5j (http://www.elektronik.htw-aalen.de/packjpg/index.htm) by Matthias Stirner is used for compression/decompression of JPG files.
PackMP3 v1.0f by Matthias Stirner (http://packjpg.encode.ru/?page_id=19) by Matthias Stirner is used for compression/decompression of MP3 files.
packJPG v2.5j (http://www.elektronik.htw-aalen.de/packjpg/index.htm) by Matthias Stirner is used for compression/decompression of JPG files.
packMP3 v1.0f by Matthias Stirner (http://packjpg.encode.ru/?page_id=19) by Matthias Stirner is used for compression/decompression of MP3 files.
bZip2 1.0.6 (http://www.bzip.org) by Julian Seward is used for compression/decompression of bZip2 streams.
zLib 1.2.8 (http://www.zlib.net) by Jean-loup Gailly and Mark Adler is used for compression/decompression of zLib streams.
GifLib 4.1.4 (http://sourceforge.net/projects/giflib) is used for compression/decompression of GIF files.