OLD | NEW |
1 // Copyright 2012 Google Inc. All Rights Reserved. | 1 // Copyright 2012 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 // Misc. common utility functions | 10 // Misc. common utility functions |
9 // | 11 // |
10 // Authors: Skal (pascal.massimino@gmail.com) | 12 // Authors: Skal (pascal.massimino@gmail.com) |
11 // Urvang (urvang@google.com) | 13 // Urvang (urvang@google.com) |
12 | 14 |
13 #ifndef WEBP_UTILS_UTILS_H_ | 15 #ifndef WEBP_UTILS_UTILS_H_ |
14 #define WEBP_UTILS_UTILS_H_ | 16 #define WEBP_UTILS_UTILS_H_ |
15 | 17 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 PutLE16(data + 2, (int)(val >> 16)); | 74 PutLE16(data + 2, (int)(val >> 16)); |
73 } | 75 } |
74 | 76 |
75 //------------------------------------------------------------------------------ | 77 //------------------------------------------------------------------------------ |
76 | 78 |
77 #if defined(__cplusplus) || defined(c_plusplus) | 79 #if defined(__cplusplus) || defined(c_plusplus) |
78 } // extern "C" | 80 } // extern "C" |
79 #endif | 81 #endif |
80 | 82 |
81 #endif /* WEBP_UTILS_UTILS_H_ */ | 83 #endif /* WEBP_UTILS_UTILS_H_ */ |
OLD | NEW |