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

Side by Side Diff: jpeglibmangler.h

Issue 1270213002: Add support for decoding to 565 to libjpeg_turbo (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Link crbug in the README 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 | « jpeglib.h ('k') | jsimd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_ 5 #ifndef THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_
6 #define THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_ 6 #define THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_
7 7
8 // Mangle all externally visible function names so we can build our own libjpeg 8 // Mangle all externally visible function names so we can build our own libjpeg
9 // without system libraries trying to use it. 9 // without system libraries trying to use it.
10 10
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 #define jpeg_destroy chromium_jpeg_destroy 103 #define jpeg_destroy chromium_jpeg_destroy
104 #define jpeg_resync_to_restart chromium_jpeg_resync_to_restart 104 #define jpeg_resync_to_restart chromium_jpeg_resync_to_restart
105 #define jpeg_get_small chromium_jpeg_get_small 105 #define jpeg_get_small chromium_jpeg_get_small
106 #define jpeg_free_small chromium_jpeg_free_small 106 #define jpeg_free_small chromium_jpeg_free_small
107 #define jpeg_get_large chromium_jpeg_get_large 107 #define jpeg_get_large chromium_jpeg_get_large
108 #define jpeg_free_large chromium_jpeg_free_large 108 #define jpeg_free_large chromium_jpeg_free_large
109 #define jpeg_mem_available chromium_jpeg_mem_available 109 #define jpeg_mem_available chromium_jpeg_mem_available
110 #define jpeg_open_backing_store chromium_jpeg_open_backing_store 110 #define jpeg_open_backing_store chromium_jpeg_open_backing_store
111 #define jpeg_mem_init chromium_jpeg_mem_init 111 #define jpeg_mem_init chromium_jpeg_mem_init
112 #define jpeg_mem_term chromium_jpeg_mem_term 112 #define jpeg_mem_term chromium_jpeg_mem_term
113 #define jpeg_std_message_table chromium_jpeg_std_message_table
114 #define jpeg_natural_order chromium_jpeg_natural_order
113 115
114 #endif // THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_ 116 #endif // THIRD_PARTY_LIBJPEG_TURBO_JPEGLIBMANGLER_H_
OLDNEW
« no previous file with comments | « jpeglib.h ('k') | jsimd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698