Main GraphicsMagick source repository
Révision | eaa9f32ff59d5cd4b13d0385fd340e8bc4ba786d (tree) |
---|---|
l'heure | 2022-05-09 01:09:42 |
Auteur | Bob Friesenhahn <bfriesen@Grap...> |
Commiter | Bob Friesenhahn |
WriteJPEGImage(): Change "arithmetic" to "arithmetic-coding"
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2022-05-08 Bob Friesenhahn <bfriesen@simple.dallas.tx.us> |
2 | 2 | |
3 | + * coders/jpeg.c (WriteJPEGImage): Change "arithmetic" to | |
4 | + "arithmetic-coding" in order to match ImageMagick's previously | |
5 | + existing syntax. | |
6 | + | |
3 | 7 | * coders/png.c (ReadOnePNGImage): Assure that entire image list is |
4 | 8 | freed. Addresses oss-fuzz 46997 "graphicsmagick:coder_MNG_fuzzer: |
5 | 9 | Indirect-leak in MagickMallocCleared". This is a new issue due to |
@@ -2798,7 +2798,7 @@ | ||
2798 | 2798 | /* |
2799 | 2799 | Allow the user to turn on/off arithmetic coder. |
2800 | 2800 | */ |
2801 | - if ((value=AccessDefinition(image_info,"jpeg","arithmetic"))) | |
2801 | + if ((value=AccessDefinition(image_info,"jpeg","arithmetic-coding"))) | |
2802 | 2802 | { |
2803 | 2803 | if (LocaleCompare(value,"FALSE") == 0) |
2804 | 2804 | jpeg_info.arith_code = False; |
@@ -1197,7 +1197,7 @@ | ||
1197 | 1197 | 0.06641. |
1198 | 1198 | </dd> |
1199 | 1199 | |
1200 | -<dt>jpeg:arithmetic={true|false}</dt> | |
1200 | +<dt>jpeg:arithmetic-coding={true|false}</dt> | |
1201 | 1201 | |
1202 | 1202 | <dd>Enables or disables arithmetic encoding if the JPEG library |
1203 | 1203 | supports it (default disabled). When this is enabled, optimize-coding |
@@ -37,10 +37,14 @@ | ||
37 | 37 | |
38 | 38 | <p>2022-05-08 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> |
39 | 39 | <blockquote> |
40 | -* coders/png.c (ReadOnePNGImage): Assure that entire image list is | |
40 | +<p>* coders/jpeg.c (WriteJPEGImage): Change "arithmetic" to | |
41 | +"arithmetic-coding" in order to match ImageMagick's previously | |
42 | +existing syntax.</p> | |
43 | +<p>* coders/png.c (ReadOnePNGImage): Assure that entire image list is | |
41 | 44 | freed. Addresses oss-fuzz 46997 "graphicsmagick:coder_MNG_fuzzer: |
42 | 45 | Indirect-leak in MagickMallocCleared". This is a new issue due to |
43 | -incrementally seeking the complete correct error-handling cleanup.</blockquote> | |
46 | +incrementally seeking the complete correct error-handling cleanup.</p> | |
47 | +</blockquote> | |
44 | 48 | <p>2022-05-02 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> |
45 | 49 | <blockquote> |
46 | 50 | * doc/options.imdoc: Add documentation for -define |