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 // RIFF container manipulation for WEBP images. | 10 // RIFF container manipulation for WEBP images. |
9 // | 11 // |
10 // Authors: Urvang (urvang@google.com) | 12 // Authors: Urvang (urvang@google.com) |
11 // Vikas (vikasa@google.com) | 13 // Vikas (vikasa@google.com) |
12 | 14 |
13 // This API allows manipulation of WebP container images containing features | 15 // This API allows manipulation of WebP container images containing features |
14 // like color profile, metadata, animation and fragmented images. | 16 // like color profile, metadata, animation and fragmented images. |
15 // | 17 // |
(...skipping 30 matching lines...) Expand all Loading... |
46 #define WEBP_WEBP_MUX_H_ | 48 #define WEBP_WEBP_MUX_H_ |
47 | 49 |
48 #include "./mux_types.h" | 50 #include "./mux_types.h" |
49 | 51 |
50 #if defined(__cplusplus) || defined(c_plusplus) | 52 #if defined(__cplusplus) || defined(c_plusplus) |
51 extern "C" { | 53 extern "C" { |
52 #endif | 54 #endif |
53 | 55 |
54 #define WEBP_MUX_ABI_VERSION 0x0100 // MAJOR(8b) + MINOR(8b) | 56 #define WEBP_MUX_ABI_VERSION 0x0100 // MAJOR(8b) + MINOR(8b) |
55 | 57 |
| 58 // Note: forward declaring enumerations is not allowed in (strict) C and C++, |
| 59 // the types are left here for reference. |
| 60 // typedef enum WebPMuxError WebPMuxError; |
| 61 // typedef enum WebPChunkId WebPChunkId; |
56 typedef struct WebPMux WebPMux; // main opaque object. | 62 typedef struct WebPMux WebPMux; // main opaque object. |
57 #if !(defined(__cplusplus) || defined(c_plusplus)) | |
58 typedef enum WebPMuxError WebPMuxError; | |
59 typedef enum WebPChunkId WebPChunkId; | |
60 #endif | |
61 typedef struct WebPMuxFrameInfo WebPMuxFrameInfo; | 63 typedef struct WebPMuxFrameInfo WebPMuxFrameInfo; |
62 typedef struct WebPMuxAnimParams WebPMuxAnimParams; | 64 typedef struct WebPMuxAnimParams WebPMuxAnimParams; |
63 | 65 |
64 // Error codes | 66 // Error codes |
65 enum WebPMuxError { | 67 typedef enum WebPMuxError { |
66 WEBP_MUX_OK = 1, | 68 WEBP_MUX_OK = 1, |
67 WEBP_MUX_NOT_FOUND = 0, | 69 WEBP_MUX_NOT_FOUND = 0, |
68 WEBP_MUX_INVALID_ARGUMENT = -1, | 70 WEBP_MUX_INVALID_ARGUMENT = -1, |
69 WEBP_MUX_BAD_DATA = -2, | 71 WEBP_MUX_BAD_DATA = -2, |
70 WEBP_MUX_MEMORY_ERROR = -3, | 72 WEBP_MUX_MEMORY_ERROR = -3, |
71 WEBP_MUX_NOT_ENOUGH_DATA = -4 | 73 WEBP_MUX_NOT_ENOUGH_DATA = -4 |
72 }; | 74 } WebPMuxError; |
73 | 75 |
74 // IDs for different types of chunks. | 76 // IDs for different types of chunks. |
75 enum WebPChunkId { | 77 typedef enum WebPChunkId { |
76 WEBP_CHUNK_VP8X, // VP8X | 78 WEBP_CHUNK_VP8X, // VP8X |
77 WEBP_CHUNK_ICCP, // ICCP | 79 WEBP_CHUNK_ICCP, // ICCP |
78 WEBP_CHUNK_ANIM, // ANIM | 80 WEBP_CHUNK_ANIM, // ANIM |
79 WEBP_CHUNK_ANMF, // ANMF | 81 WEBP_CHUNK_ANMF, // ANMF |
80 WEBP_CHUNK_FRGM, // FRGM | 82 WEBP_CHUNK_FRGM, // FRGM |
81 WEBP_CHUNK_ALPHA, // ALPH | 83 WEBP_CHUNK_ALPHA, // ALPH |
82 WEBP_CHUNK_IMAGE, // VP8/VP8L | 84 WEBP_CHUNK_IMAGE, // VP8/VP8L |
83 WEBP_CHUNK_EXIF, // EXIF | 85 WEBP_CHUNK_EXIF, // EXIF |
84 WEBP_CHUNK_XMP, // XMP | 86 WEBP_CHUNK_XMP, // XMP |
85 WEBP_CHUNK_UNKNOWN, // Other chunks. | 87 WEBP_CHUNK_UNKNOWN, // Other chunks. |
86 WEBP_CHUNK_NIL | 88 WEBP_CHUNK_NIL |
87 }; | 89 } WebPChunkId; |
88 | 90 |
89 //------------------------------------------------------------------------------ | 91 //------------------------------------------------------------------------------ |
90 | 92 |
91 // Returns the version number of the mux library, packed in hexadecimal using | 93 // Returns the version number of the mux library, packed in hexadecimal using |
92 // 8bits or each of major/minor/revision. E.g: v2.5.7 is 0x020507. | 94 // 8bits or each of major/minor/revision. E.g: v2.5.7 is 0x020507. |
93 WEBP_EXTERN(int) WebPGetMuxVersion(void); | 95 WEBP_EXTERN(int) WebPGetMuxVersion(void); |
94 | 96 |
95 //------------------------------------------------------------------------------ | 97 //------------------------------------------------------------------------------ |
96 // Life of a Mux object | 98 // Life of a Mux object |
97 | 99 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 WEBP_EXTERN(WebPMuxError) WebPMuxAssemble(WebPMux* mux, | 348 WEBP_EXTERN(WebPMuxError) WebPMuxAssemble(WebPMux* mux, |
347 WebPData* assembled_data); | 349 WebPData* assembled_data); |
348 | 350 |
349 //------------------------------------------------------------------------------ | 351 //------------------------------------------------------------------------------ |
350 | 352 |
351 #if defined(__cplusplus) || defined(c_plusplus) | 353 #if defined(__cplusplus) || defined(c_plusplus) |
352 } // extern "C" | 354 } // extern "C" |
353 #endif | 355 #endif |
354 | 356 |
355 #endif /* WEBP_WEBP_MUX_H_ */ | 357 #endif /* WEBP_WEBP_MUX_H_ */ |
OLD | NEW |