Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: README.chromium

Issue 1258673007: Add jpeg_skip_scanlines() API to libjpeg-turbo (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Updating README.chromium Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | djpeg.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: libjpeg-turbo 1 Name: libjpeg-turbo
2 URL: http://sourceforge.net/projects/libjpeg-turbo/ 2 URL: http://sourceforge.net/projects/libjpeg-turbo/
3 Version: 1.3.1 3 Version: 1.3.1
4 License: Custom license 4 License: Custom license
5 License File: LICENSE.txt 5 License File: LICENSE.txt
6 Security Critical: yes 6 Security Critical: yes
7 License Android Compatible: yes 7 License Android Compatible: yes
8 8
9 Description: 9 Description:
10 This consists of the components: 10 This consists of the components:
11 * A partial copy of libjpeg-turbo 1.3.1 (r1219); 11 * A partial copy of libjpeg-turbo 1.3.1 (r1219);
12 * Revision r1188 cherry-picked from upstream trunk into config.h; 12 * Revision r1188 cherry-picked from upstream trunk into config.h;
13 * Revision r1220 cherry-picked from upstream trunk into jchuff.c; 13 * Revision r1220 cherry-picked from upstream trunk into jchuff.c;
14 * Revisions r1108, r1109, r1333, r1375, r1386, r1389 and r1390 cherry-picked 14 * Revisions r1108, r1109, r1333, r1375, r1386, r1389 and r1390 cherry-picked
15 from upstream trunk for Arm64; 15 from upstream trunk for Arm64;
16 * Revisions r1582, r1583, r1586, r1587, r1591, and
17 commit 91eceba0a132a3fc70388a82c75616e67725a93a (code moved to GitHub)
18 cherry-picked from upstream trunk for partial decoding optimization.
16 * A build file (libjpeg.gyp), and; 19 * A build file (libjpeg.gyp), and;
17 * Patched header files used by Chromium. 20 * Patched header files used by Chromium.
18 21
19 This libjpeg-turbo can replace our libjpeg-6b without any modifications in the 22 This libjpeg-turbo can replace our libjpeg-6b without any modifications in the
20 Chromium code. 23 Chromium code.
21 24
22 Same as our copy of libjpeg-6b, this libjpeg-turbo also added a new file 25 Same as our copy of libjpeg-6b, this libjpeg-turbo also added a new file
23 jpeglibmangler.h and included it from jpeglib.h that changes the names of all 26 jpeglibmangler.h and included it from jpeglib.h that changes the names of all
24 externally visible functions to chromium_* so that we can avoid conflicts that 27 externally visible functions to chromium_* so that we can avoid conflicts that
25 arise when system libraries attempt to use our libjpeg. Also, we applied the 28 arise when system libraries attempt to use our libjpeg. Also, we applied the
26 following changes which are not merged to upstream: 29 following changes which are not merged to upstream:
27 30
28 * Added the 'private_extern' flags on Mac (or the 'hidden' flags on Linux) to 31 * Added the 'private_extern' flags on Mac (or the 'hidden' flags on Linux) to
29 all the global symbols in '.asm' files to prevent making them external ones. 32 all the global symbols in '.asm' files to prevent making them external ones.
30 * Supported motion-JPEG frames that do not have DHT markers. 33 * Supported motion-JPEG frames that do not have DHT markers.
31 * Removed .func / .endfunc lines from arm assembly 34 * Removed .func / .endfunc lines from arm assembly
Noel Gordon 2015/07/30 19:10:06 Not your issue, but lines 34-36 can be removed whi
msarett 2015/07/30 20:16:51 Done.
32 ( https://sourceforge.net/p/libjpeg-turbo/bugs/72/ , landed at 35 ( https://sourceforge.net/p/libjpeg-turbo/bugs/72/ , landed at
33 https://sourceforge.net/p/libjpeg-turbo/code/1375 ). 36 https://sourceforge.net/p/libjpeg-turbo/code/1375 ).
34 * Fix libjpeg_turbo svn r64 libjpeg6b compat issue: make the fast path Huffman 37 * Fix libjpeg_turbo svn r64 libjpeg6b compat issue: make the fast path Huffman
35 decoder fallback to slow decoding if the Huffman decoding bit sentinel > 16, 38 decoder fallback to slow decoding if the Huffman decoding bit sentinel > 16,
36 this to match the exact behavior of jpeg_huff_decode(). 39 this to match the exact behavior of jpeg_huff_decode().
37 http://crbug.com/398235 40 http://crbug.com/398235
38 * Fixed an issue with the ARM NEON build. 41 * Fixed an issue with the ARM NEON build.
39 http://crbug.com/451035 42 http://crbug.com/451035
40 43
41 The 'google.patch' file represents our changes from the original 44 The 'google.patch' file represents our changes from the original
Noel Gordon 2015/07/30 19:10:07 And we update it with every change (refer to other
msarett 2015/07/30 20:16:51 I did the following: 1) Download libjpeg-turbo at
42 libjpeg-turbo-1.2. 45 libjpeg-turbo-1.2.
43 46
44 Refer to working-with-nested-repos [1] for details of how to setup your git 47 Refer to working-with-nested-repos [1] for details of how to setup your git
45 svn client to update the code (for making local changes, cherry picking from 48 svn client to update the code (for making local changes, cherry picking from
46 upstream, etc). 49 upstream, etc).
47 50
48 [1] https://www.chromium.org/developers/how-tos/get-the-code/working-with-nested -repos 51 [1] https://www.chromium.org/developers/how-tos/get-the-code/working-with-nested -repos
Noel Gordon 2015/07/30 19:10:07 I assume you are using these instructions. agable@
msarett 2015/07/30 20:16:51 All I did was: git checkout master git checkout -t
OLDNEW
« no previous file with comments | « no previous file | djpeg.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698