OLD | NEW |
1 // Copyright 2011 Google Inc. All Rights Reserved. | 1 // Copyright 2011 Google Inc. All Rights Reserved. |
2 // | 2 // |
3 // This code is licensed under the same terms as WebM: | 3 // Use of this source code is governed by a BSD-style license |
4 // Software License Agreement: http://www.webmproject.org/license/software/ | 4 // that can be found in the COPYING file in the root of the source |
5 // Additional IP Rights Grant: http://www.webmproject.org/license/additional/ | 5 // tree. An additional intellectual property rights grant can be found |
| 6 // in the file PATENTS. All contributing project authors may |
| 7 // be found in the AUTHORS file in the root of the source tree. |
6 // ----------------------------------------------------------------------------- | 8 // ----------------------------------------------------------------------------- |
7 // | 9 // |
8 // Quantize levels for specified number of quantization-levels ([2, 256]). | 10 // Quantize levels for specified number of quantization-levels ([2, 256]). |
9 // Min and max values are preserved (usual 0 and 255 for alpha plane). | 11 // Min and max values are preserved (usual 0 and 255 for alpha plane). |
10 // | 12 // |
11 // Author: Skal (pascal.massimino@gmail.com) | 13 // Author: Skal (pascal.massimino@gmail.com) |
12 | 14 |
13 #include <assert.h> | 15 #include <assert.h> |
14 | 16 |
15 #include "./quant_levels.h" | 17 #include "./quant_levels.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 End: | 138 End: |
137 // Store sum of squared error if needed. | 139 // Store sum of squared error if needed. |
138 if (sse != NULL) *sse = (uint64_t)err; | 140 if (sse != NULL) *sse = (uint64_t)err; |
139 | 141 |
140 return 1; | 142 return 1; |
141 } | 143 } |
142 | 144 |
143 #if defined(__cplusplus) || defined(c_plusplus) | 145 #if defined(__cplusplus) || defined(c_plusplus) |
144 } // extern "C" | 146 } // extern "C" |
145 #endif | 147 #endif |
OLD | NEW |