codecs: Add support of Apple ProRes 4444 XQ: 'ap4x'.
[L-SMASH.git] / lsmash.h
blob8734fa385746bef2dd8a478ee2c8a9bc53391760
1 /*****************************************************************************
2 * lsmash.h:
3 *****************************************************************************
4 * Copyright (C) 2010-2015 L-SMASH project
6 * Authors: Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 *****************************************************************************/
21 /* This file is available under an ISC license. */
23 #ifndef LSMASH_H
24 #define LSMASH_H
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
30 #include <stddef.h>
31 #include <stdint.h>
33 #define PRIVATE /* If this declaration is placed at a variable, any user shall NOT use it. */
35 /**************************************************************************************
36 * Handle windows dll imports. The user must define this before including this header.
37 **************************************************************************************/
38 #ifdef LSMASH_API_IMPORTS
39 #define LSMASH_API __declspec(dllimport)
40 #else
41 #define LSMASH_API
42 #endif
44 #define LSMASH_4CC( a, b, c, d ) (((a)<<24) | ((b)<<16) | ((c)<<8) | (d))
46 /****************************************************************************
47 * Version
48 ****************************************************************************/
49 #define LSMASH_VERSION_MAJOR 2
50 #define LSMASH_VERSION_MINOR 8
51 #define LSMASH_VERSION_MICRO 0
53 #define LSMASH_VERSION_INT( a, b, c ) (((a) << 16) | ((b) << 8) | (c))
55 #define LIBLSMASH_VERSION_INT LSMASH_VERSION_INT( LSMASH_VERSION_MAJOR, \
56 LSMASH_VERSION_MINOR, \
57 LSMASH_VERSION_MICRO )
59 /****************************************************************************
60 * Error Values
61 ****************************************************************************/
62 enum
64 LSMASH_ERR_NAMELESS = -1, /* An error but not assigned to any following errors */
65 LSMASH_ERR_MEMORY_ALLOC = -2, /* There is not enough room in the heap. */
66 LSMASH_ERR_INVALID_DATA = -3, /* Invalid data was found. */
67 LSMASH_ERR_FUNCTION_PARAM = -4, /* An error in the parameter list of the function */
68 LSMASH_ERR_PATCH_WELCOME = -5, /* Not implemented yet, so patches welcome. */
69 LSMASH_ERR_UNKNOWN = -6, /* Unknown error occured. */
72 /****************************************************************************
73 * ROOT
74 * The top-level opaque handler for whole file handling.
75 ****************************************************************************/
76 typedef struct lsmash_root_tag lsmash_root_t;
78 /* Allocate a ROOT.
79 * The allocated ROOT can be deallocate by lsmash_destroy_root().
81 * Return the address of an allocated ROOT if successful.
82 * Return NULL otherwise. */
83 lsmash_root_t *lsmash_create_root
85 void
88 /* Deallocate a given ROOT. */
89 void lsmash_destroy_root
91 lsmash_root_t *root /* the address of a ROOT you want to deallocate */
94 /****************************************************************************
95 * File Layer
96 ****************************************************************************/
97 typedef struct lsmash_file_tag lsmash_file_t;
99 typedef enum
101 LSMASH_FILE_MODE_WRITE = 1, /* output/muxing */
102 LSMASH_FILE_MODE_READ = 1<<1, /* input/demuxing */
103 LSMASH_FILE_MODE_FRAGMENTED = 1<<2, /* movie fragments */
104 LSMASH_FILE_MODE_DUMP = 1<<3,
105 LSMASH_FILE_MODE_BOX = 1<<4, /* box structure */
106 LSMASH_FILE_MODE_INITIALIZATION = 1<<5, /* movie sample table */
107 LSMASH_FILE_MODE_MEDIA = 1<<6, /* media data */
108 LSMASH_FILE_MODE_INDEX = 1<<7,
109 LSMASH_FILE_MODE_SEGMENT = 1<<8, /* segment */
110 LSMASH_FILE_MODE_WRITE_FRAGMENTED = LSMASH_FILE_MODE_WRITE | LSMASH_FILE_MODE_FRAGMENTED, /* deprecated */
111 } lsmash_file_mode;
113 typedef enum
115 ISOM_BRAND_TYPE_3G2A = LSMASH_4CC( '3', 'g', '2', 'a' ), /* 3GPP2 */
116 ISOM_BRAND_TYPE_3GE6 = LSMASH_4CC( '3', 'g', 'e', '6' ), /* 3GPP Release 6 Extended Presentation Profile */
117 ISOM_BRAND_TYPE_3GE9 = LSMASH_4CC( '3', 'g', 'e', '9' ), /* 3GPP Release 9 Extended Presentation Profile */
118 ISOM_BRAND_TYPE_3GF9 = LSMASH_4CC( '3', 'g', 'f', '9' ), /* 3GPP Release 9 File-delivery Server Profile */
119 ISOM_BRAND_TYPE_3GG6 = LSMASH_4CC( '3', 'g', 'g', '6' ), /* 3GPP Release 6 General Profile */
120 ISOM_BRAND_TYPE_3GG9 = LSMASH_4CC( '3', 'g', 'g', '9' ), /* 3GPP Release 9 General Profile */
121 ISOM_BRAND_TYPE_3GH9 = LSMASH_4CC( '3', 'g', 'h', '9' ), /* 3GPP Release 9 Adaptive Streaming Profile */
122 ISOM_BRAND_TYPE_3GM9 = LSMASH_4CC( '3', 'g', 'm', '9' ), /* 3GPP Release 9 Media Segment Profile */
123 ISOM_BRAND_TYPE_3GP4 = LSMASH_4CC( '3', 'g', 'p', '4' ), /* 3GPP Release 4 */
124 ISOM_BRAND_TYPE_3GP5 = LSMASH_4CC( '3', 'g', 'p', '5' ), /* 3GPP Release 5 */
125 ISOM_BRAND_TYPE_3GP6 = LSMASH_4CC( '3', 'g', 'p', '6' ), /* 3GPP Release 6 Basic Profile */
126 ISOM_BRAND_TYPE_3GP7 = LSMASH_4CC( '3', 'g', 'p', '7' ), /* 3GPP Release 7 */
127 ISOM_BRAND_TYPE_3GP8 = LSMASH_4CC( '3', 'g', 'p', '8' ), /* 3GPP Release 8 */
128 ISOM_BRAND_TYPE_3GP9 = LSMASH_4CC( '3', 'g', 'p', '9' ), /* 3GPP Release 9 Basic Profile */
129 ISOM_BRAND_TYPE_3GR6 = LSMASH_4CC( '3', 'g', 'r', '6' ), /* 3GPP Release 6 Progressive Download Profile */
130 ISOM_BRAND_TYPE_3GR9 = LSMASH_4CC( '3', 'g', 'r', '9' ), /* 3GPP Release 9 Progressive Download Profile */
131 ISOM_BRAND_TYPE_3GS6 = LSMASH_4CC( '3', 'g', 's', '6' ), /* 3GPP Release 6 Streaming Server Profile */
132 ISOM_BRAND_TYPE_3GS9 = LSMASH_4CC( '3', 'g', 's', '9' ), /* 3GPP Release 9 Streaming Server Profile */
133 ISOM_BRAND_TYPE_3GT9 = LSMASH_4CC( '3', 'g', 't', '9' ), /* 3GPP Release 9 Media Stream Recording Profile */
134 ISOM_BRAND_TYPE_ARRI = LSMASH_4CC( 'A', 'R', 'R', 'I' ), /* ARRI Digital Camera */
135 ISOM_BRAND_TYPE_CAEP = LSMASH_4CC( 'C', 'A', 'E', 'P' ), /* Canon Digital Camera */
136 ISOM_BRAND_TYPE_CDES = LSMASH_4CC( 'C', 'D', 'e', 's' ), /* Convergent Designs */
137 ISOM_BRAND_TYPE_LCAG = LSMASH_4CC( 'L', 'C', 'A', 'G' ), /* Leica digital camera */
138 ISOM_BRAND_TYPE_M4A = LSMASH_4CC( 'M', '4', 'A', ' ' ), /* iTunes MPEG-4 audio protected or not */
139 ISOM_BRAND_TYPE_M4B = LSMASH_4CC( 'M', '4', 'B', ' ' ), /* iTunes AudioBook protected or not */
140 ISOM_BRAND_TYPE_M4P = LSMASH_4CC( 'M', '4', 'P', ' ' ), /* MPEG-4 protected audio */
141 ISOM_BRAND_TYPE_M4V = LSMASH_4CC( 'M', '4', 'V', ' ' ), /* MPEG-4 protected audio+video */
142 ISOM_BRAND_TYPE_MFSM = LSMASH_4CC( 'M', 'F', 'S', 'M' ), /* Media File for Samsung video Metadata */
143 ISOM_BRAND_TYPE_MPPI = LSMASH_4CC( 'M', 'P', 'P', 'I' ), /* Photo Player Multimedia Application Format */
144 ISOM_BRAND_TYPE_ROSS = LSMASH_4CC( 'R', 'O', 'S', 'S' ), /* Ross Video */
145 ISOM_BRAND_TYPE_AVC1 = LSMASH_4CC( 'a', 'v', 'c', '1' ), /* Advanced Video Coding extensions */
146 ISOM_BRAND_TYPE_BBXM = LSMASH_4CC( 'b', 'b', 'x', 'm' ), /* Blinkbox Master File */
147 ISOM_BRAND_TYPE_CAQV = LSMASH_4CC( 'c', 'a', 'q', 'v' ), /* Casio Digital Camera */
148 ISOM_BRAND_TYPE_CCFF = LSMASH_4CC( 'c', 'c', 'f', 'f' ), /* Common container file format */
149 ISOM_BRAND_TYPE_DA0A = LSMASH_4CC( 'd', 'a', '0', 'a' ), /* DMB AF */
150 ISOM_BRAND_TYPE_DA0B = LSMASH_4CC( 'd', 'a', '0', 'b' ), /* DMB AF */
151 ISOM_BRAND_TYPE_DA1A = LSMASH_4CC( 'd', 'a', '1', 'a' ), /* DMB AF */
152 ISOM_BRAND_TYPE_DA1B = LSMASH_4CC( 'd', 'a', '1', 'b' ), /* DMB AF */
153 ISOM_BRAND_TYPE_DA2A = LSMASH_4CC( 'd', 'a', '2', 'a' ), /* DMB AF */
154 ISOM_BRAND_TYPE_DA2B = LSMASH_4CC( 'd', 'a', '2', 'b' ), /* DMB AF */
155 ISOM_BRAND_TYPE_DA3A = LSMASH_4CC( 'd', 'a', '3', 'a' ), /* DMB AF */
156 ISOM_BRAND_TYPE_DA3B = LSMASH_4CC( 'd', 'a', '3', 'b' ), /* DMB AF */
157 ISOM_BRAND_TYPE_DASH = LSMASH_4CC( 'd', 'a', 's', 'h' ), /* Indexed self-initializing Media Segment */
158 ISOM_BRAND_TYPE_DBY1 = LSMASH_4CC( 'd', 'b', 'y', '1' ), /* MP4 files with Dolby content */
159 ISOM_BRAND_TYPE_DMB1 = LSMASH_4CC( 'd', 'm', 'b', '1' ), /* DMB AF */
160 ISOM_BRAND_TYPE_DSMS = LSMASH_4CC( 'd', 's', 'm', 's' ), /* Self-initializing Media Segment */
161 ISOM_BRAND_TYPE_DV1A = LSMASH_4CC( 'd', 'v', '1', 'a' ), /* DMB AF */
162 ISOM_BRAND_TYPE_DV1B = LSMASH_4CC( 'd', 'v', '1', 'b' ), /* DMB AF */
163 ISOM_BRAND_TYPE_DV2A = LSMASH_4CC( 'd', 'v', '2', 'a' ), /* DMB AF */
164 ISOM_BRAND_TYPE_DV2B = LSMASH_4CC( 'd', 'v', '2', 'b' ), /* DMB AF */
165 ISOM_BRAND_TYPE_DV3A = LSMASH_4CC( 'd', 'v', '3', 'a' ), /* DMB AF */
166 ISOM_BRAND_TYPE_DV3B = LSMASH_4CC( 'd', 'v', '3', 'b' ), /* DMB AF */
167 ISOM_BRAND_TYPE_DVR1 = LSMASH_4CC( 'd', 'v', 'r', '1' ), /* DVB RTP */
168 ISOM_BRAND_TYPE_DVT1 = LSMASH_4CC( 'd', 'v', 't', '1' ), /* DVB Transport Stream */
169 ISOM_BRAND_TYPE_IFRM = LSMASH_4CC( 'i', 'f', 'r', 'm' ), /* Apple iFrame */
170 ISOM_BRAND_TYPE_ISC2 = LSMASH_4CC( 'i', 's', 'c', '2' ), /* Files encrypted according to ISMACryp 2.0 */
171 ISOM_BRAND_TYPE_ISO2 = LSMASH_4CC( 'i', 's', 'o', '2' ), /* ISO Base Media file format version 2 */
172 ISOM_BRAND_TYPE_ISO3 = LSMASH_4CC( 'i', 's', 'o', '3' ), /* ISO Base Media file format version 3 */
173 ISOM_BRAND_TYPE_ISO4 = LSMASH_4CC( 'i', 's', 'o', '4' ), /* ISO Base Media file format version 4 */
174 ISOM_BRAND_TYPE_ISO5 = LSMASH_4CC( 'i', 's', 'o', '5' ), /* ISO Base Media file format version 5 */
175 ISOM_BRAND_TYPE_ISO6 = LSMASH_4CC( 'i', 's', 'o', '6' ), /* ISO Base Media file format version 6 */
176 ISOM_BRAND_TYPE_ISO7 = LSMASH_4CC( 'i', 's', 'o', '7' ), /* ISO Base Media file format version 7 */
177 ISOM_BRAND_TYPE_ISOM = LSMASH_4CC( 'i', 's', 'o', 'm' ), /* ISO Base Media file format version 1 */
178 ISOM_BRAND_TYPE_JPSI = LSMASH_4CC( 'j', 'p', 's', 'i' ), /* The JPSearch data interchange format */
179 ISOM_BRAND_TYPE_LMSG = LSMASH_4CC( 'l', 'm', 's', 'g' ), /* last Media Segment indicator */
180 ISOM_BRAND_TYPE_MJ2S = LSMASH_4CC( 'm', 'j', '2', 's' ), /* Motion JPEG 2000 simple profile */
181 ISOM_BRAND_TYPE_MJP2 = LSMASH_4CC( 'm', 'j', 'p', '2' ), /* Motion JPEG 2000, general profile */
182 ISOM_BRAND_TYPE_MP21 = LSMASH_4CC( 'm', 'p', '2', '1' ), /* MPEG-21 */
183 ISOM_BRAND_TYPE_MP41 = LSMASH_4CC( 'm', 'p', '4', '1' ), /* MP4 version 1 */
184 ISOM_BRAND_TYPE_MP42 = LSMASH_4CC( 'm', 'p', '4', '2' ), /* MP4 version 2 */
185 ISOM_BRAND_TYPE_MP71 = LSMASH_4CC( 'm', 'p', '7', '1' ), /* MPEG-7 file-level metadata */
186 ISOM_BRAND_TYPE_MSDH = LSMASH_4CC( 'm', 's', 'd', 'h' ), /* Media Segment */
187 ISOM_BRAND_TYPE_MSIX = LSMASH_4CC( 'm', 's', 'i', 'x' ), /* Indexed Media Segment */
188 ISOM_BRAND_TYPE_NIKO = LSMASH_4CC( 'n', 'i', 'k', 'o' ), /* Nikon Digital Camera */
189 ISOM_BRAND_TYPE_ODCF = LSMASH_4CC( 'o', 'd', 'c', 'f' ), /* OMA DCF */
190 ISOM_BRAND_TYPE_OPF2 = LSMASH_4CC( 'o', 'p', 'f', '2' ), /* OMA PDCF */
191 ISOM_BRAND_TYPE_OPX2 = LSMASH_4CC( 'o', 'p', 'x', '2' ), /* OMA Adapted PDCF */
192 ISOM_BRAND_TYPE_PANA = LSMASH_4CC( 'p', 'a', 'n', 'a' ), /* Panasonic Digital Camera */
193 ISOM_BRAND_TYPE_PIFF = LSMASH_4CC( 'p', 'i', 'f', 'f' ), /* Protected Interoperable File Format */
194 ISOM_BRAND_TYPE_PNVI = LSMASH_4CC( 'p', 'n', 'v', 'i' ), /* Panasonic Video Intercom */
195 ISOM_BRAND_TYPE_QT = LSMASH_4CC( 'q', 't', ' ', ' ' ), /* QuickTime file format */
196 ISOM_BRAND_TYPE_RISX = LSMASH_4CC( 'r', 'i', 's', 'x' ), /* Representation Index Segment */
197 ISOM_BRAND_TYPE_SDV = LSMASH_4CC( 's', 'd', 'v', ' ' ), /* SD Video */
198 ISOM_BRAND_TYPE_SIMS = LSMASH_4CC( 's', 'i', 'm', 's' ), /* Sub-Indexed Media Segment */
199 ISOM_BRAND_TYPE_SISX = LSMASH_4CC( 's', 'i', 's', 'x' ), /* Single Index Segment */
200 ISOM_BRAND_TYPE_SSSS = LSMASH_4CC( 's', 's', 's', 's' ), /* Subsegment Index Segment */
201 } lsmash_brand_type;
203 typedef struct
205 lsmash_file_mode mode; /* file modes */
206 /** custom I/O stuff **/
207 void *opaque; /* custom I/O opaque handler used for the following callback functions */
208 /* Attempt to read up to 'size' bytes from the file referenced by 'opaque' into the buffer starting at 'buf'.
210 * Return the number of bytes read if successful.
211 * Return 0 if no more read.
212 * Return a negative value otherwise. */
213 int (*read)
215 void *opaque,
216 uint8_t *buf,
217 int size
219 /* Write up to 'size' bytes to the file referenced by 'opaque' from the buffer starting at 'buf'.
221 * Return the number of bytes written if successful.
222 * Return a negative value otherwise. */
223 int (*write)
225 void *opaque,
226 uint8_t *buf,
227 int size
229 /* Change the location of the read/write pointer of 'opaque'.
230 * The offset of the pointer is determined according to the directive 'whence' as follows:
231 * If 'whence' is set to SEEK_SET, the offset is set to 'offset' bytes.
232 * If 'whence' is set to SEEK_CUR, the offset is set to its current location plus 'offset' bytes.
233 * If 'whence' is set to SEEK_END, the offset is set to the size of the file plus 'offset' bytes.
235 * Return the resulting offset of the location in bytes from the beginning of the file if successful.
236 * Return a negative value otherwise. */
237 int64_t (*seek)
239 void *opaque,
240 int64_t offset,
241 int whence
243 /** file types or segment types **/
244 lsmash_brand_type major_brand; /* the best used brand */
245 lsmash_brand_type *brands; /* the list of compatible brands */
246 uint32_t brand_count; /* the number of compatible brands used in the file */
247 uint32_t minor_version; /* minor version of the best used brand
248 * minor_version is informative only i.e. not specifying requirements but merely providing information.
249 * It must not be used to determine the conformance of a file to a standard. */
250 /** muxing only **/
251 double max_chunk_duration; /* max duration per chunk in seconds. 0.5 is default value. */
252 double max_async_tolerance; /* max tolerance, in seconds, for amount of interleaving asynchronization between tracks.
253 * 2.0 is default value. At least twice of max_chunk_duration is used. */
254 uint64_t max_chunk_size; /* max size per chunk in bytes. 4*1024*1024 (4MiB) is default value. */
255 /** demuxing only **/
256 uint64_t max_read_size; /* max size of reading from the file at a time. 4*1024*1024 (4MiB) is default value. */
257 } lsmash_file_parameters_t;
259 typedef int (*lsmash_adhoc_remux_callback)( void *param, uint64_t done, uint64_t total );
260 typedef struct
262 uint64_t buffer_size;
263 lsmash_adhoc_remux_callback func;
264 void *param;
265 } lsmash_adhoc_remux_t;
267 /* Open a file where the path is given.
268 * And if successful, set up the parameters by 'open_mode'.
269 * Here, the 'open_mode' parameter is either 0 or 1 as follows:
270 * 0: Create a file for output/muxing operations.
271 * If a file with the same name already exists, its contents are discarded and the file is treated as a new file.
272 * If user specifies "-" for 'filename', operations are done on stdout.
273 * The file types or segment types are set up as specified in 'param'.
274 * 1: Open a file for input/demuxing operations. The file must exist.
275 * If user specifies "-" for 'filename', operations are done on stdin.
277 * This function sets up file modes minimally.
278 * User can add additional modes and/or remove modes already set later.
279 * The other parameters except for the custom I/O stuff are set to a default.
280 * User shall not touch the custom I/O stuff for the opened file if using this function.
282 * The opened file can be closed by lsmash_close_file().
284 * Note:
285 * 'filename' must be encoded by UTF-8 if 'open_mode' is equal to 0.
286 * On Windows, lsmash_convert_ansi_to_utf8() may help you.
288 * Return 0 if successful.
289 * Return a negative value otherwise. */
290 int lsmash_open_file
292 const char *filename,
293 int open_mode,
294 lsmash_file_parameters_t *param
297 /* Close a file opened by lsmash_open_file().
299 * Return 0 if successful.
300 * Return a negative value otherwise. */
301 int lsmash_close_file
303 lsmash_file_parameters_t *param
306 /* Associate a file with a ROOT and allocate the handle of that file.
307 * The all allocated handles can be deallocated by lsmash_destroy_root().
308 * If the ROOT has no associated file yet, the first associated file is activated.
310 * Return the address of the allocated handle of the added file if successful.
311 * Return NULL otherwise. */
312 lsmash_file_t *lsmash_set_file
314 lsmash_root_t *root,
315 lsmash_file_parameters_t *param
318 /* Read whole boxes in a given file.
319 * You can also get file modes and file types or segment types by this function.
321 * Return the file size (if seekable) or 0 if successful.
322 * Return a negative value otherwise. */
323 int64_t lsmash_read_file
325 lsmash_file_t *file,
326 lsmash_file_parameters_t *param
329 /* Deallocate all boxes within the current active file in a given ROOT. */
330 void lsmash_discard_boxes
332 lsmash_root_t *root /* the address of a ROOT you want to deallocate all boxes within the active file in it */
335 /* Activate a file associated with a ROOT.
337 * Return 0 if successful.
338 * Return a negative value otherwise. */
339 int lsmash_activate_file
341 lsmash_root_t *root,
342 lsmash_file_t *file
345 /* Switch from the current segment file to the following media segment file.
346 * After switching, the followed segment file can be closed unless that file is an initialization segment.
348 * The first followed segment file must be also an initialization segment.
349 * The second or later segment files must not be an initialization segment.
350 * For media segment files flagging LSMASH_FILE_MODE_INDEX, 'remux' must be set.
352 * Users shall call lsmash_flush_pooled_samples() for each track before calling this function.
354 * Return 0 if successful.
355 * Return a negative value otherwise. */
356 int lsmash_switch_media_segment
358 lsmash_root_t *root,
359 lsmash_file_t *successor,
360 lsmash_adhoc_remux_t *remux
363 /****************************************************************************
364 * Basic Types
365 ****************************************************************************/
366 /* rational types */
367 typedef struct
369 uint32_t n; /* numerator */
370 uint32_t d; /* denominator */
371 } lsmash_rational_u32_t;
373 typedef struct
375 int32_t n; /* numerator */
376 uint32_t d; /* denominator */
377 } lsmash_rational_s32_t;
379 typedef enum
381 LSMASH_BOOLEAN_FALSE = 0,
382 LSMASH_BOOLEAN_TRUE = 1
383 } lsmash_boolean_t;
385 /****************************************************************************
386 * Allocation
387 ****************************************************************************/
388 /* Allocate a memory block.
389 * The allocated memory block can be deallocate by lsmash_free().
391 * Return the address to the beginning of a memory block if successful.
392 * Return NULL otherwise. */
393 void *lsmash_malloc
395 size_t size /* size of a memory block, in bytes */
398 /* Allocate a memory block.
399 * The allocated memory block shall be initialized to all bits 0.
400 * The allocated memory block can be deallocate by lsmash_free().
402 * Return the address to the beginning of a memory block if successful.
403 * Return NULL otherwise. */
404 void *lsmash_malloc_zero
406 size_t size /* size of a memory block, in bytes */
409 /* Reallocate a memory block.
410 * The reallocated memory block can be deallocate by lsmash_free().
411 * If this function succeed, the given memory block is deallocated and the address is invalid.
412 * If this function fails, the address to the given memory block is still valid and the memory block is unchanged.
414 * Return the address to the beginning of a memory block if successful.
415 * Return NULL otherwise. */
416 void *lsmash_realloc
418 void *ptr, /* an address to a memory block previously allocated with
419 * lsmash_malloc(), lsmash_malloc_zero(), lsmash_realloc() or lsmash_memdup()
420 * Alternatively, NULL makes this function to allocate a new memory block. */
421 size_t size /* size of a memory block, in bytes */
424 /* Allocate a memory block and copy all bits from a given memory block.
425 * The allocated memory block can be deallocate by lsmash_free().
427 * Return the address to the beginning of an allocated memory block if successful.
428 * Return NULL otherwise. */
429 void *lsmash_memdup
431 const void *ptr, /* an address to the source of data to be copied */
432 size_t size /* number of bytes to copy */
435 /* Deallocate a given memory block.
436 * If the given address to a memory block is NULL, this function does nothing. */
437 void lsmash_free
439 void *ptr /* an address to a memory block previously allocated with
440 * lsmash_malloc(), lsmash_malloc_zero(), lsmash_realloc() or lsmash_memdup() */
443 /* Deallocate a given memory block.
444 * If the given address to a memory block is NULL, this function does nothing.
445 * Set NULL to the pointer to the memory block after deallocating.
447 * As an example of usage.
448 * Let's say you allocate a memory block and set the address to the beginning of it to the pointer 'ptr'.
449 * You can deallocate the memory block and set NULL to 'ptr' by lsmash_freep( &ptr ).
451 void lsmash_freep
453 void *ptrptr /* the address to a pointer to a memory block previously allocated with
454 * lsmash_malloc(), lsmash_malloc_zero(), lsmash_realloc() or lsmash_memdup() */
457 /****************************************************************************
458 * Box
459 ****************************************************************************/
460 typedef struct lsmash_box_tag lsmash_box_t;
461 typedef uint32_t lsmash_compact_box_type_t;
463 /* An UUID structure for extended box type */
464 typedef struct
466 uint32_t fourcc; /* four characters codes that identify extended box type partially
467 * If the box is not a UUID box, this field shall be the same as the box type.
468 * Note: characters in this field aren't always printable. */
469 uint8_t id[12]; /* If the box is not a UUID box, this field shall be set to 12-byte ISO reserved value
470 * { 0x00, 0x11, 0x00, 0x10, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 }
471 * and shall not be written into the stream together with above-defined four characters codes.
472 * As an exception, we could set the value
473 * { 0x0F, 0x11, 0x4D, 0xA5, 0xBF, 0x4E, 0xF2, 0xC4, 0x8C, 0x6A, 0xA1, 0x1E }
474 * to indicate the box is derived from QuickTime file format. */
475 } lsmash_extended_box_type_t;
477 typedef struct
479 lsmash_compact_box_type_t fourcc; /* four characters codes that identify box type
480 * Note: characters in this field aren't always printable. */
481 lsmash_extended_box_type_t user; /* Universal Unique IDentifier, i.e. UUID */
482 /* If 'fourcc' doesn't equal 'uuid', ignore this field. */
483 } lsmash_box_type_t;
485 typedef struct
487 lsmash_box_type_t type; /* box type */
488 uint32_t number; /* the number of box in ascending order excluding boxes unspecified by 'type' within
489 * the same level of the box nested structure. */
490 } lsmash_box_path_t;
492 #define LSMASH_BOX_TYPE_INITIALIZER { 0x00000000, { 0x00000000, { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } } }
493 #define LSMASH_BOX_TYPE_UNSPECIFIED static_lsmash_box_type_unspecified
494 LSMASH_API extern const lsmash_box_type_t static_lsmash_box_type_unspecified;
496 /* Return extended box type that consists of combination of given FourCC and 12-byte ID. */
497 lsmash_extended_box_type_t lsmash_form_extended_box_type
499 uint32_t fourcc,
500 const uint8_t id[12]
503 /* Return box type that consists of combination of given compact and extended box type. */
504 lsmash_box_type_t lsmash_form_box_type
506 lsmash_compact_box_type_t type,
507 lsmash_extended_box_type_t user
510 #define LSMASH_ISO_BOX_TYPE_INITIALIZER( x ) { x, { x, { 0x00, 0x11, 0x00, 0x10, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 } } }
511 #define LSMASH_QTFF_BOX_TYPE_INITIALIZER( x ) { x, { x, { 0x0F, 0x11, 0x4D, 0xA5, 0xBF, 0x4E, 0xF2, 0xC4, 0x8C, 0x6A, 0xA1, 0x1E } } }
512 lsmash_box_type_t lsmash_form_iso_box_type
514 lsmash_compact_box_type_t type
517 lsmash_box_type_t lsmash_form_qtff_box_type
519 lsmash_compact_box_type_t type
522 /* precedence of the box position
523 * Box with higher value will precede physically other boxes with lower one.
524 * The lower 32-bits are intended to determine order of boxes with the same box type. */
525 #define LSMASH_BOX_PRECEDENCE_L 0x0000000000800000ULL /* Lowest */
526 #define LSMASH_BOX_PRECEDENCE_LP 0x000FFFFF00000000ULL /* Lowest+ */
527 #define LSMASH_BOX_PRECEDENCE_N 0x0080000000000000ULL /* Normal */
528 #define LSMASH_BOX_PRECEDENCE_HM 0xFFEEEEEE00000000ULL /* Highest- */
529 #define LSMASH_BOX_PRECEDENCE_H 0xFFFFFFFF00800000ULL /* Highest */
530 #define LSMASH_BOX_PRECEDENCE_S 0x0000010000000000ULL /* Step */
532 /* Check if the type of two boxes is identical or not.
534 * Return 1 if the both box types are identical.
535 * Return 0 otherwise. */
536 int lsmash_check_box_type_identical
538 lsmash_box_type_t a,
539 lsmash_box_type_t b
542 /* Check if the type of a given box is already specified or not.
544 * Return 1 if the box type is specified.
545 * Return 0 otherwise, i.e. LSMASH_BOX_TYPE_UNSPECIFIED. */
546 int lsmash_check_box_type_specified
548 const lsmash_box_type_t *box_type
551 /* Allocate a box.
552 * The allocated box can be deallocated by lsmash_destroy_box().
554 * Return the address of an allocated box if successful.
555 * Return NULL otherwise. */
556 lsmash_box_t *lsmash_create_box
558 lsmash_box_type_t type,
559 uint8_t *data,
560 uint32_t size,
561 uint64_t precedence
564 /* Get a box under a given 'parent' box.
565 * The path of a box must be terminated by LSMASH_BOX_TYPE_UNSPECIFIED.
567 * Return the address of the box specified by 'box_path'.
568 * Return NULL otherwise. */
569 lsmash_box_t *lsmash_get_box
571 lsmash_box_t *parent,
572 const lsmash_box_path_t box_path[]
575 /* Add a box into 'parent' box as a child box.
577 * Return 0 if successful.
578 * Return a negative value otherwise. */
579 int lsmash_add_box
581 lsmash_box_t *parent,
582 lsmash_box_t *box
585 /* Add a box into 'parent' box as a child box.
586 * If the adding child box is known and its children (if any) are known, expand them into known
587 * struct formats for the internal references within the L-SMASH library.
588 * If this function succeed, the adding child box is deallocated and the address is invalid.
589 * Instead of that, this function replaces the invalid address with the valid one of the new
590 * allocated memory block representing the added and expanded child box.
592 * Return 0 if successful.
593 * Return a negative value otherwise. */
594 int lsmash_add_box_ex
596 lsmash_box_t *parent,
597 lsmash_box_t **box
600 /* Deallocate a given box and its children. */
601 void lsmash_destroy_box
603 lsmash_box_t *box
606 /* Deallocate all children of a given box. */
607 void lsmash_destroy_children
609 lsmash_box_t *box
612 /* Get the precedence of a given box.
614 * Return 0 if successful.
615 * Return a negative value otherwise. */
616 int lsmash_get_box_precedence
618 lsmash_box_t *box,
619 uint64_t *precedence
622 /* This function allows you to handle a ROOT as if it is a box.
623 * Of course, you can deallocate the ROOT by lsmash_destroy_box().
625 * Return the address of a given ROOT as a box. */
626 lsmash_box_t *lsmash_root_as_box
628 lsmash_root_t *root
631 /* This function allows you to handle the handle of a file as if it is a box.
632 * Of course, you can deallocate the handle of the file by lsmash_destroy_box().
634 * Return the address of the handle of a given file as a box. */
635 lsmash_box_t *lsmash_file_as_box
637 lsmash_file_t *file
640 /* Write a top level box and its children already added to a file.
641 * WARNING:
642 * You should not use this function as long as media data is incompletely written.
643 * That is before starting to write a media data or after finishing of writing that.
645 * Return 0 if successful.
646 * Return a negative value otherwise. */
647 int lsmash_write_top_level_box
649 lsmash_box_t *box
652 /* Export the data of a given box and its children as the binary string.
653 * The returned address is of the beginning of an allocated memory block.
654 * You can deallocate the memory block by lsmash_free().
656 * Note that some boxes cannot be exported since L-SMASH might skip the cache for them.
657 * Media Data Box is an unexportable example.
659 * Return the address to the beginning of the binary string if successful.
660 * Return NULL otherwise. */
661 uint8_t *lsmash_export_box
663 lsmash_box_t *box,
664 uint32_t *size
667 /****************************************************************************
668 * CODEC identifiers
669 ****************************************************************************/
670 typedef lsmash_box_type_t lsmash_codec_type_t;
672 #define LSMASH_CODEC_TYPE_INITIALIZER LSMASH_BOX_TYPE_INITIALIZER
673 #define LSMASH_CODEC_TYPE_UNSPECIFIED LSMASH_BOX_TYPE_UNSPECIFIED
675 #ifndef LSMASH_INITIALIZE_CODEC_ID_HERE
676 #define DEFINE_ISOM_CODEC_TYPE( BOX_TYPE_NAME, BOX_TYPE_FOURCC ) \
677 LSMASH_API extern const lsmash_codec_type_t BOX_TYPE_NAME
678 #define DEFINE_QTFF_CODEC_TYPE( BOX_TYPE_NAME, BOX_TYPE_FOURCC ) \
679 LSMASH_API extern const lsmash_codec_type_t BOX_TYPE_NAME
680 #else
681 #define DEFINE_ISOM_CODEC_TYPE( BOX_TYPE_NAME, BOX_TYPE_FOURCC ) \
682 const lsmash_codec_type_t BOX_TYPE_NAME = LSMASH_ISO_BOX_TYPE_INITIALIZER( BOX_TYPE_FOURCC )
683 #define DEFINE_QTFF_CODEC_TYPE( BOX_TYPE_NAME, BOX_TYPE_FOURCC ) \
684 const lsmash_codec_type_t BOX_TYPE_NAME = LSMASH_QTFF_BOX_TYPE_INITIALIZER( BOX_TYPE_FOURCC )
685 #endif
687 /* Audio CODEC identifiers */
688 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AC_3_AUDIO, LSMASH_4CC( 'a', 'c', '-', '3' ) ); /* AC-3 audio */
689 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_ALAC_AUDIO, LSMASH_4CC( 'a', 'l', 'a', 'c' ) ); /* Apple lossless audio codec */
690 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DRA1_AUDIO, LSMASH_4CC( 'd', 'r', 'a', '1' ) ); /* DRA Audio */
691 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DTSC_AUDIO, LSMASH_4CC( 'd', 't', 's', 'c' ) ); /* DTS Coherent Acoustics audio */
692 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DTSH_AUDIO, LSMASH_4CC( 'd', 't', 's', 'h' ) ); /* DTS-HD High Resolution Audio */
693 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DTSL_AUDIO, LSMASH_4CC( 'd', 't', 's', 'l' ) ); /* DTS-HD Master Audio */
694 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DTSE_AUDIO, LSMASH_4CC( 'd', 't', 's', 'e' ) ); /* DTS Express low bit rate audio, also known as DTS LBR */
695 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_EC_3_AUDIO, LSMASH_4CC( 'e', 'c', '-', '3' ) ); /* Enhanced AC-3 audio */
696 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_ENCA_AUDIO, LSMASH_4CC( 'e', 'n', 'c', 'a' ) ); /* Encrypted/Protected audio */
697 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_G719_AUDIO, LSMASH_4CC( 'g', '7', '1', '9' ) ); /* ITU-T Recommendation G.719 (2008) ); */
698 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_G726_AUDIO, LSMASH_4CC( 'g', '7', '2', '6' ) ); /* ITU-T Recommendation G.726 (1990) ); */
699 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_M4AE_AUDIO, LSMASH_4CC( 'm', '4', 'a', 'e' ) ); /* MPEG-4 Audio Enhancement */
700 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MLPA_AUDIO, LSMASH_4CC( 'm', 'l', 'p', 'a' ) ); /* MLP Audio */
701 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MP4A_AUDIO, LSMASH_4CC( 'm', 'p', '4', 'a' ) ); /* MPEG-4 Audio */
702 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_RAW_AUDIO, LSMASH_4CC( 'r', 'a', 'w', ' ' ) ); /* Uncompressed audio */
703 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SAMR_AUDIO, LSMASH_4CC( 's', 'a', 'm', 'r' ) ); /* Narrowband AMR voice */
704 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SAWB_AUDIO, LSMASH_4CC( 's', 'a', 'w', 'b' ) ); /* Wideband AMR voice */
705 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SAWP_AUDIO, LSMASH_4CC( 's', 'a', 'w', 'p' ) ); /* Extended AMR-WB (AMR-WB+) ); */
706 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SEVC_AUDIO, LSMASH_4CC( 's', 'e', 'v', 'c' ) ); /* EVRC Voice */
707 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SQCP_AUDIO, LSMASH_4CC( 's', 'q', 'c', 'p' ) ); /* 13K Voice */
708 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SSMV_AUDIO, LSMASH_4CC( 's', 's', 'm', 'v' ) ); /* SMV Voice */
709 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_TWOS_AUDIO, LSMASH_4CC( 't', 'w', 'o', 's' ) ); /* Uncompressed 16-bit audio */
710 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_WMA_AUDIO, LSMASH_4CC( 'w', 'm', 'a', ' ' ) ); /* Windows Media Audio V2 or V3 (not registered at MP4RA) */
712 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_23NI_AUDIO, LSMASH_4CC( '2', '3', 'n', 'i' ) ); /* 32-bit little endian integer uncompressed */
713 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MAC3_AUDIO, LSMASH_4CC( 'M', 'A', 'C', '3' ) ); /* MACE 3:1 */
714 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MAC6_AUDIO, LSMASH_4CC( 'M', 'A', 'C', '6' ) ); /* MACE 6:1 */
715 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_NONE_AUDIO, LSMASH_4CC( 'N', 'O', 'N', 'E' ) ); /* either 'raw ' or 'twos' */
716 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_QDM2_AUDIO, LSMASH_4CC( 'Q', 'D', 'M', '2' ) ); /* Qdesign music 2 */
717 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_QDMC_AUDIO, LSMASH_4CC( 'Q', 'D', 'M', 'C' ) ); /* Qdesign music 1 */
718 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_QCLP_AUDIO, LSMASH_4CC( 'Q', 'c', 'l', 'p' ) ); /* Qualcomm PureVoice */
719 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_AC_3_AUDIO, LSMASH_4CC( 'a', 'c', '-', '3' ) ); /* Digital Audio Compression Standard (AC-3, Enhanced AC-3) */
720 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_AGSM_AUDIO, LSMASH_4CC( 'a', 'g', 's', 'm' ) ); /* GSM */
721 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ALAC_AUDIO, LSMASH_4CC( 'a', 'l', 'a', 'c' ) ); /* Apple lossless audio codec */
722 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ALAW_AUDIO, LSMASH_4CC( 'a', 'l', 'a', 'w' ) ); /* a-Law 2:1 */
723 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_CDX2_AUDIO, LSMASH_4CC( 'c', 'd', 'x', '2' ) ); /* CD/XA 2:1 */
724 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_CDX4_AUDIO, LSMASH_4CC( 'c', 'd', 'x', '4' ) ); /* CD/XA 4:1 */
725 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVCA_AUDIO, LSMASH_4CC( 'd', 'v', 'c', 'a' ) ); /* DV Audio */
726 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVI_AUDIO, LSMASH_4CC( 'd', 'v', 'i', ' ' ) ); /* DVI (as used in RTP, 4:1 compression) */
727 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_FL32_AUDIO, LSMASH_4CC( 'f', 'l', '3', '2' ) ); /* 32-bit float */
728 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_FL64_AUDIO, LSMASH_4CC( 'f', 'l', '6', '4' ) ); /* 64-bit float */
729 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_IMA4_AUDIO, LSMASH_4CC( 'i', 'm', 'a', '4' ) ); /* IMA (International Multimedia Assocation, defunct, 4:1) */
730 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_IN24_AUDIO, LSMASH_4CC( 'i', 'n', '2', '4' ) ); /* 24-bit integer uncompressed */
731 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_IN32_AUDIO, LSMASH_4CC( 'i', 'n', '3', '2' ) ); /* 32-bit integer uncompressed */
732 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_LPCM_AUDIO, LSMASH_4CC( 'l', 'p', 'c', 'm' ) ); /* Uncompressed audio (various integer and float formats) */
733 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MP4A_AUDIO, LSMASH_4CC( 'm', 'p', '4', 'a' ) ); /* MPEG-4 Audio */
734 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_RAW_AUDIO, LSMASH_4CC( 'r', 'a', 'w', ' ' ) ); /* 8-bit offset-binary uncompressed */
735 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SOWT_AUDIO, LSMASH_4CC( 's', 'o', 'w', 't' ) ); /* 16-bit little endian uncompressed */
736 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_TWOS_AUDIO, LSMASH_4CC( 't', 'w', 'o', 's' ) ); /* 8-bit or 16-bit big endian uncompressed */
737 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULAW_AUDIO, LSMASH_4CC( 'u', 'l', 'a', 'w' ) ); /* uLaw 2:1 */
738 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_VDVA_AUDIO, LSMASH_4CC( 'v', 'd', 'v', 'a' ) ); /* DV audio (variable duration per video frame) */
739 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_FULLMP3_AUDIO, LSMASH_4CC( '.', 'm', 'p', '3' ) ); /* MPEG-1 layer 3, CBR & VBR (QT4.1 and later) */
740 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MP3_AUDIO, 0x6D730055 ); /* MPEG-1 layer 3, CBR only (pre-QT4.1) */
741 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ADPCM2_AUDIO, 0x6D730002 ); /* Microsoft ADPCM - ACM code 2 */
742 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ADPCM17_AUDIO, 0x6D730011 ); /* DVI/Intel IMA ADPCM - ACM code 17 */
743 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_GSM49_AUDIO, 0x6D730031 ); /* Microsoft GSM 6.10 - ACM code 49 */
744 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_NOT_SPECIFIED, 0x00000000 ); /* either 'raw ' or 'twos' */
746 /* Video CODEC identifiers */
747 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AVC1_VIDEO, LSMASH_4CC( 'a', 'v', 'c', '1' ) ); /* Advanced Video Coding
748 * Any sample must not contain any paramerter set and filler data. */
749 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AVC2_VIDEO, LSMASH_4CC( 'a', 'v', 'c', '2' ) ); /* Advanced Video Coding
750 * Any sample must not contain any paramerter set and filler data.
751 * May only be used when Extractors or Aggregators are required to be supported. */
752 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AVC3_VIDEO, LSMASH_4CC( 'a', 'v', 'c', '3' ) ); /* Advanced Video Coding
753 * It is allowed that sample contains parameter sets and filler data. */
754 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AVC4_VIDEO, LSMASH_4CC( 'a', 'v', 'c', '4' ) ); /* Advanced Video Coding
755 * It is allowed that sample contains parameter sets and filler data.
756 * May only be used when Extractors or Aggregators are required to be supported. */
757 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_AVCP_VIDEO, LSMASH_4CC( 'a', 'v', 'c', 'p' ) ); /* Advanced Video Coding Parameters */
758 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_DRAC_VIDEO, LSMASH_4CC( 'd', 'r', 'a', 'c' ) ); /* Dirac Video Coder */
759 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_ENCV_VIDEO, LSMASH_4CC( 'e', 'n', 'c', 'v' ) ); /* Encrypted/protected video */
760 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_HVC1_VIDEO, LSMASH_4CC( 'h', 'v', 'c', '1' ) ); /* High Efficiency Video Coding
761 * The default and mandatory value of array_completeness is 1 for arrays of
762 * all types of parameter sets, and 0 for all other arrays.
763 * This means any sample must not contain any paramerter set and filler data. */
764 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_HEV1_VIDEO, LSMASH_4CC( 'h', 'e', 'v', '1' ) ); /* High Efficiency Video Coding
765 * The default value of array_completeness is 0 for all arrays.
766 * It is allowed that sample contains parameter sets and filler data. */
767 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MJP2_VIDEO, LSMASH_4CC( 'm', 'j', 'p', '2' ) ); /* Motion JPEG 2000 */
768 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MP4V_VIDEO, LSMASH_4CC( 'm', 'p', '4', 'v' ) ); /* MPEG-4 Visual */
769 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MVC1_VIDEO, LSMASH_4CC( 'm', 'v', 'c', '1' ) ); /* Multiview coding */
770 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MVC2_VIDEO, LSMASH_4CC( 'm', 'v', 'c', '2' ) ); /* Multiview coding */
771 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_S263_VIDEO, LSMASH_4CC( 's', '2', '6', '3' ) ); /* ITU H.263 video (3GPP format) */
772 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SVC1_VIDEO, LSMASH_4CC( 's', 'v', 'c', '1' ) ); /* Scalable Video Coding */
773 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_VC_1_VIDEO, LSMASH_4CC( 'v', 'c', '-', '1' ) ); /* SMPTE VC-1 */
775 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_2VUY_VIDEO, LSMASH_4CC( '2', 'v', 'u', 'y' ) ); /* Uncompressed Y'CbCr, 8-bit-per-component 4:2:2
776 * |Cb(8)|Y'0(8)|Cr(8)|Y'1(8)| */
777 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_CFHD_VIDEO, LSMASH_4CC( 'C', 'F', 'H', 'D' ) ); /* CineForm High-Definition (HD) wavelet codec */
778 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DV10_VIDEO, LSMASH_4CC( 'D', 'V', '1', '0' ) ); /* Digital Voodoo 10 bit Uncompressed 4:2:2 codec */
779 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVOO_VIDEO, LSMASH_4CC( 'D', 'V', 'O', 'O' ) ); /* Digital Voodoo 8 bit Uncompressed 4:2:2 codec */
780 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVOR_VIDEO, LSMASH_4CC( 'D', 'V', 'O', 'R' ) ); /* Digital Voodoo intermediate raw */
781 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVTV_VIDEO, LSMASH_4CC( 'D', 'V', 'T', 'V' ) ); /* Digital Voodoo intermediate 2vuy */
782 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVVT_VIDEO, LSMASH_4CC( 'D', 'V', 'V', 'T' ) ); /* Digital Voodoo intermediate v210 */
783 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_HD10_VIDEO, LSMASH_4CC( 'H', 'D', '1', '0' ) ); /* Digital Voodoo 10 bit Uncompressed 4:2:2 HD codec */
784 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_M105_VIDEO, LSMASH_4CC( 'M', '1', '0', '5' ) ); /* Internal format of video data supported by Matrox hardware; pixel organization is proprietary*/
785 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_PNTG_VIDEO, LSMASH_4CC( 'P', 'N', 'T', 'G' ) ); /* Apple MacPaint image format */
786 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SVQ1_VIDEO, LSMASH_4CC( 'S', 'V', 'Q', '1' ) ); /* Sorenson Video 1 video */
787 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SVQ3_VIDEO, LSMASH_4CC( 'S', 'V', 'Q', '3' ) ); /* Sorenson Video 3 video */
788 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SHR0_VIDEO, LSMASH_4CC( 'S', 'h', 'r', '0' ) ); /* Generic SheerVideo codec */
789 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SHR1_VIDEO, LSMASH_4CC( 'S', 'h', 'r', '1' ) ); /* SheerVideo RGB[A] 8b - at 8 bits/channel */
790 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SHR2_VIDEO, LSMASH_4CC( 'S', 'h', 'r', '2' ) ); /* SheerVideo Y'CbCr[A] 8bv 4:4:4[:4] - at 8 bits/channel, in ITU-R BT.601-4 video range */
791 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SHR3_VIDEO, LSMASH_4CC( 'S', 'h', 'r', '3' ) ); /* SheerVideo Y'CbCr 8bv 4:2:2 - 2:1 chroma subsampling, at 8 bits/channel, in ITU-R BT.601-4 video range */
792 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_SHR4_VIDEO, LSMASH_4CC( 'S', 'h', 'r', '4' ) ); /* SheerVideo Y'CbCr 8bw 4:2:2 - 2:1 chroma subsampling, at 8 bits/channel, with full-range luma and wide-range two's-complement chroma */
793 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_WRLE_VIDEO, LSMASH_4CC( 'W', 'R', 'L', 'E' ) ); /* Windows BMP image format */
794 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_APCH_VIDEO, LSMASH_4CC( 'a', 'p', 'c', 'h' ) ); /* Apple ProRes 422 High Quality */
795 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_APCN_VIDEO, LSMASH_4CC( 'a', 'p', 'c', 'n' ) ); /* Apple ProRes 422 Standard Definition */
796 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_APCS_VIDEO, LSMASH_4CC( 'a', 'p', 'c', 's' ) ); /* Apple ProRes 422 LT */
797 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_APCO_VIDEO, LSMASH_4CC( 'a', 'p', 'c', 'o' ) ); /* Apple ProRes 422 Proxy */
798 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_AP4H_VIDEO, LSMASH_4CC( 'a', 'p', '4', 'h' ) ); /* Apple ProRes 4444 */
799 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_AP4X_VIDEO, LSMASH_4CC( 'a', 'p', '4', 'x' ) ); /* Apple ProRes 4444 XQ */
800 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_CIVD_VIDEO, LSMASH_4CC( 'c', 'i', 'v', 'd' ) ); /* Cinepak Video */
801 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DRAC_VIDEO, LSMASH_4CC( 'd', 'r', 'a', 'c' ) ); /* Dirac Video Coder */
802 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVC_VIDEO, LSMASH_4CC( 'd', 'v', 'c', ' ' ) ); /* DV NTSC format */
803 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVCP_VIDEO, LSMASH_4CC( 'd', 'v', 'c', 'p' ) ); /* DV PAL format */
804 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVPP_VIDEO, LSMASH_4CC( 'd', 'v', 'p', 'p' ) ); /* Panasonic DVCPro PAL format */
805 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DV5N_VIDEO, LSMASH_4CC( 'd', 'v', '5', 'n' ) ); /* Panasonic DVCPro-50 NTSC format */
806 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DV5P_VIDEO, LSMASH_4CC( 'd', 'v', '5', 'p' ) ); /* Panasonic DVCPro-50 PAL format */
807 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVH2_VIDEO, LSMASH_4CC( 'd', 'v', 'h', '2' ) ); /* Panasonic DVCPro-HD 1080p25 format */
808 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVH3_VIDEO, LSMASH_4CC( 'd', 'v', 'h', '3' ) ); /* Panasonic DVCPro-HD 1080p30 format */
809 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVH5_VIDEO, LSMASH_4CC( 'd', 'v', 'h', '5' ) ); /* Panasonic DVCPro-HD 1080i50 format */
810 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVH6_VIDEO, LSMASH_4CC( 'd', 'v', 'h', '6' ) ); /* Panasonic DVCPro-HD 1080i60 format */
811 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVHP_VIDEO, LSMASH_4CC( 'd', 'v', 'h', 'p' ) ); /* Panasonic DVCPro-HD 720p60 format */
812 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_DVHQ_VIDEO, LSMASH_4CC( 'd', 'v', 'h', 'q' ) ); /* Panasonic DVCPro-HD 720p50 format */
813 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_FLIC_VIDEO, LSMASH_4CC( 'f', 'l', 'i', 'c' ) ); /* Autodesk FLIC animation format */
814 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_GIF_VIDEO, LSMASH_4CC( 'g', 'i', 'f', ' ' ) ); /* GIF image format */
815 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_H261_VIDEO, LSMASH_4CC( 'h', '2', '6', '1' ) ); /* ITU H.261 video */
816 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_H263_VIDEO, LSMASH_4CC( 'h', '2', '6', '3' ) ); /* ITU H.263 video */
817 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_JPEG_VIDEO, LSMASH_4CC( 'j', 'p', 'e', 'g' ) ); /* JPEG image format */
818 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MJPA_VIDEO, LSMASH_4CC( 'm', 'j', 'p', 'a' ) ); /* Motion-JPEG (format A) */
819 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_MJPB_VIDEO, LSMASH_4CC( 'm', 'j', 'p', 'b' ) ); /* Motion-JPEG (format B) */
820 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_PNG_VIDEO, LSMASH_4CC( 'p', 'n', 'g', ' ' ) ); /* W3C Portable Network Graphics (PNG) */
821 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_RAW_VIDEO, LSMASH_4CC( 'r', 'a', 'w', ' ' ) ); /* Uncompressed RGB */
822 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_RLE_VIDEO, LSMASH_4CC( 'r', 'l', 'e', ' ' ) ); /* Apple animation codec */
823 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_RPZA_VIDEO, LSMASH_4CC( 'r', 'p', 'z', 'a' ) ); /* Apple simple video 'road pizza' compression */
824 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_TGA_VIDEO, LSMASH_4CC( 't', 'g', 'a', ' ' ) ); /* Truvision Targa video format */
825 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_TIFF_VIDEO, LSMASH_4CC( 't', 'i', 'f', 'f' ) ); /* Tagged Image File Format (Adobe) */
826 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULRA_VIDEO, LSMASH_4CC( 'U', 'L', 'R', 'A' ) ); /* Ut Video RGBA 4:4:4:4 8bit full-range */
827 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULRG_VIDEO, LSMASH_4CC( 'U', 'L', 'R', 'G' ) ); /* Ut Video RGB 4:4:4 8bit full-range */
828 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULY0_VIDEO, LSMASH_4CC( 'U', 'L', 'Y', '0' ) ); /* Ut Video YCbCr (BT.601) 4:2:0 8bit limited */
829 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULY2_VIDEO, LSMASH_4CC( 'U', 'L', 'Y', '2' ) ); /* Ut Video YCbCr (BT.601) 4:2:2 8bit limited */
830 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULH0_VIDEO, LSMASH_4CC( 'U', 'L', 'H', '0' ) ); /* Ut Video YCbCr (BT.709) 4:2:0 8bit limited */
831 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_ULH2_VIDEO, LSMASH_4CC( 'U', 'L', 'H', '2' ) ); /* Ut Video YCbCr (BT.709) 4:2:2 8bit limited */
832 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_UQY2_VIDEO, LSMASH_4CC( 'U', 'Q', 'Y', '2' ) ); /* Ut Video Pro YCbCr 4:2:2 10bit */
833 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_V210_VIDEO, LSMASH_4CC( 'v', '2', '1', '0' ) ); /* Uncompressed Y'CbCr, 10-bit-per-component 4:2:2
834 * |Cb0(10)|Y'0(10)|Cr0(10)|XX(2)|
835 * |Y'1(10)|Cb1(10)|Y'2(10)|XX(2)|
836 * |Cr1(10)|Y'3(10)|Cb2(10)|XX(2)|
837 * |Y'4(10)|Cr2(10)|Y'5(10)|XX(2)| (X is a zero bit) */
838 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_V216_VIDEO, LSMASH_4CC( 'v', '2', '1', '6' ) ); /* Uncompressed Y'CbCr, 10, 12, 14, or 16-bit-per-component 4:2:2
839 * |Cb(16 LE)|Y'0(16 LE)|Cr(16 LE)|Y'1(16 LE)| */
840 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_V308_VIDEO, LSMASH_4CC( 'v', '3', '0', '8' ) ); /* Uncompressed Y'CbCr, 8-bit-per-component 4:4:4
841 * |Cr(8)|Y'(8)|Cb(8)| */
842 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_V408_VIDEO, LSMASH_4CC( 'v', '4', '0', '8' ) ); /* Uncompressed Y'CbCrA, 8-bit-per-component 4:4:4:4
843 * |Cb(8)|Y'(8)|Cr(8)|A(8)| */
844 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_V410_VIDEO, LSMASH_4CC( 'v', '4', '1', '0' ) ); /* Uncompressed Y'CbCr, 10-bit-per-component 4:4:4
845 * |XX(2)|Cb(10)|Y'(10)|Cr(10)| (X is a zero bit) */
846 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_YUV2_VIDEO, LSMASH_4CC( 'y', 'u', 'v', '2' ) ); /* Uncompressed Y'CbCr, 8-bit-per-component 4:2:2
847 * |Y'0(8)|Cb(8)|Y'1(8)|Cr(8)| */
849 /* Text CODEC identifiers */
850 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_ENCT_TEXT, LSMASH_4CC( 'e', 'n', 'c', 't' ) ); /* Encrypted Text */
851 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_STPP_TEXT, LSMASH_4CC( 's', 't', 'p', 'p' ) ); /* Sub-titles (Timed Text) */
852 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_TX3G_TEXT, LSMASH_4CC( 't', 'x', '3', 'g' ) ); /* 3GPP Timed Text stream */
854 DEFINE_QTFF_CODEC_TYPE( QT_CODEC_TYPE_TEXT_TEXT, LSMASH_4CC( 't', 'e', 'x', 't' ) ); /* QuickTime Text Media */
856 /* Hint CODEC identifiers */
857 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_FDP_HINT, LSMASH_4CC( 'f', 'd', 'p', ' ' ) ); /* File delivery hints */
858 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_M2TS_HINT, LSMASH_4CC( 'm', '2', 't', 's' ) ); /* MPEG-2 transport stream for DMB */
859 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_PM2T_HINT, LSMASH_4CC( 'p', 'm', '2', 't' ) ); /* Protected MPEG-2 Transport */
860 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_PRTP_HINT, LSMASH_4CC( 'p', 'r', 't', 'p' ) ); /* Protected RTP Reception */
861 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_RM2T_HINT, LSMASH_4CC( 'r', 'm', '2', 't' ) ); /* MPEG-2 Transport Reception */
862 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_RRTP_HINT, LSMASH_4CC( 'r', 'r', 't', 'p' ) ); /* RTP reception */
863 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_RSRP_HINT, LSMASH_4CC( 'r', 's', 'r', 'p' ) ); /* SRTP Reception */
864 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_RTP_HINT, LSMASH_4CC( 'r', 't', 'p', ' ' ) ); /* RTP Hints */
865 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SM2T_HINT, LSMASH_4CC( 's', 'm', '2', 't' ) ); /* MPEG-2 Transport Server */
866 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SRTP_HINT, LSMASH_4CC( 's', 'r', 't', 'p' ) ); /* SRTP Hints */
868 /* Metadata CODEC identifiers */
869 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_IXSE_META, LSMASH_4CC( 'i', 'x', 's', 'e' ) ); /* DVB Track Level Index Track */
870 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_METT_META, LSMASH_4CC( 'm', 'e', 't', 't' ) ); /* Text timed metadata */
871 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_METX_META, LSMASH_4CC( 'm', 'e', 't', 'x' ) ); /* XML timed metadata */
872 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MLIX_META, LSMASH_4CC( 'm', 'l', 'i', 'x' ) ); /* DVB Movie level index track */
873 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_OKSD_META, LSMASH_4CC( 'o', 'k', 's', 'd' ) ); /* OMA Keys */
874 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_SVCM_META, LSMASH_4CC( 's', 'v', 'c', 'M' ) ); /* SVC metadata */
875 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_TEXT_META, LSMASH_4CC( 't', 'e', 'x', 't' ) ); /* Textual meta-data with MIME type */
876 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_URIM_META, LSMASH_4CC( 'u', 'r', 'i', 'm' ) ); /* URI identified timed metadata */
877 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_XML_META, LSMASH_4CC( 'x', 'm', 'l', ' ' ) ); /* XML-formatted meta-data */
879 /* Other CODEC identifiers */
880 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_ENCS_SYSTEM, LSMASH_4CC( 'e', 'n', 'c', 's' ) ); /* Encrypted Systems stream */
881 DEFINE_ISOM_CODEC_TYPE( ISOM_CODEC_TYPE_MP4S_SYSTEM, LSMASH_4CC( 'm', 'p', '4', 's' ) ); /* MPEG-4 Systems */
883 DEFINE_QTFF_CODEC_TYPE( LSMASH_CODEC_TYPE_RAW, LSMASH_4CC( 'r', 'a', 'w', ' ' ) ); /* Either video or audio */
885 /* Check if the identifier of two CODECs is identical or not.
887 * Return 1 if the both CODEC identifiers are identical.
888 * Return 0 otherwise. */
889 int lsmash_check_codec_type_identical
891 lsmash_codec_type_t a,
892 lsmash_codec_type_t b
895 /****************************************************************************
896 * Summary of Stream Configuration
897 * This is L-SMASH's original structure.
898 ****************************************************************************/
899 typedef enum
901 LSMASH_SUMMARY_TYPE_UNKNOWN = 0,
902 LSMASH_SUMMARY_TYPE_VIDEO,
903 LSMASH_SUMMARY_TYPE_AUDIO,
904 } lsmash_summary_type;
906 typedef enum
908 LSMASH_CODEC_SPECIFIC_DATA_TYPE_UNSPECIFIED = -1, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_UNSPECIFIED */
910 LSMASH_CODEC_SPECIFIC_DATA_TYPE_UNKNOWN = 0, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_UNSTRUCTURED */
912 LSMASH_CODEC_SPECIFIC_DATA_TYPE_MP4SYS_DECODER_CONFIG,
914 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_H264,
915 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_HEVC,
916 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_VC_1,
917 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_AUDIO_AC_3,
918 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_AUDIO_EC_3,
919 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_AUDIO_DTS,
920 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_AUDIO_ALAC,
922 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_SAMPLE_SCALE,
923 LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_H264_BITRATE,
925 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_VIDEO_COMMON, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_STRUCTURED */
926 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_AUDIO_COMMON, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_STRUCTURED */
927 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_AUDIO_FORMAT_SPECIFIC_FLAGS, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_STRUCTURED */
928 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_AUDIO_DECOMPRESSION_PARAMETERS, /* must be LSMASH_CODEC_SPECIFIC_FORMAT_UNSTRUCTURED */
930 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_VIDEO_FIELD_INFO,
931 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_VIDEO_PIXEL_FORMAT,
932 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_VIDEO_SIGNIFICANT_BITS,
933 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_VIDEO_GAMMA_LEVEL,
934 LSMASH_CODEC_SPECIFIC_DATA_TYPE_QT_AUDIO_CHANNEL_LAYOUT,
936 LSMASH_CODEC_SPECIFIC_DATA_TYPE_CODEC_GLOBAL_HEADER,
937 } lsmash_codec_specific_data_type;
939 typedef enum
941 LSMASH_CODEC_SPECIFIC_FORMAT_UNSPECIFIED = -1,
942 LSMASH_CODEC_SPECIFIC_FORMAT_STRUCTURED = 0,
943 LSMASH_CODEC_SPECIFIC_FORMAT_UNSTRUCTURED = 1
944 } lsmash_codec_specific_format;
946 typedef union
948 void *always_null; /* LSMASH_CODEC_SPECIFIC_FORMAT_UNSPECIFIED */
949 void *structured; /* LSMASH_CODEC_SPECIFIC_FORMAT_STRUCTURED */
950 uint8_t *unstructured; /* LSMASH_CODEC_SPECIFIC_FORMAT_UNSTRUCTURED */
951 } lsmash_codec_specific_data_t;
953 typedef void (*lsmash_codec_specific_destructor_t)( void * );
954 typedef struct
956 lsmash_codec_specific_data_type type;
957 lsmash_codec_specific_format format;
958 lsmash_codec_specific_data_t data;
959 uint32_t size;
960 lsmash_codec_specific_destructor_t destruct;
961 } lsmash_codec_specific_t;
963 typedef struct lsmash_codec_specific_list_tag lsmash_codec_specific_list_t;
965 typedef enum
967 LSMASH_CODEC_SUPPORT_FLAG_NONE = 0,
968 LSMASH_CODEC_SUPPORT_FLAG_MUX = 1 << 0, /* It's expected that L-SMASH can mux CODEC stream properly.
969 * If not flagged, L-SMASH may recognize and/or handle CODEC specific info incorrectly when muxing. */
970 LSMASH_CODEC_SUPPORT_FLAG_DEMUX = 1 << 1, /* It's expected that L-SMASH can demux CODEC stream properly.
971 * If not flagged, L-SMASH may recognize and/or handle CODEC specific info incorrectly when demuxing. */
972 LSMASH_CODEC_SUPPORT_FLAG_REMUX = LSMASH_CODEC_SUPPORT_FLAG_MUX | LSMASH_CODEC_SUPPORT_FLAG_DEMUX,
973 } lsmash_codec_support_flag;
975 #define LSMASH_BASE_SUMMARY \
976 lsmash_summary_type summary_type; \
977 lsmash_codec_type_t sample_type; \
978 lsmash_codec_specific_list_t *opaque; \
979 uint32_t max_au_length; /* buffer length for 1 access unit, \
980 * typically max size of 1 audio/video frame */ \
981 uint32_t data_ref_index; /* the index of a data reference */
983 typedef struct
985 LSMASH_BASE_SUMMARY
986 } lsmash_summary_t;
988 /* Allocate a summary by 'summary_type'.
989 * The allocated summary can be deallocated by lsmash_cleanup_summary().
991 * Return the address of an allocated summary if successful.
992 * Return NULL otherwise. */
993 lsmash_summary_t *lsmash_create_summary
995 lsmash_summary_type summary_type /* a type of summary you want */
998 /* Deallocate a given summary. */
999 void lsmash_cleanup_summary
1001 lsmash_summary_t *summary /* the address of a summary you want to deallocate */
1004 /* Allocate and append a new sample description to a track by 'summary'.
1006 * Return the index of an allocated and appended sample description if successful.
1007 * Return 0 otherwise. */
1008 int lsmash_add_sample_entry
1010 lsmash_root_t *root, /* the address of the ROOT containing a track to which you want to append a new sample description */
1011 uint32_t track_ID, /* the track_ID of a track to which you want to append a new sample description */
1012 void *summary /* the summary of a sample description you want to append */
1015 /* Count the number of summaries in a track.
1017 * Return the number of summaries in a track if no error.
1018 * Return 0 otherwise. */
1019 uint32_t lsmash_count_summary
1021 lsmash_root_t *root, /* the address of the ROOT containing a track in which you want to count the number of summaries */
1022 uint32_t track_ID /* the track_ID of a track in which you want to count the number of summaries */
1025 /* Get the summary of a sample description you want in a track.
1026 * The summary returned by this function is allocated internally, and can be deallocate by lsmash_cleanup_summary().
1028 * Return the address of an allocated summary you want if successful.
1029 * Return NULL otherwise. */
1030 lsmash_summary_t *lsmash_get_summary
1032 lsmash_root_t *root, /* the address of the ROOT containing a track which contains a sample description you want */
1033 uint32_t track_ID, /* the track_ID of a track containing a sample description you want */
1034 uint32_t description_number /* the index of a sample description you want */
1037 /* Allocate and initialize a CODEC specific configuration by 'type' and 'format'.
1038 * The allocated CODEC specific configuration can be deallocated by lsmash_destroy_codec_specific_data().
1040 * Return the address of an allocated and initialized CODEC specific configuration if successful.
1041 * Return NULL otherwise. */
1042 lsmash_codec_specific_t *lsmash_create_codec_specific_data
1044 lsmash_codec_specific_data_type type,
1045 lsmash_codec_specific_format format
1048 /* Deallocate a CODEC specific configuration. */
1049 void lsmash_destroy_codec_specific_data
1051 lsmash_codec_specific_t *specific /* the address of a CODEC specific configuration you want to deallocate */
1054 /* Allocate a CODEC specific configuration which is a copy of 'specific', and append it to 'summary'.
1056 * Return 0 if successful.
1057 * Return a negative value otherwise. */
1058 int lsmash_add_codec_specific_data
1060 lsmash_summary_t *summary,
1061 lsmash_codec_specific_t *specific
1064 /* Count the number of CODEC specific configuration in a summary.
1066 * Return the number of CODEC specific configuration in a summary if successful.
1067 * Return 0 otherwise. */
1068 uint32_t lsmash_count_codec_specific_data
1070 lsmash_summary_t *summary /* the address of a summary in which you want to count the number of CODEC specific configuration */
1073 /* Get a CODEC specific configuration you want in a summary.
1075 * Return the address of a CODEC specific configuration if successful.
1076 * Return NULL otherwise. */
1077 lsmash_codec_specific_t *lsmash_get_codec_specific_data
1079 lsmash_summary_t *summary,
1080 uint32_t extension_number
1083 /* Convert a data format of CODEC specific configuration into another.
1084 * User can specify the same data format for the destination.
1085 * If so, a returned CODEC specific configuration is a copy of the source.
1087 * Return an allocated CODEC specific configuration by specified 'format' from 'specific' if successful.
1088 * Return NULL otherwise. */
1089 lsmash_codec_specific_t *lsmash_convert_codec_specific_format
1091 lsmash_codec_specific_t *specific, /* the address of a CODEC specific configuration as the source */
1092 lsmash_codec_specific_format format /* a data format of the destination */
1095 /* Compare two summaries.
1097 * Return 0 if the two summaries are identical.
1098 * Return 1 if the two summaries are different.
1099 * Return a negative value if there is any error. */
1100 int lsmash_compare_summary
1102 lsmash_summary_t *a,
1103 lsmash_summary_t *b
1106 /* Check status of CODEC support.
1108 * Return support flags of a given CODEC. */
1109 lsmash_codec_support_flag lsmash_check_codec_support
1111 lsmash_codec_type_t codec_type
1114 /****************************************************************************
1115 * Audio Description Layer
1116 ****************************************************************************/
1117 /* Audio Object Types */
1118 typedef enum
1120 MP4A_AUDIO_OBJECT_TYPE_NULL = 0,
1121 MP4A_AUDIO_OBJECT_TYPE_AAC_MAIN = 1, /* ISO/IEC 14496-3 subpart 4 */
1122 MP4A_AUDIO_OBJECT_TYPE_AAC_LC = 2, /* ISO/IEC 14496-3 subpart 4 */
1123 MP4A_AUDIO_OBJECT_TYPE_AAC_SSR = 3, /* ISO/IEC 14496-3 subpart 4 */
1124 MP4A_AUDIO_OBJECT_TYPE_AAC_LTP = 4, /* ISO/IEC 14496-3 subpart 4 */
1125 MP4A_AUDIO_OBJECT_TYPE_SBR = 5, /* ISO/IEC 14496-3 subpart 4 */
1126 MP4A_AUDIO_OBJECT_TYPE_AAC_scalable = 6, /* ISO/IEC 14496-3 subpart 4 */
1127 MP4A_AUDIO_OBJECT_TYPE_TwinVQ = 7, /* ISO/IEC 14496-3 subpart 4 */
1128 MP4A_AUDIO_OBJECT_TYPE_CELP = 8, /* ISO/IEC 14496-3 subpart 3 */
1129 MP4A_AUDIO_OBJECT_TYPE_HVXC = 9, /* ISO/IEC 14496-3 subpart 2 */
1130 MP4A_AUDIO_OBJECT_TYPE_TTSI = 12, /* ISO/IEC 14496-3 subpart 6 */
1131 MP4A_AUDIO_OBJECT_TYPE_Main_synthetic = 13, /* ISO/IEC 14496-3 subpart 5 */
1132 MP4A_AUDIO_OBJECT_TYPE_Wavetable_synthesis = 14, /* ISO/IEC 14496-3 subpart 5 */
1133 MP4A_AUDIO_OBJECT_TYPE_General_MIDI = 15, /* ISO/IEC 14496-3 subpart 5 */
1134 MP4A_AUDIO_OBJECT_TYPE_Algorithmic_Synthesis_Audio_FX = 16, /* ISO/IEC 14496-3 subpart 5 */
1135 MP4A_AUDIO_OBJECT_TYPE_ER_AAC_LC = 17, /* ISO/IEC 14496-3 subpart 4 */
1136 MP4A_AUDIO_OBJECT_TYPE_ER_AAC_LTP = 19, /* ISO/IEC 14496-3 subpart 4 */
1137 MP4A_AUDIO_OBJECT_TYPE_ER_AAC_scalable = 20, /* ISO/IEC 14496-3 subpart 4 */
1138 MP4A_AUDIO_OBJECT_TYPE_ER_Twin_VQ = 21, /* ISO/IEC 14496-3 subpart 4 */
1139 MP4A_AUDIO_OBJECT_TYPE_ER_BSAC = 22, /* ISO/IEC 14496-3 subpart 4 */
1140 MP4A_AUDIO_OBJECT_TYPE_ER_AAC_LD = 23, /* ISO/IEC 14496-3 subpart 4 */
1141 MP4A_AUDIO_OBJECT_TYPE_ER_CELP = 24, /* ISO/IEC 14496-3 subpart 3 */
1142 MP4A_AUDIO_OBJECT_TYPE_ER_HVXC = 25, /* ISO/IEC 14496-3 subpart 2 */
1143 MP4A_AUDIO_OBJECT_TYPE_ER_HILN = 26, /* ISO/IEC 14496-3 subpart 7 */
1144 MP4A_AUDIO_OBJECT_TYPE_ER_Parametric = 27, /* ISO/IEC 14496-3 subpart 2 and 7 */
1145 MP4A_AUDIO_OBJECT_TYPE_SSC = 28, /* ISO/IEC 14496-3 subpart 8 */
1146 MP4A_AUDIO_OBJECT_TYPE_PS = 29, /* ISO/IEC 14496-3 subpart 8 */
1147 MP4A_AUDIO_OBJECT_TYPE_MPEG_Surround = 30, /* ISO/IEC 23003-1 */
1148 MP4A_AUDIO_OBJECT_TYPE_ESCAPE = 31,
1149 MP4A_AUDIO_OBJECT_TYPE_Layer_1 = 32, /* ISO/IEC 14496-3 subpart 9 */
1150 MP4A_AUDIO_OBJECT_TYPE_Layer_2 = 33, /* ISO/IEC 14496-3 subpart 9 */
1151 MP4A_AUDIO_OBJECT_TYPE_Layer_3 = 34, /* ISO/IEC 14496-3 subpart 9 */
1152 MP4A_AUDIO_OBJECT_TYPE_DST = 35, /* ISO/IEC 14496-3 subpart 10 */
1153 MP4A_AUDIO_OBJECT_TYPE_ALS = 36, /* ISO/IEC 14496-3 subpart 11 */
1154 MP4A_AUDIO_OBJECT_TYPE_SLS = 37, /* ISO/IEC 14496-3 subpart 12 */
1155 MP4A_AUDIO_OBJECT_TYPE_SLS_non_core = 38, /* ISO/IEC 14496-3 subpart 12 */
1156 MP4A_AUDIO_OBJECT_TYPE_ER_AAC_ELD = 39, /* ISO/IEC 14496-3 subpart 4 */
1157 MP4A_AUDIO_OBJECT_TYPE_SMR_Simple = 40, /* ISO/IEC 14496-23 */
1158 MP4A_AUDIO_OBJECT_TYPE_SMR_Main = 41, /* ISO/IEC 14496-23 */
1159 MP4A_AUDIO_OBJECT_TYPE_SAOC = 43, /* ISO/IEC 23003-2 */
1160 } lsmash_mp4a_AudioObjectType;
1162 /* See ISO/IEC 14496-3 Signaling of SBR, SBR Signaling and Corresponding Decoder Behavior */
1163 typedef enum
1165 MP4A_AAC_SBR_NOT_SPECIFIED = 0x0, /* not mention to SBR presence. Implicit signaling. */
1166 MP4A_AAC_SBR_NONE, /* explicitly signals SBR does not present. Useless in general. */
1167 MP4A_AAC_SBR_BACKWARD_COMPATIBLE, /* explicitly signals SBR present. Recommended method to signal SBR. */
1168 MP4A_AAC_SBR_HIERARCHICAL /* SBR exists. SBR dedicated method. */
1169 } lsmash_mp4a_aac_sbr_mode;
1171 typedef struct
1173 LSMASH_BASE_SUMMARY
1174 lsmash_mp4a_AudioObjectType aot; /* detailed codec type
1175 * If neither ISOM_CODEC_TYPE_MP4A_AUDIO nor QT_CODEC_TYPE_MP4A_AUDIO, just ignored. */
1176 uint32_t frequency; /* the audio sampling rate (in Hz) at the default output playback
1177 * For some audio, this field is used as a nominal value.
1178 * For HE-AAC v1/SBR stream, this is base AAC's one.
1179 * For ISOM_CODEC_TYPE_AC_3_AUDIO and ISOM_CODEC_TYPE_EC_3_AUDIO, this shall be
1180 * equal to the sampling rate (in Hz) of the stream and the media timescale. */
1181 uint32_t channels; /* the number of audio channels at the default output playback
1182 * Even if the stream is HE-AAC v2/SBR+PS, this is base AAC's one. */
1183 uint32_t sample_size; /* For uncompressed audio,
1184 * the number of bits in each uncompressed sample for a single channel.
1185 * For some compressed audio, such as audio that uses MDCT,
1186 * N/A (not applicable), and may be set to 16. */
1187 uint32_t samples_in_frame; /* the number of decoded PCM samples in an audio frame at 'frequency'
1188 * Even if the stream is HE-AAC/aacPlus/SBR(+PS), this is base AAC's one, so 1024. */
1189 lsmash_mp4a_aac_sbr_mode sbr_mode; /* SBR treatment
1190 * Currently we always set this as mp4a_AAC_SBR_NOT_SPECIFIED (Implicit signaling).
1191 * User can set this for treatment in other way. */
1192 uint32_t bytes_per_frame; /* the number of bytes per audio frame
1193 * If variable, shall be set to 0. */
1194 } lsmash_audio_summary_t;
1196 /* Facilitate to make exdata (typically DecoderSpecificInfo or AudioSpecificConfig). */
1197 int lsmash_setup_AudioSpecificConfig
1199 lsmash_audio_summary_t* summary
1202 /****************************************************************************
1203 * Video Description Layer
1204 ****************************************************************************/
1205 /* Clean Aperture */
1206 typedef struct
1208 lsmash_rational_u32_t width;
1209 lsmash_rational_u32_t height;
1210 lsmash_rational_s32_t horizontal_offset;
1211 lsmash_rational_s32_t vertical_offset;
1212 } lsmash_clap_t;
1214 typedef struct
1216 lsmash_rational_u32_t top;
1217 lsmash_rational_u32_t left;
1218 lsmash_rational_u32_t bottom;
1219 lsmash_rational_u32_t right;
1220 } lsmash_crop_t;
1222 /* Video depth */
1223 typedef enum
1225 ISOM_DEPTH_TEMPLATE = 0x0018,
1227 /* H.264/AVC */
1228 AVC_DEPTH_COLOR_WITH_NO_ALPHA = 0x0018, /* color with no alpha */
1229 AVC_DEPTH_GRAYSCALE_WITH_NO_ALPHA = 0x0028, /* grayscale with no alpha */
1230 AVC_DEPTH_WITH_ALPHA = 0x0020, /* gray or color with alpha */
1232 /* QuickTime Video
1233 * (1-32) or (33-40 grayscale) */
1234 QT_VIDEO_DEPTH_COLOR_1 = 0x0001,
1235 QT_VIDEO_DEPTH_COLOR_2 = 0x0002,
1236 QT_VIDEO_DEPTH_COLOR_4 = 0x0004,
1237 QT_VIDEO_DEPTH_COLOR_8 = 0x0008,
1238 QT_VIDEO_DEPTH_COLOR_16 = 0x0010,
1239 QT_VIDEO_DEPTH_COLOR_24 = 0x0018,
1240 QT_VIDEO_DEPTH_COLOR_32 = 0x0020,
1241 QT_VIDEO_DEPTH_GRAYSCALE_1 = 0x0021,
1242 QT_VIDEO_DEPTH_GRAYSCALE_2 = 0x0022,
1243 QT_VIDEO_DEPTH_GRAYSCALE_4 = 0x0024,
1244 QT_VIDEO_DEPTH_GRAYSCALE_8 = 0x0028,
1246 /* QuickTime Uncompressed RGB */
1247 QT_VIDEO_DEPTH_555RGB = 0x0010,
1248 QT_VIDEO_DEPTH_24RGB = 0x0018,
1249 QT_VIDEO_DEPTH_32ARGB = 0x0020,
1250 } lsmash_video_depth;
1252 /* Index for the chromaticity coordinates of the color primaries */
1253 enum
1255 /* for ISO Base Media file format */
1256 ISOM_PRIMARIES_INDEX_ITU_R709_5 = 1, /* ITU-R BT.709-2/5, ITU-R BT.1361,
1257 * SMPTE 274M-1995, SMPTE 296M-1997,
1258 * IEC 61966-2-1 (sRGB or sYCC), IEC 61966-2-4 (xvYCC),
1259 * SMPTE RP 177M-1993 Annex B
1260 * green x = 0.300 y = 0.600
1261 * blue x = 0.150 y = 0.060
1262 * red x = 0.640 y = 0.330
1263 * white x = 0.3127 y = 0.3290 (CIE III. D65) */
1264 ISOM_PRIMARIES_INDEX_UNSPECIFIED = 2, /* Unspecified */
1265 ISOM_PRIMARIES_INDEX_ITU_R470M = 4, /* ITU-R BT.470-6 System M
1266 * green x = 0.21 y = 0.71
1267 * blue x = 0.14 y = 0.08
1268 * red x = 0.67 y = 0.33
1269 * white x = 0.310 y = 0.316 */
1270 ISOM_PRIMARIES_INDEX_ITU_R470BG = 5, /* EBU Tech. 3213 (1981), ITU-R BT.470-6 System B, G,
1271 * ITU-R BT.601-6 625, ITU-R BT.1358 625,
1272 * ITU-R BT.1700 625 PAL and 625 SECAM
1273 * green x = 0.29 y = 0.60
1274 * blue x = 0.15 y = 0.06
1275 * red x = 0.64 y = 0.33
1276 * white x = 0.3127 y = 0.3290 (CIE III. D65) */
1277 ISOM_PRIMARIES_INDEX_SMPTE_170M_2004 = 6, /* SMPTE C Primaries from SMPTE RP 145-1993, SMPTE 170M-2004,
1278 * ITU-R BT.601-6 525, ITU-R BT.1358 525,
1279 * ITU-R BT.1700 NTSC, SMPTE 170M-2004
1280 * green x = 0.310 y = 0.595
1281 * blue x = 0.155 y = 0.070
1282 * red x = 0.630 y = 0.340
1283 * white x = 0.3127 y = 0.3290 (CIE III. D65) */
1284 ISOM_PRIMARIES_INDEX_SMPTE_240M_1999 = 7, /* SMPTE 240M-1999
1285 * functionally the same as the value ISOM_PRIMARIES_INDEX_SMPTE_170M_2004 */
1287 /* for QuickTime file format */
1288 QT_PRIMARIES_INDEX_ITU_R709_2 = 1, /* the same as the value ISOM_PRIMARIES_INDEX_ITU_R709_5 */
1289 QT_PRIMARIES_INDEX_UNSPECIFIED = 2, /* Unspecified */
1290 QT_PRIMARIES_INDEX_EBU_3213 = 5, /* the same as the value ISOM_PRIMARIES_INDEX_ITU_R470BG */
1291 QT_PRIMARIES_INDEX_SMPTE_C = 6, /* the same as the value ISOM_PRIMARIES_INDEX_SMPTE_170M_2004 */
1294 /* Index for the opto-electronic transfer characteristic of the image color components */
1295 enum
1297 /* for ISO Base Media file format */
1298 ISOM_TRANSFER_INDEX_ITU_R709_5 = 1, /* ITU-R BT.709-2/5, ITU-R BT.1361
1299 * SMPTE 274M-1995, SMPTE 296M-1997,
1300 * SMPTE 293M-1996, SMPTE 170M-1994
1301 * vV = 1.099 * vLc^0.45 - 0.099 for 1 >= vLc >= 0.018
1302 * vV = 4.500 * vLc for 0.018 > vLc >= 0 */
1303 ISOM_TRANSFER_INDEX_UNSPECIFIED = 2, /* Unspecified */
1304 ISOM_TRANSFER_INDEX_ITU_R470M = 4, /* ITU-R BT.470-6 System M, ITU-R BT.1700 625 PAL and 625 SECAM
1305 * Assumed display gamma 2.2 */
1306 ISOM_TRANSFER_INDEX_ITU_R470BG = 5, /* ITU-R BT.470-6 System B, G
1307 * Assumed display gamma 2.8 */
1308 ISOM_TRANSFER_INDEX_SMPTE_170M_2004 = 6, /* ITU-R BT.601-6 525 or 625, ITU-R BT.1358 525 or 625,
1309 * ITU-R BT.1700 NTSC, SMPTE 170M-2004
1310 * functionally the same as the value ISOM_TRANSFER_INDEX_ITU_R709_5
1311 * vV = 1.099 * vLc^0.45 - 0.099 for 1 >= vLc >= 0.018
1312 * vV = 4.500 * vLc for 0.018 > vLc >= 0 */
1313 ISOM_TRANSFER_INDEX_SMPTE_240M_1999 = 7, /* SMPTE 240M-1995/1999, interim color implementation of SMPTE 274M-1995
1314 * vV = 1.1115 * vLc^0.45 - 0.1115 for 1 >= vLc >= 0.0228
1315 * vV = 4.0 * vLc for 0.0228 > vLc >= 0 */
1316 ISOM_TRANSFER_INDEX_LINEAR = 8, /* Linear transfer characteristics */
1317 ISOM_TRANSFER_INDEX_XVYCC = 11, /* IEC 61966-2-4 (xvYCC)
1318 * vV = 1.099 * vLc^0.45 - 0.099 for vLc >= 0.018
1319 * vV = 4.500 * vLc for 0.018 > vLc > -0.018
1320 * vV = -1.099 * (-vLc)^0.45 + 0.099 for -0.018 >= vLc */
1321 ISOM_TRANSFER_INDEX_ITU_R1361 = 12, /* ITU-R BT.1361
1322 * vV = 1.099 * vLc^0.45 - 0.099 for 1.33 > vLc >= 0.018
1323 * vV = 4.500 * vLc for 0.018 > vLc >= -0.0045
1324 * vV = -(1.099 * (-4 * vLc)^0.45 + 0.099) / 4 for -0.0045 > vLc >= -0.25 */
1325 ISOM_TRANSFER_INDEX_SRGB = 13, /* IEC 61966-2-1 (sRGB or sYCC)
1326 * vV = 1.055 * vLc^(1/2.4) - 0.055 for 1 > vLc >= 0.0031308
1327 * vV = 12.92 * vLc for 0.0031308 > vLc >= 0 */
1329 /* for QuickTime file format */
1330 QT_TRANSFER_INDEX_ITU_R709_2 = 1, /* the same as the value ISOM_TRANSFER_INDEX_ITU_R709_5 */
1331 QT_TRANSFER_INDEX_UNSPECIFIED = 2, /* Unspecified */
1332 QT_TRANSFER_INDEX_SMPTE_240M_1995 = 7, /* the same as the value ISOM_TRANSFER_INDEX_SMPTE_240M_1999 */
1335 /* Index for the matrix coefficients associated with derivation of luma and chroma signals from the green, blue, and red primaries */
1336 enum
1338 /* for ISO Base Media file format */
1339 ISOM_MATRIX_INDEX_NO_MATRIX = 0, /* No matrix transformation
1340 * IEC 61966-2-1 (sRGB) */
1341 ISOM_MATRIX_INDEX_ITU_R_709_5 = 1, /* ITU-R BT.709-2/5, ITU-R BT.1361,
1342 * SMPTE 274M-1995, SMPTE 296M-1997
1343 * IEC 61966-2-1 (sYCC), IEC 61966-2-4 xvYCC_709,
1344 * SMPTE RP 177M-1993 Annex B
1345 * vKr = 0.2126; vKb = 0.0722 */
1346 ISOM_MATRIX_INDEX_UNSPECIFIED = 2, /* Unspecified */
1347 ISOM_MATRIX_INDEX_USFCCT_47_CFR = 4, /* United States Federal Communications Commission Title 47 Code of Federal Regulations
1348 * vKr = 0.30; vKb = 0.11 */
1349 ISOM_MATRIX_INDEX_ITU_R470BG = 5, /* ITU-R BT.470-6 System B, G,
1350 * ITU-R BT.601-4/6 625, ITU-R BT.1358 625,
1351 * ITU-R BT.1700 625 PAL and 625 SECAM, IEC 61966-2-4 xvYCC601
1352 * vKr = 0.299; vKb = 0.114 */
1353 ISOM_MATRIX_INDEX_SMPTE_170M_2004 = 6, /* ITU-R BT.601-4/6 525, ITU-R BT.1358 525,
1354 * ITU-R BT.1700 NTSC,
1355 * SMPTE 170M-1994, SMPTE 293M-1996
1356 * functionally the same as the value ISOM_MATRIX_INDEX_ITU_R470BG
1357 * vKr = 0.299; vKb = 0.114 */
1358 ISOM_MATRIX_INDEX_SMPTE_240M_1999 = 7, /* SMPTE 240M-1995, interim color implementation of SMPTE 274M-1995
1359 * vKr = 0.212; vKb = 0.087 */
1360 ISOM_MATRIX_INDEX_YCGCO = 8, /* YCoCg */
1362 /* for QuickTime file format */
1363 QT_MATRIX_INDEX_ITU_R_709_2 = 1, /* the same as the value ISOM_MATRIX_INDEX_ITU_R_709_5 */
1364 QT_MATRIX_INDEX_UNSPECIFIED = 2, /* Unspecified */
1365 QT_MATRIX_INDEX_ITU_R_601_4 = 6, /* the same as the value ISOM_MATRIX_INDEX_SMPTE_170M_2004 */
1366 QT_MATRIX_INDEX_SMPTE_240M_1995 = 7 /* the same as the value ISOM_MATRIX_INDEX_SMPTE_240M_1999 */
1369 typedef struct
1371 LSMASH_BASE_SUMMARY
1372 // lsmash_mp4v_VideoObjectType vot; /* Detailed codec type. If not mp4v, just ignored. */
1373 uint32_t timescale; /* media timescale
1374 * User can't set this parameter manually. */
1375 uint32_t timebase; /* increment unit of timestamp
1376 * User can't set this parameter manually. */
1377 uint8_t vfr; /* whether a stream is assumed as variable frame rate
1378 * User can't set this parameter manually. */
1379 uint8_t sample_per_field; /* whether a stream may have a sample per field
1380 * User can't set this parameter manually. */
1381 uint32_t width; /* pixel counts of width samples have */
1382 uint32_t height; /* pixel counts of height samples have */
1383 char compressorname[33]; /* a 32-byte Pascal string containing the name of the compressor that created the image */
1384 lsmash_video_depth depth; /* data size of a pixel */
1385 lsmash_clap_t clap; /* clean aperture */
1386 uint32_t par_h; /* horizontal factor of pixel aspect ratio */
1387 uint32_t par_v; /* vertical factor of pixel aspect ratio */
1388 struct
1390 /* To omit to write these field, set zero value to all them. */
1391 uint16_t primaries_index; /* the chromaticity coordinates of the color primaries */
1392 uint16_t transfer_index; /* the opto-electronic transfer characteristic of the image color components */
1393 uint16_t matrix_index; /* the matrix coefficients associated with derivation of luma and chroma signals from the green, blue, and red primaries */
1394 uint8_t full_range;
1395 } color;
1396 } lsmash_video_summary_t;
1398 int lsmash_convert_crop_into_clap
1400 lsmash_crop_t crop,
1401 uint32_t width,
1402 uint32_t height,
1403 lsmash_clap_t *clap
1406 int lsmash_convert_clap_into_crop
1408 lsmash_clap_t clap,
1409 uint32_t width,
1410 uint32_t height,
1411 lsmash_crop_t *crop
1414 /****************************************************************************
1415 * Media Sample
1416 ****************************************************************************/
1417 typedef enum
1419 /* allow_ealier */
1420 QT_SAMPLE_EARLIER_PTS_ALLOWED = 1,
1421 /* leading */
1422 ISOM_SAMPLE_LEADING_UNKNOWN = 0,
1423 ISOM_SAMPLE_IS_UNDECODABLE_LEADING = 1,
1424 ISOM_SAMPLE_IS_NOT_LEADING = 2,
1425 ISOM_SAMPLE_IS_DECODABLE_LEADING = 3,
1426 /* independent */
1427 ISOM_SAMPLE_INDEPENDENCY_UNKNOWN = 0,
1428 ISOM_SAMPLE_IS_NOT_INDEPENDENT = 1,
1429 ISOM_SAMPLE_IS_INDEPENDENT = 2,
1430 /* disposable */
1431 ISOM_SAMPLE_DISPOSABLE_UNKNOWN = 0,
1432 ISOM_SAMPLE_IS_NOT_DISPOSABLE = 1,
1433 ISOM_SAMPLE_IS_DISPOSABLE = 2,
1434 /* redundant */
1435 ISOM_SAMPLE_REDUNDANCY_UNKNOWN = 0,
1436 ISOM_SAMPLE_HAS_REDUNDANCY = 1,
1437 ISOM_SAMPLE_HAS_NO_REDUNDANCY = 2,
1438 } lsmash_sample_dependency;
1440 typedef enum
1442 /* flags for ISO Base Media file format */
1443 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_NONE = 0,
1444 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_SYNC = 1 << 0, /* a sync sample */
1445 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP = 1 << 2, /* the first sample of a closed or an open GOP */
1446 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED = 1 << 3, /* a sample in a closed GOP
1447 * This flag shall be set together with ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP. */
1448 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_OPEN = 1 << 4, /* a sample in an open GOP
1449 * This flag shall be set together with ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP. */
1450 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR = 1 << 5, /* a sample on gradual decoder refresh or random access recovery */
1451 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR_START = 1 << 6, /* a sample that is the starting point of gradual decoder refresh or random access recovery
1452 * This flag shall be set together with ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR. */
1453 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR_END = 1 << 7, /* a sample that is the ending point of gradual decoder refresh or random access recovery
1454 * This flag shall be set together with ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR. */
1456 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED_RAP /* the first sample of a closed GOP */
1457 = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP
1458 | ISOM_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED,
1459 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_OPEN_RAP /* the first sample of an open GOP */
1460 = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP
1461 | ISOM_SAMPLE_RANDOM_ACCESS_FLAG_OPEN,
1462 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_POST_ROLL_START /* the post-roll starting point of random access recovery */
1463 = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR
1464 | ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR_START,
1465 ISOM_SAMPLE_RANDOM_ACCESS_FLAG_PRE_ROLL_END /* the pre-roll ending point of random access recovery */
1466 = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR
1467 | ISOM_SAMPLE_RANDOM_ACCESS_FLAG_GDR_END,
1469 /* flags for QuickTime file format */
1470 QT_SAMPLE_RANDOM_ACCESS_FLAG_NONE = 0, /* alias of ISOM_SAMPLE_RANDOM_ACCESS_FLAG_NONE */
1471 QT_SAMPLE_RANDOM_ACCESS_FLAG_SYNC = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_SYNC,
1472 QT_SAMPLE_RANDOM_ACCESS_FLAG_PARTIAL_SYNC = 1 << 1, /* partial sync sample
1473 * Partial sync sample is a sample
1474 * such that this sample and samples following in decoding order can be correctly decoded
1475 * using the first sample of the previous GOP and samples following in decoding order,
1476 * in addition, this sample and non-leading samples following in decoding order can be correctly decoded from this. */
1477 QT_SAMPLE_RANDOM_ACCESS_FLAG_RAP = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_RAP,
1478 QT_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED,
1479 QT_SAMPLE_RANDOM_ACCESS_FLAG_OPEN = ISOM_SAMPLE_RANDOM_ACCESS_FLAG_OPEN,
1481 QT_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED_RAP /* the first sample of a closed GOP */
1482 = QT_SAMPLE_RANDOM_ACCESS_FLAG_RAP
1483 | QT_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED,
1484 QT_SAMPLE_RANDOM_ACCESS_FLAG_OPEN_RAP /* the first sample of an open GOP */
1485 = QT_SAMPLE_RANDOM_ACCESS_FLAG_RAP
1486 | QT_SAMPLE_RANDOM_ACCESS_FLAG_OPEN,
1487 } lsmash_random_access_flag;
1489 #define LSMASH_FLAGS_SATISFIED( x, y ) (((x) & (y)) == (y))
1490 #define LSMASH_IS_CLOSED_RAP( x ) LSMASH_FLAGS_SATISFIED( (x), ISOM_SAMPLE_RANDOM_ACCESS_FLAG_CLOSED_RAP )
1491 #define LSMASH_IS_OPEN_RAP( x ) LSMASH_FLAGS_SATISFIED( (x), ISOM_SAMPLE_RANDOM_ACCESS_FLAG_OPEN_RAP )
1492 #define LSMASH_IS_POST_ROLL_START( x ) LSMASH_FLAGS_SATISFIED( (x), ISOM_SAMPLE_RANDOM_ACCESS_FLAG_POST_ROLL_START )
1493 #define LSMASH_IS_PRE_ROLL_END( x ) LSMASH_FLAGS_SATISFIED( (x), ISOM_SAMPLE_RANDOM_ACCESS_FLAG_PRE_ROLL_END )
1495 typedef struct
1497 uint32_t identifier; /* the identifier of sample
1498 * If this identifier equals a certain identifier of random access recovery point,
1499 * then this sample is the random access recovery point of the earliest unestablished post-roll group. */
1500 uint32_t complete; /* the identifier of future random access recovery point, which is necessary for the recovery from its starting point to be completed
1501 * For muxing, this value is used only if (ra_flags & ISOM_SAMPLE_RANDOM_ACCESS_TYPE_POST_ROLL_START) is true.
1502 * The following is an example of use for gradual decoder refresh of H.264/AVC.
1503 * For each sample, set 'frame_num' to the 'identifier'.
1504 * For samples with recovery point SEI message, add ISOM_SAMPLE_RANDOM_ACCESS_TYPE_POST_ROLL_START to ra_flags
1505 * and set '(frame_num + recovery_frame_cnt) % MaxFrameNum' to the 'complete'.
1506 * The above-mentioned values are set appropriately, then L-SMASH will establish appropriate post-roll grouping. */
1507 } lsmash_post_roll_t;
1509 typedef struct
1511 uint32_t distance; /* the distance from the previous random access point or pre-roll starting point
1512 * of the random access recovery point to this sample.
1513 * For muxing, this value is used only if ra_flags is not set to ISOM_SAMPLE_RANDOM_ACCESS_TYPE_NONE
1514 * and LSMASH_IS_POST_ROLL_START( ra_flags ) is false.
1515 * Some derived specifications forbid using pre-roll settings and use post-roll settings instead (e.g. AVC uses only post-roll).
1516 * The following is an example of pre-roll distance for representing audio decoder delay derived from composition.
1517 * Typical AAC encoding uses a transform over consecutive sets of 2048 audio samples,
1518 * applied every 1024 audio samples (MDCTs are overlapped).
1519 * For correct audio to be decoded, both transforms for any period of 1024 audio samples are needed.
1520 * For this AAC stream, therefore, 'distance' of each sample shall be set to 1 (one AAC access unit).
1521 * Note: the number of priming audio sample i.e. encoder delay shall be represented by 'start_time' in an edit. */
1522 } lsmash_pre_roll_t;
1524 typedef struct
1526 lsmash_random_access_flag ra_flags; /* random access flags */
1527 lsmash_post_roll_t post_roll;
1528 lsmash_pre_roll_t pre_roll;
1529 uint8_t allow_earlier; /* only for QuickTime file format */
1530 uint8_t leading;
1531 uint8_t independent;
1532 uint8_t disposable;
1533 uint8_t redundant;
1534 uint8_t reserved[3]; /* non-output
1535 * broken link
1536 * ??? */
1537 } lsmash_sample_property_t;
1539 typedef struct
1541 uint32_t length; /* size of sample data
1542 * Note: this is NOT always an allocated size. */
1543 uint8_t *data; /* sample data */
1544 uint64_t dts; /* Decoding TimeStamp in units of media timescale */
1545 uint64_t cts; /* Composition TimeStamp in units of media timescale */
1546 uint64_t pos; /* absolute file offset of sample data (read-only) */
1547 uint32_t index; /* index of sample description */
1548 lsmash_sample_property_t prop;
1549 } lsmash_sample_t;
1551 typedef struct
1553 uint64_t dts; /* Decoding TimeStamp in units of media timescale */
1554 uint64_t cts; /* Composition TimeStamp in units of media timescale */
1555 } lsmash_media_ts_t;
1557 typedef struct
1559 uint32_t sample_count;
1560 lsmash_media_ts_t *timestamp;
1561 } lsmash_media_ts_list_t;
1563 /* Allocate a sample and then allocate data of the allocated sample by 'size'.
1564 * If 'size' is set to 0, data of the allocated sample won't be allocated and will be set to NULL instead.
1565 * The allocated sample can be deallocated by lsmash_delete_sample().
1567 * Return the address of an allocated sample if successful.
1568 * Return NULL otherwise. */
1569 lsmash_sample_t *lsmash_create_sample
1571 uint32_t size /* size of sample data you request */
1574 /* Allocate data of a given allocated sample by 'size'.
1575 * If the sample data is already allocated, reallocate it by 'size'.
1577 * Return 0 if successful.
1578 * Return a negative value otherwise. */
1579 int lsmash_sample_alloc
1581 lsmash_sample_t *sample, /* the address of a sample you want to allocate its sample data */
1582 uint32_t size /* size of sample data you request */
1585 /* Deallocate a given sample. */
1586 void lsmash_delete_sample
1588 lsmash_sample_t *sample /* the address of a sample you want to deallocate */
1591 /* Append a sample to a track.
1592 * Note:
1593 * The appended sample will be deleted by lsmash_delete_sample() internally.
1594 * Users shall not deallocate the sample by lsmash_delete_sample() if successful to append the sample.
1596 * Return 0 if successful.
1597 * Return a negative value otherwise. */
1598 int lsmash_append_sample
1600 lsmash_root_t *root,
1601 uint32_t track_ID,
1602 lsmash_sample_t *sample
1605 /****************************************************************************
1606 * Media Layer
1607 ****************************************************************************/
1608 /* Media handler types */
1609 typedef enum
1611 ISOM_MEDIA_HANDLER_TYPE_3GPP_SCENE_DESCRIPTION = LSMASH_4CC( '3', 'g', 's', 'd' ),
1612 ISOM_MEDIA_HANDLER_TYPE_ID3_VERSION2_METADATA = LSMASH_4CC( 'I', 'D', '3', '2' ),
1613 ISOM_MEDIA_HANDLER_TYPE_AUXILIARY_VIDEO_TRACK = LSMASH_4CC( 'a', 'u', 'x', 'v' ),
1614 ISOM_MEDIA_HANDLER_TYPE_CPCM_AUXILIARY_METADATA = LSMASH_4CC( 'c', 'p', 'a', 'd' ),
1615 ISOM_MEDIA_HANDLER_TYPE_CLOCK_REFERENCE_STREAM = LSMASH_4CC( 'c', 'r', 's', 'm' ),
1616 ISOM_MEDIA_HANDLER_TYPE_DVB_MANDATORY_BASIC_DESCRIPTION = LSMASH_4CC( 'd', 'm', 'b', 'd' ),
1617 ISOM_MEDIA_HANDLER_TYPE_TV_ANYTIME = LSMASH_4CC( 'd', 't', 'v', 'a' ),
1618 ISOM_MEDIA_HANDLER_TYPE_BROADBAND_CONTENT_GUIDE = LSMASH_4CC( 'd', 't', 'v', 'a' ),
1619 ISOM_MEDIA_HANDLER_TYPE_FONT_DATA_STREAM = LSMASH_4CC( 'f', 'd', 's', 'm' ),
1620 ISOM_MEDIA_HANDLER_TYPE_GENERAL_MPEG4_SYSTEM_STREAM = LSMASH_4CC( 'g', 'e', 's', 'm' ),
1621 ISOM_MEDIA_HANDLER_TYPE_HINT_TRACK = LSMASH_4CC( 'h', 'i', 'n', 't' ),
1622 ISOM_MEDIA_HANDLER_TYPE_IPDC_ELECTRONIC_SERVICE_GUIDE = LSMASH_4CC( 'i', 'p', 'd', 'c' ),
1623 ISOM_MEDIA_HANDLER_TYPE_IPMP_STREAM = LSMASH_4CC( 'i', 'p', 's', 'm' ),
1624 ISOM_MEDIA_HANDLER_TYPE_MPEG7_STREAM = LSMASH_4CC( 'm', '7', 's', 'm' ),
1625 ISOM_MEDIA_HANDLER_TYPE_TIMED_METADATA_TRACK = LSMASH_4CC( 'm', 'e', 't', 'a' ),
1626 ISOM_MEDIA_HANDLER_TYPE_MPEGJ_STREAM = LSMASH_4CC( 'm', 'j', 's', 'm' ),
1627 ISOM_MEDIA_HANDLER_TYPE_MPEG21_DIGITAL_ITEM = LSMASH_4CC( 'm', 'p', '2', '1' ),
1628 ISOM_MEDIA_HANDLER_TYPE_OBJECT_CONTENT_INFO_STREAM = LSMASH_4CC( 'o', 'c', 's', 'm' ),
1629 ISOM_MEDIA_HANDLER_TYPE_OBJECT_DESCRIPTOR_STREAM = LSMASH_4CC( 'o', 'd', 's', 'm' ),
1630 ISOM_MEDIA_HANDLER_TYPE_SCENE_DESCRIPTION_STREAM = LSMASH_4CC( 's', 'd', 's', 'm' ),
1631 ISOM_MEDIA_HANDLER_TYPE_KEY_MANAGEMENT_MESSAGES = LSMASH_4CC( 's', 'k', 'm', 'm' ),
1632 ISOM_MEDIA_HANDLER_TYPE_AUDIO_TRACK = LSMASH_4CC( 's', 'o', 'u', 'n' ),
1633 ISOM_MEDIA_HANDLER_TYPE_TEXT_TRACK = LSMASH_4CC( 't', 'e', 'x', 't' ),
1634 ISOM_MEDIA_HANDLER_TYPE_PROPRIETARY_DESCRIPTIVE_METADATA = LSMASH_4CC( 'u', 'r', 'i', ' ' ),
1635 ISOM_MEDIA_HANDLER_TYPE_VIDEO_TRACK = LSMASH_4CC( 'v', 'i', 'd', 'e' ),
1636 } lsmash_media_type;
1638 /* ISO language codes */
1639 typedef enum
1641 #define LSMASH_PACK_ISO_LANGUAGE( a, b, c ) ((((a-0x60)&0x1f)<<10) | (((b-0x60)&0x1f)<<5) | ((c-0x60)&0x1f))
1642 ISOM_LANGUAGE_CODE_ENGLISH = LSMASH_PACK_ISO_LANGUAGE( 'e', 'n', 'g' ),
1643 ISOM_LANGUAGE_CODE_FRENCH = LSMASH_PACK_ISO_LANGUAGE( 'f', 'r', 'a' ),
1644 ISOM_LANGUAGE_CODE_GERMAN = LSMASH_PACK_ISO_LANGUAGE( 'd', 'e', 'u' ),
1645 ISOM_LANGUAGE_CODE_ITALIAN = LSMASH_PACK_ISO_LANGUAGE( 'i', 't', 'a' ),
1646 ISOM_LANGUAGE_CODE_DUTCH_M = LSMASH_PACK_ISO_LANGUAGE( 'd', 'u', 'm' ),
1647 ISOM_LANGUAGE_CODE_SWEDISH = LSMASH_PACK_ISO_LANGUAGE( 's', 'w', 'e' ),
1648 ISOM_LANGUAGE_CODE_SPANISH = LSMASH_PACK_ISO_LANGUAGE( 's', 'p', 'a' ),
1649 ISOM_LANGUAGE_CODE_DANISH = LSMASH_PACK_ISO_LANGUAGE( 'd', 'a', 'n' ),
1650 ISOM_LANGUAGE_CODE_PORTUGUESE = LSMASH_PACK_ISO_LANGUAGE( 'p', 'o', 'r' ),
1651 ISOM_LANGUAGE_CODE_NORWEGIAN = LSMASH_PACK_ISO_LANGUAGE( 'n', 'o', 'r' ),
1652 ISOM_LANGUAGE_CODE_HEBREW = LSMASH_PACK_ISO_LANGUAGE( 'h', 'e', 'b' ),
1653 ISOM_LANGUAGE_CODE_JAPANESE = LSMASH_PACK_ISO_LANGUAGE( 'j', 'p', 'n' ),
1654 ISOM_LANGUAGE_CODE_ARABIC = LSMASH_PACK_ISO_LANGUAGE( 'a', 'r', 'a' ),
1655 ISOM_LANGUAGE_CODE_FINNISH = LSMASH_PACK_ISO_LANGUAGE( 'f', 'i', 'n' ),
1656 ISOM_LANGUAGE_CODE_GREEK = LSMASH_PACK_ISO_LANGUAGE( 'e', 'l', 'l' ),
1657 ISOM_LANGUAGE_CODE_ICELANDIC = LSMASH_PACK_ISO_LANGUAGE( 'i', 's', 'l' ),
1658 ISOM_LANGUAGE_CODE_MALTESE = LSMASH_PACK_ISO_LANGUAGE( 'm', 'l', 't' ),
1659 ISOM_LANGUAGE_CODE_TURKISH = LSMASH_PACK_ISO_LANGUAGE( 't', 'u', 'r' ),
1660 ISOM_LANGUAGE_CODE_CROATIAN = LSMASH_PACK_ISO_LANGUAGE( 'h', 'r', 'v' ),
1661 ISOM_LANGUAGE_CODE_CHINESE = LSMASH_PACK_ISO_LANGUAGE( 'z', 'h', 'o' ),
1662 ISOM_LANGUAGE_CODE_URDU = LSMASH_PACK_ISO_LANGUAGE( 'u', 'r', 'd' ),
1663 ISOM_LANGUAGE_CODE_HINDI = LSMASH_PACK_ISO_LANGUAGE( 'h', 'i', 'n' ),
1664 ISOM_LANGUAGE_CODE_THAI = LSMASH_PACK_ISO_LANGUAGE( 't', 'h', 'a' ),
1665 ISOM_LANGUAGE_CODE_KOREAN = LSMASH_PACK_ISO_LANGUAGE( 'k', 'o', 'r' ),
1666 ISOM_LANGUAGE_CODE_LITHUANIAN = LSMASH_PACK_ISO_LANGUAGE( 'l', 'i', 't' ),
1667 ISOM_LANGUAGE_CODE_POLISH = LSMASH_PACK_ISO_LANGUAGE( 'p', 'o', 'l' ),
1668 ISOM_LANGUAGE_CODE_HUNGARIAN = LSMASH_PACK_ISO_LANGUAGE( 'h', 'u', 'n' ),
1669 ISOM_LANGUAGE_CODE_ESTONIAN = LSMASH_PACK_ISO_LANGUAGE( 'e', 's', 't' ),
1670 ISOM_LANGUAGE_CODE_LATVIAN = LSMASH_PACK_ISO_LANGUAGE( 'l', 'a', 'v' ),
1671 ISOM_LANGUAGE_CODE_SAMI = LSMASH_PACK_ISO_LANGUAGE( 's', 'm', 'i' ),
1672 ISOM_LANGUAGE_CODE_FAROESE = LSMASH_PACK_ISO_LANGUAGE( 'f', 'a', 'o' ),
1673 ISOM_LANGUAGE_CODE_RUSSIAN = LSMASH_PACK_ISO_LANGUAGE( 'r', 'u', 's' ),
1674 ISOM_LANGUAGE_CODE_DUTCH = LSMASH_PACK_ISO_LANGUAGE( 'n', 'l', 'd' ),
1675 ISOM_LANGUAGE_CODE_IRISH = LSMASH_PACK_ISO_LANGUAGE( 'g', 'l', 'e' ),
1676 ISOM_LANGUAGE_CODE_ALBANIAN = LSMASH_PACK_ISO_LANGUAGE( 's', 'q', 'i' ),
1677 ISOM_LANGUAGE_CODE_ROMANIAN = LSMASH_PACK_ISO_LANGUAGE( 'r', 'o', 'n' ),
1678 ISOM_LANGUAGE_CODE_CZECH = LSMASH_PACK_ISO_LANGUAGE( 'c', 'e', 's' ),
1679 ISOM_LANGUAGE_CODE_SLOVAK = LSMASH_PACK_ISO_LANGUAGE( 's', 'l', 'k' ),
1680 ISOM_LANGUAGE_CODE_SLOVENIA = LSMASH_PACK_ISO_LANGUAGE( 's', 'l', 'v' ),
1681 ISOM_LANGUAGE_CODE_YIDDISH = LSMASH_PACK_ISO_LANGUAGE( 'y', 'i', 'd' ),
1682 ISOM_LANGUAGE_CODE_SERBIAN = LSMASH_PACK_ISO_LANGUAGE( 's', 'r', 'p' ),
1683 ISOM_LANGUAGE_CODE_MACEDONIAN = LSMASH_PACK_ISO_LANGUAGE( 'm', 'k', 'd' ),
1684 ISOM_LANGUAGE_CODE_BULGARIAN = LSMASH_PACK_ISO_LANGUAGE( 'b', 'u', 'l' ),
1685 ISOM_LANGUAGE_CODE_UKRAINIAN = LSMASH_PACK_ISO_LANGUAGE( 'u', 'k', 'r' ),
1686 ISOM_LANGUAGE_CODE_BELARUSIAN = LSMASH_PACK_ISO_LANGUAGE( 'b', 'e', 'l' ),
1687 ISOM_LANGUAGE_CODE_UZBEK = LSMASH_PACK_ISO_LANGUAGE( 'u', 'z', 'b' ),
1688 ISOM_LANGUAGE_CODE_KAZAKH = LSMASH_PACK_ISO_LANGUAGE( 'k', 'a', 'z' ),
1689 ISOM_LANGUAGE_CODE_AZERBAIJANI = LSMASH_PACK_ISO_LANGUAGE( 'a', 'z', 'e' ),
1690 ISOM_LANGUAGE_CODE_ARMENIAN = LSMASH_PACK_ISO_LANGUAGE( 'h', 'y', 'e' ),
1691 ISOM_LANGUAGE_CODE_GEORGIAN = LSMASH_PACK_ISO_LANGUAGE( 'k', 'a', 't' ),
1692 ISOM_LANGUAGE_CODE_MOLDAVIAN = LSMASH_PACK_ISO_LANGUAGE( 'r', 'o', 'n' ),
1693 ISOM_LANGUAGE_CODE_KIRGHIZ = LSMASH_PACK_ISO_LANGUAGE( 'k', 'i', 'r' ),
1694 ISOM_LANGUAGE_CODE_TAJIK = LSMASH_PACK_ISO_LANGUAGE( 't', 'g', 'k' ),
1695 ISOM_LANGUAGE_CODE_TURKMEN = LSMASH_PACK_ISO_LANGUAGE( 't', 'u', 'k' ),
1696 ISOM_LANGUAGE_CODE_MONGOLIAN = LSMASH_PACK_ISO_LANGUAGE( 'm', 'o', 'n' ),
1697 ISOM_LANGUAGE_CODE_PASHTO = LSMASH_PACK_ISO_LANGUAGE( 'p', 'u', 's' ),
1698 ISOM_LANGUAGE_CODE_KURDISH = LSMASH_PACK_ISO_LANGUAGE( 'k', 'u', 'r' ),
1699 ISOM_LANGUAGE_CODE_KASHMIRI = LSMASH_PACK_ISO_LANGUAGE( 'k', 'a', 's' ),
1700 ISOM_LANGUAGE_CODE_SINDHI = LSMASH_PACK_ISO_LANGUAGE( 's', 'n', 'd' ),
1701 ISOM_LANGUAGE_CODE_TIBETAN = LSMASH_PACK_ISO_LANGUAGE( 'b', 'o', 'd' ),
1702 ISOM_LANGUAGE_CODE_NEPALI = LSMASH_PACK_ISO_LANGUAGE( 'n', 'e', 'p' ),
1703 ISOM_LANGUAGE_CODE_SANSKRIT = LSMASH_PACK_ISO_LANGUAGE( 's', 'a', 'n' ),
1704 ISOM_LANGUAGE_CODE_MARATHI = LSMASH_PACK_ISO_LANGUAGE( 'm', 'a', 'r' ),
1705 ISOM_LANGUAGE_CODE_BENGALI = LSMASH_PACK_ISO_LANGUAGE( 'b', 'e', 'n' ),
1706 ISOM_LANGUAGE_CODE_ASSAMESE = LSMASH_PACK_ISO_LANGUAGE( 'a', 's', 'm' ),
1707 ISOM_LANGUAGE_CODE_GUJARATI = LSMASH_PACK_ISO_LANGUAGE( 'g', 'u', 'j' ),
1708 ISOM_LANGUAGE_CODE_PUNJABI = LSMASH_PACK_ISO_LANGUAGE( 'p', 'a', 'n' ),
1709 ISOM_LANGUAGE_CODE_ORIYA = LSMASH_PACK_ISO_LANGUAGE( 'o', 'r', 'i' ),
1710 ISOM_LANGUAGE_CODE_MALAYALAM = LSMASH_PACK_ISO_LANGUAGE( 'm', 'a', 'l' ),
1711 ISOM_LANGUAGE_CODE_KANNADA = LSMASH_PACK_ISO_LANGUAGE( 'k', 'a', 'n' ),
1712 ISOM_LANGUAGE_CODE_TAMIL = LSMASH_PACK_ISO_LANGUAGE( 't', 'a', 'm' ),
1713 ISOM_LANGUAGE_CODE_TELUGU = LSMASH_PACK_ISO_LANGUAGE( 't', 'e', 'l' ),
1714 ISOM_LANGUAGE_CODE_SINHALESE = LSMASH_PACK_ISO_LANGUAGE( 's', 'i', 'n' ),
1715 ISOM_LANGUAGE_CODE_BURMESE = LSMASH_PACK_ISO_LANGUAGE( 'm', 'y', 'a' ),
1716 ISOM_LANGUAGE_CODE_KHMER = LSMASH_PACK_ISO_LANGUAGE( 'k', 'h', 'm' ),
1717 ISOM_LANGUAGE_CODE_LAO = LSMASH_PACK_ISO_LANGUAGE( 'l', 'a', 'o' ),
1718 ISOM_LANGUAGE_CODE_VIETNAMESE = LSMASH_PACK_ISO_LANGUAGE( 'v', 'i', 'e' ),
1719 ISOM_LANGUAGE_CODE_INDONESIAN = LSMASH_PACK_ISO_LANGUAGE( 'i', 'n', 'd' ),
1720 ISOM_LANGUAGE_CODE_TAGALOG = LSMASH_PACK_ISO_LANGUAGE( 't', 'g', 'l' ),
1721 ISOM_LANGUAGE_CODE_MALAY_ROMAN = LSMASH_PACK_ISO_LANGUAGE( 'm', 's', 'a' ),
1722 ISOM_LANGUAGE_CODE_MAYAY_ARABIC = LSMASH_PACK_ISO_LANGUAGE( 'm', 's', 'a' ),
1723 ISOM_LANGUAGE_CODE_AMHARIC = LSMASH_PACK_ISO_LANGUAGE( 'a', 'm', 'h' ),
1724 ISOM_LANGUAGE_CODE_OROMO = LSMASH_PACK_ISO_LANGUAGE( 'o', 'r', 'm' ),
1725 ISOM_LANGUAGE_CODE_SOMALI = LSMASH_PACK_ISO_LANGUAGE( 's', 'o', 'm' ),
1726 ISOM_LANGUAGE_CODE_SWAHILI = LSMASH_PACK_ISO_LANGUAGE( 's', 'w', 'a' ),
1727 ISOM_LANGUAGE_CODE_KINYARWANDA = LSMASH_PACK_ISO_LANGUAGE( 'k', 'i', 'n' ),
1728 ISOM_LANGUAGE_CODE_RUNDI = LSMASH_PACK_ISO_LANGUAGE( 'r', 'u', 'n' ),
1729 ISOM_LANGUAGE_CODE_CHEWA = LSMASH_PACK_ISO_LANGUAGE( 'n', 'y', 'a' ),
1730 ISOM_LANGUAGE_CODE_MALAGASY = LSMASH_PACK_ISO_LANGUAGE( 'm', 'l', 'g' ),
1731 ISOM_LANGUAGE_CODE_ESPERANTO = LSMASH_PACK_ISO_LANGUAGE( 'e', 'p', 'o' ),
1732 ISOM_LANGUAGE_CODE_WELSH = LSMASH_PACK_ISO_LANGUAGE( 'c', 'y', 'm' ),
1733 ISOM_LANGUAGE_CODE_BASQUE = LSMASH_PACK_ISO_LANGUAGE( 'e', 'u', 's' ),
1734 ISOM_LANGUAGE_CODE_CATALAN = LSMASH_PACK_ISO_LANGUAGE( 'c', 'a', 't' ),
1735 ISOM_LANGUAGE_CODE_LATIN = LSMASH_PACK_ISO_LANGUAGE( 'l', 'a', 't' ),
1736 ISOM_LANGUAGE_CODE_QUECHUA = LSMASH_PACK_ISO_LANGUAGE( 'q', 'u', 'e' ),
1737 ISOM_LANGUAGE_CODE_GUARANI = LSMASH_PACK_ISO_LANGUAGE( 'g', 'r', 'n' ),
1738 ISOM_LANGUAGE_CODE_AYMARA = LSMASH_PACK_ISO_LANGUAGE( 'a', 'y', 'm' ),
1739 ISOM_LANGUAGE_CODE_TATAR = LSMASH_PACK_ISO_LANGUAGE( 'c', 'r', 'h' ),
1740 ISOM_LANGUAGE_CODE_UIGHUR = LSMASH_PACK_ISO_LANGUAGE( 'u', 'i', 'g' ),
1741 ISOM_LANGUAGE_CODE_DZONGKHA = LSMASH_PACK_ISO_LANGUAGE( 'd', 'z', 'o' ),
1742 ISOM_LANGUAGE_CODE_JAVANESE = LSMASH_PACK_ISO_LANGUAGE( 'j', 'a', 'v' ),
1743 ISOM_LANGUAGE_CODE_UNDEFINED = LSMASH_PACK_ISO_LANGUAGE( 'u', 'n', 'd' ),
1744 } lsmash_iso_language_code;
1746 typedef struct
1748 lsmash_media_type handler_type; /* the nature of the media
1749 * You can't change handler_type through this parameter manually. */
1750 uint32_t timescale; /* media timescale: timescale for this media */
1751 uint64_t duration; /* the duration of this media, expressed in the media timescale
1752 * You can't set this parameter manually. */
1753 uint8_t roll_grouping; /* roll recovery grouping present
1754 * Require 'avc1' brand, or ISO Base Media File Format version 2 or later. */
1755 uint8_t rap_grouping; /* random access point grouping present
1756 * Require ISO Base Media File Format version 6 or later. */
1757 /* Use either type of language code. */
1758 uint16_t MAC_language; /* Macintosh language code for this media */
1759 uint16_t ISO_language; /* ISO 639-2/T language code for this media */
1760 /* human-readable name for the track type (for debugging and inspection purposes) */
1761 char *media_handler_name;
1762 char *data_handler_name;
1763 /* Any user shouldn't use the following parameters. */
1764 PRIVATE char media_handler_name_shadow[256];
1765 PRIVATE char data_handler_name_shadow[256];
1766 } lsmash_media_parameters_t;
1768 typedef struct
1770 uint32_t index; /* the index of a data reference */
1771 char *location; /* URL; location of referenced media file */
1772 /* Probably, additional string fields such as thing to indicate URN will be added in the future. */
1773 } lsmash_data_reference_t;
1775 /* Set all the given media parameters to default. */
1776 void lsmash_initialize_media_parameters
1778 lsmash_media_parameters_t *param /* the address of the media parameters to which you want to set default value */
1781 /* Set media parameters to a track.
1783 * Return 0 if successful.
1784 * Return a negative value otherwise. */
1785 int lsmash_set_media_parameters
1787 lsmash_root_t *root, /* the address of a ROOT containing a track to which you want to set the media parameters */
1788 uint32_t track_ID, /* the track_ID of a track to which you want to set the media parameters */
1789 lsmash_media_parameters_t *param /* the address of the media parameters you want to set to a track. */
1792 /* Set the duration of the last sample to a track.
1794 * Return 0 if successful.
1795 * Return a negative value otherwise. */
1796 int lsmash_set_last_sample_delta
1798 lsmash_root_t *root,
1799 uint32_t track_ID,
1800 uint32_t sample_delta
1803 /* Flush samples in the internal pool in a track.
1804 * Users shall call this function for each track before calling lsmash_finish_movie() or lsmash_create_fragment_movie().
1806 * Return 0 if successful.
1807 * Return a negative value otherwise. */
1808 int lsmash_flush_pooled_samples
1810 lsmash_root_t *root,
1811 uint32_t track_ID,
1812 uint32_t last_sample_delta
1815 /* Update the modification time of a media to the most recent.
1816 * If the creation time of that media is larger than the modification time,
1817 * then override the creation one with the modification one.
1819 * Return 0 if successful.
1820 * Return a negative value otherwise. */
1821 int lsmash_update_media_modification_time
1823 lsmash_root_t *root,
1824 uint32_t track_ID
1827 /* Get the media parameters in a track.
1829 * Return 0 if successful.
1830 * Return a negative value otherwise. */
1831 int lsmash_get_media_parameters
1833 lsmash_root_t *root,
1834 uint32_t track_ID,
1835 lsmash_media_parameters_t *param
1838 /* Get the duration of a media.
1840 * Return the duration of a media if successful.
1841 * Return 0 otherwise. */
1842 uint64_t lsmash_get_media_duration
1844 lsmash_root_t *root,
1845 uint32_t track_ID
1848 /* Get the timescale of a media.
1850 * Return the timescale of a media if successful.
1851 * Return 0 otherwise. */
1852 uint32_t lsmash_get_media_timescale
1854 lsmash_root_t *root,
1855 uint32_t track_ID
1858 /* Get the duration of the last sample in a track.
1860 * Return the duration of the last sample in a track if successful.
1861 * Return 0 otherwise. */
1862 uint32_t lsmash_get_last_sample_delta
1864 lsmash_root_t *root,
1865 uint32_t track_ID
1868 /* Get the composition time offset of the first sample in a track.
1870 * Return the composition time offset of the first sample in a track if successful.
1871 * Return 0 otherwise. */
1872 uint32_t lsmash_get_start_time_offset
1874 lsmash_root_t *root,
1875 uint32_t track_ID
1878 /* Get the shift of composition timeline to decode timeline in a track.
1880 * Return the shift of composition timeline to decode timeline in a track. if successful.
1881 * Return 0 otherwise. */
1882 uint32_t lsmash_get_composition_to_decode_shift
1884 lsmash_root_t *root,
1885 uint32_t track_ID
1888 /* Pack a string of ISO 639-2/T language code into 16-bit data.
1890 * Return a packed 16-bit ISO 639-2/T language if successful.
1891 * Return 0 otherwise. */
1892 uint16_t lsmash_pack_iso_language
1894 char *iso_language /* a string of ISO 639-2/T language code */
1897 /* Count the number of data references in a track.
1899 * Return the number of data references in a track if no error.
1900 * Return 0 otherwise. */
1901 uint32_t lsmash_count_data_reference
1903 lsmash_root_t *root,
1904 uint32_t track_ID
1907 /* Get the location of a data reference in a track by specifying the index in 'data_ref'.
1908 * The string fields in 'data_ref' may be allocated if referencing external media data.
1909 * If referencing self-contained media data, the all string fields are set to NULL.
1910 * You can deallocate the allocated fields by lsmash_free().
1911 * Also you can deallocate all of the allocated fields by lsmash_cleanup_data_reference() at a time.
1913 * Return 0 if successful.
1914 * Return a negative value otherwise. */
1915 int lsmash_get_data_reference
1917 lsmash_root_t *root,
1918 uint32_t track_ID,
1919 lsmash_data_reference_t *data_ref
1922 /* Deallocate all of allocated fields in a given data reference at a time.
1923 * The deallocated fields are set to NULL. */
1924 void lsmash_cleanup_data_reference
1926 lsmash_data_reference_t *data_ref
1929 /* Create a data reference in a track and specify its location on playback for writing.
1930 * If no settings for data references in a track, the location of the first data reference is specified to
1931 * the location of the same file implicitly.
1932 * Note that referenced files shall be used as a media, i.e. LSMASH_FILE_MODE_MEDIA shall be set to the 'mode'
1933 * in the lsmash_file_parameters_t before calling lsmash_set_file().
1935 * As restrictions of the libary,
1936 * WARNING1: The box structured media files cannot be used as a reference data yet.
1937 * WARNING2: The external media files cannot be used as a reference data for movie fragments yet.
1939 * Return 0 if successful.
1940 * Return a negative value otherwise. */
1941 int lsmash_create_data_reference
1943 lsmash_root_t *root,
1944 uint32_t track_ID,
1945 lsmash_data_reference_t *data_ref,
1946 lsmash_file_t *file
1949 /* Assign a data reference in a track to a read file.
1951 * Return 0 if successful.
1952 * Return a negative value otherwise. */
1953 int lsmash_assign_data_reference
1955 lsmash_root_t *root,
1956 uint32_t track_ID,
1957 uint32_t data_ref_index,
1958 lsmash_file_t *file
1961 /****************************************************************************
1962 * Track Layer
1963 ****************************************************************************/
1964 /* Track mode */
1965 typedef enum
1967 /* In MP4 and/or ISO base media file format, if in a presentation all tracks have neither track_in_movie nor track_in_preview set,
1968 * then all tracks shall be treated as if both flags were set on all tracks. */
1969 ISOM_TRACK_ENABLED = 0x000001, /* Track_enabled: Indicates that the track is enabled.
1970 * A disabled track is treated as if it were not present. */
1971 ISOM_TRACK_IN_MOVIE = 0x000002, /* Track_in_movie: Indicates that the track is used in the presentation. */
1972 ISOM_TRACK_IN_PREVIEW = 0x000004, /* Track_in_preview: Indicates that the track is used when previewing the presentation. */
1974 QT_TRACK_IN_POSTER = 0x000008, /* Track_in_poster: Indicates that the track is used in the movie's poster. (only defined in QuickTime file format) */
1975 } lsmash_track_mode;
1977 typedef struct
1979 lsmash_track_mode mode;
1980 uint32_t track_ID; /* an integer that uniquely identifies the track
1981 * Don't set to value already used except for zero value.
1982 * Zero value don't override established track_ID. */
1983 uint64_t duration; /* the duration of this track expressed in the movie timescale units
1984 * If there is any edit, your setting is ignored. */
1985 int16_t alternate_group; /* an integer that specifies a group or collection of tracks
1986 * If this field is not 0, it should be the same for tracks that contain alternate data for one another
1987 * and different for tracks belonging to different such groups.
1988 * Only one track within an alternate group should be played or streamed at any one time.
1989 * Note: alternate_group is ignored when a file is read as an MPEG-4. */
1990 /* The following parameters are ignored when a file is read as an MPEG-4 or 3GPP file format. */
1991 int16_t video_layer; /* the front-to-back ordering of video tracks; tracks with lower numbers are closer to the viewer. */
1992 int16_t audio_volume; /* fixed point 8.8 number. 0x0100 is full volume. */
1993 int32_t matrix[9]; /* transformation matrix for the video
1994 * Each value represents, in order, a, b, u, c, d, v, x, y and w.
1995 * All the values in a matrix are stored as 16.16 fixed-point values,
1996 * except for u, v and w, which are stored as 2.30 fixed-point values.
1997 * Not all derived specifications use matrices.
1998 * If a matrix is used, the point (p, q) is transformed into (p', q') using the matrix as follows:
1999 * | a b u |
2000 * (p, q, 1) * | c d v | = z * (p', q', 1)
2001 * | x y w |
2002 * p' = (a * p + c * q + x) / z; q' = (b * p + d * q + y) / z; z = u * p + v * q + w
2003 * Note: transformation matrix is applied after scaling to display size up to display_width and display_height. */
2004 /* visual presentation region size */
2005 uint32_t display_width; /* visual presentation region size of horizontal direction as fixed point 16.16 number. */
2006 uint32_t display_height; /* visual presentation region size of vertical direction as fixed point 16.16 number. */
2007 /* */
2008 uint8_t aperture_modes; /* track aperture modes present
2009 * This feature is only available under QuickTime file format.
2010 * Automatically disabled if multiple sample description is present or scaling method is specified. */
2011 } lsmash_track_parameters_t;
2013 /* Explicit Timeline Map (Edit)
2014 * There are two types of timeline; one is the media timeline, the other is the presentation timeline (or the movie timeline).
2015 * An edit maps the presentation timeline to the media timeline.
2016 * Therefore, an edit can select any portion within the media and specify its playback speed.
2017 * The media within the track is played through the presentation timeline, so you can construct any complex presentation from a media by edits.
2018 * In the absence of any edit, there is an implicit one-to-one mapping of these timelines, and the presentation of a track starts at the beginning of the presentation.
2019 * Note: any edit doesn't restrict decoding and composition. So, if a sample in an edit need to decode from a sample in outside of that edit,
2020 * the decoder shall start to decode from there but player shall not display any sample in outside of that edit. */
2021 #define ISOM_EDIT_MODE_NORMAL (1<<16)
2022 #define ISOM_EDIT_MODE_DWELL 0
2023 #define ISOM_EDIT_MODE_EMPTY -1
2024 #define ISOM_EDIT_DURATION_UNKNOWN32 0xffffffff
2025 #define ISOM_EDIT_DURATION_UNKNOWN64 0xffffffffffffffff
2026 #define ISOM_EDIT_DURATION_IMPLICIT 0
2028 typedef struct
2030 uint64_t duration; /* the duration of this edit expressed in the movie timescale units
2031 * An edit can refer to the media within fragmented tracks.
2032 * The duration can be unknown at the time of creation of the initial movie due to various limiting factors that include
2033 * real-time generation of content, such as live streaming. In such a case it is recommended that the duration is set to
2034 * either ISOM_EDIT_DURATION_UNKNOWN32 (the maximum 32-bit unsigned integer), ISOM_EDIT_DURATION_UNKNOWN64 (the maximum
2035 * 64-bit unsigned integer) or ISOM_EDIT_DURATION_IMPLICIT.
2036 * If you have no interest in the duration of this edit but want to set the offset from media composition time to movie
2037 * presentation time, ISOM_EDIT_DURATION_IMPLICIT is useful for the provision of the offset for the movie and subsequent
2038 * movie fragments. The duration is expected to be constructed by demuxer. */
2039 int64_t start_time; /* the starting composition time within the media of this edit
2040 * If set to ISOM_EDIT_MODE_EMPTY (-1), it construct an empty edit, which doesn't select any portion within the media. */
2041 int32_t rate; /* the relative rate at which to play the media corresponding to this edit, expressed as 16.16 fixed-point number
2042 * If set to ISOM_EDIT_MODE_NORMAL (0x00010000), there is no rate change for timeline mapping.
2043 * If set to ISOM_EDIT_MODE_DWELL (0), the media at start_time is presented for the duration. */
2044 } lsmash_edit_t;
2046 /* Create a track in a movie.
2047 * Users can destroy the created track by lsmash_delete_track().
2048 * When a track is created, its track_ID is assigned automatically so that any duplication of track_ID may be avoided.
2050 * Return the current track_ID of a track created by this function if successful.
2051 * Return 0 otherwise. */
2052 uint32_t lsmash_create_track
2054 lsmash_root_t *root,
2055 lsmash_media_type media_type
2058 /* Destroy the track of a given track_ID in a movie. */
2059 void lsmash_delete_track
2061 lsmash_root_t *root,
2062 uint32_t track_ID
2065 /* Set all the given track parameters to default. */
2066 void lsmash_initialize_track_parameters
2068 lsmash_track_parameters_t *param
2071 /* Set track parameters to a track.
2073 * Return 0 if successful.
2074 * Return a negative value otherwise. */
2075 int lsmash_set_track_parameters
2077 lsmash_root_t *root,
2078 uint32_t track_ID,
2079 lsmash_track_parameters_t *param
2082 /* Update the duration of a track with a new duration of its last sample.
2084 * Return 0 if successful.
2085 * Return a negative value otherwise. */
2086 int lsmash_update_track_duration
2088 lsmash_root_t *root,
2089 uint32_t track_ID,
2090 uint32_t last_sample_delta
2093 /* Update the modification time of a track to the most recent.
2094 * If the creation time of that track is larger than the modification time,
2095 * then override the creation one with the modification one.
2097 * Return 0 if successful.
2098 * Return a negative value otherwise. */
2099 int lsmash_update_track_modification_time
2101 lsmash_root_t *root,
2102 uint32_t track_ID
2105 /* Get a track_ID by a track number.
2106 * A track number is given in created order in a movie.
2107 * If a track is removed, the track number of tracks with higher track number than one of just removed track will be decremented.
2109 * Return a track_ID if successful.
2110 * Return 0 otherwise. */
2111 uint32_t lsmash_get_track_ID
2113 lsmash_root_t *root,
2114 uint32_t track_number
2117 /* Get the track parameters in a track.
2119 * Return 0 if successful.
2120 * Return a negative value otherwise. */
2121 int lsmash_get_track_parameters
2123 lsmash_root_t *root,
2124 uint32_t track_ID,
2125 lsmash_track_parameters_t *param
2128 /* Get the duration of a track.
2130 * Return the duration of a track if successful.
2131 * Return 0 otherwise. */
2132 uint64_t lsmash_get_track_duration
2134 lsmash_root_t *root,
2135 uint32_t track_ID
2138 /* Create an explicit timeline map (edit) and append it into a track.
2139 * Users can destroy ALL created edits in a track by lsmash_delete_explicit_timeline_map().
2141 * Return 0 if successful.
2142 * Return a negative value otherwise. */
2143 int lsmash_create_explicit_timeline_map
2145 lsmash_root_t *root,
2146 uint32_t track_ID,
2147 lsmash_edit_t edit
2150 /* Destroy ALL created edits in a track.
2152 * Return 0 if successful.
2153 * Return a negative value otherwise. */
2154 int lsmash_delete_explicit_timeline_map
2156 lsmash_root_t *root,
2157 uint32_t track_ID
2160 /* Count the number of edits in a track.
2162 * Return the number of edits in a track if successful.
2163 * Return 0 otherwise. */
2164 uint32_t lsmash_count_explicit_timeline_map
2166 lsmash_root_t *root,
2167 uint32_t track_ID
2170 /* Get an edit in a track by an edit number.
2171 * An edit number is given in created order in a track.
2172 * If an edit is removed, the edit number of edits with higher edit number than one of just removed edit will be decremented.
2174 * Return 0 if successful.
2175 * Return a negative value otherwise. */
2176 int lsmash_get_explicit_timeline_map
2178 lsmash_root_t *root,
2179 uint32_t track_ID,
2180 uint32_t edit_number,
2181 lsmash_edit_t *edit
2184 /* Modify an edit in a track by an edit number.
2185 * An edit number is given in created order in a track.
2186 * If an edit is removed, the edit number of edits with higher edit number than one of just removed edit will be decremented.
2188 * Return 0 if successful.
2189 * Return a negative value otherwise. */
2190 int lsmash_modify_explicit_timeline_map
2192 lsmash_root_t *root,
2193 uint32_t track_ID,
2194 uint32_t edit_number,
2195 lsmash_edit_t edit
2198 /****************************************************************************
2199 * Movie Layer
2200 ****************************************************************************/
2201 typedef struct
2203 uint32_t timescale; /* movie timescale: timescale for the entire presentation */
2204 uint64_t duration; /* the duration, expressed in movie timescale, of the longest track
2205 * You can't set this parameter manually. */
2206 uint32_t number_of_tracks; /* the number of tracks in the movie
2207 * You can't set this parameter manually. */
2208 /* The following parameters are recognized only when a file is read as an Apple MPEG-4 or QuickTime file format. */
2209 int32_t playback_rate; /* fixed point 16.16 number. 0x00010000 is normal forward playback and default value. */
2210 int32_t playback_volume; /* fixed point 8.8 number. 0x0100 is full volume and default value. */
2211 int32_t preview_time; /* the time value in the movie at which the preview begins */
2212 int32_t preview_duration; /* the duration of the movie preview in movie timescale units */
2213 int32_t poster_time; /* the time value of the time of the movie poster */
2214 } lsmash_movie_parameters_t;
2216 /* Set all the given movie parameters to default. */
2217 void lsmash_initialize_movie_parameters
2219 lsmash_movie_parameters_t *param
2222 /* Set movie parameters to a movie.
2224 * Return 0 if successful.
2225 * Return a negative value otherwise. */
2226 int lsmash_set_movie_parameters
2228 lsmash_root_t *root,
2229 lsmash_movie_parameters_t *param
2232 /* Finalize a movie.
2233 * If the movie is not fragmented and 'remux' is set to non-NULL,
2234 * move overall necessary data to access and decode samples into the very front of the file at the end.
2235 * This is useful for progressive downloading.
2236 * Users shall call lsmash_flush_pooled_samples() for each track before calling this function.
2238 * Return 0 if successful.
2239 * Return a negative value otherwise. */
2240 int lsmash_finish_movie
2242 lsmash_root_t *root,
2243 lsmash_adhoc_remux_t *remux
2246 /* Update the modification time of a movie to the most recent.
2247 * If the creation time of that movie is larger than the modification time,
2248 * then override the creation one with the modification one.
2250 * Return 0 if successful.
2251 * Return a negative value otherwise. */
2252 int lsmash_update_movie_modification_time
2254 lsmash_root_t *root
2257 /* Get the movie parameters in a movie.
2259 * Return 0 if successful.
2260 * Return a negative value otherwise. */
2261 int lsmash_get_movie_parameters
2263 lsmash_root_t *root,
2264 lsmash_movie_parameters_t *param
2267 /* Get the timescale of a movie.
2269 * Return the timescale of a movie if successful.
2270 * Return 0 otherwise. */
2271 uint32_t lsmash_get_movie_timescale
2273 lsmash_root_t *root
2276 /****************************************************************************
2277 * Chapter list
2278 ****************************************************************************/
2279 /* Create a track as a chapter list referenced by another track.
2281 * Return 0 if successful.
2282 * Return a negative value otherwise. */
2283 int lsmash_create_reference_chapter_track
2285 lsmash_root_t *root,
2286 uint32_t track_ID,
2287 char *file_name
2290 /* Create and set a chapter list as a user data to a movie.
2291 * The created chapter list in a movie can be destroyed by lsmash_delete_tyrant_chapter().
2293 * Return 0 if successful.
2294 * Return a negative value otherwise. */
2295 int lsmash_set_tyrant_chapter
2297 lsmash_root_t *root,
2298 char *file_name,
2299 int add_bom
2302 /* Destroy a chapter list as a user data in a movie. */
2303 void lsmash_delete_tyrant_chapter
2305 lsmash_root_t *root
2308 /* Count chapters in the chapter list (moov.udta.chpl). */
2309 uint32_t lsmash_count_tyrant_chapter
2311 lsmash_root_t *root
2314 /* Retrieve a chapter entry from the chapter list (moov.udta.chpl).
2315 * Returned pointer is owned by the ROOT structure, so user shall not
2316 * modify or free it.
2318 * Return chapter title string if successful, otherwise NULL.
2320 char *lsmash_get_tyrant_chapter
2322 lsmash_root_t *root,
2323 uint32_t index, /* index of chapter ( >= 1) */
2324 double *timestamp /* timestamp of the chapter entry (in seconds) */
2327 /****************************************************************************
2328 * Fragments
2329 ****************************************************************************/
2330 /* Flush the current movie fragment and create a new movie fragment.
2331 * Users shall call lsmash_flush_pooled_samples() for each track before calling this function.
2333 * Return 0 if successful.
2334 * Return a negative value otherwise. */
2335 int lsmash_create_fragment_movie
2337 lsmash_root_t *root
2340 /* Create an empty duration track in the current movie fragment.
2341 * Don't specify track_ID any track fragment in the current movie fragment has.
2343 * Return 0 if successful.
2344 * Return a negative value otherwise. */
2345 int lsmash_create_fragment_empty_duration
2347 lsmash_root_t *root,
2348 uint32_t track_ID,
2349 uint32_t duration
2352 /****************************************************************************
2353 * Dump / Print
2354 ****************************************************************************/
2355 /* Dump and print box structure of ROOT into the destination.
2357 * Return 0 if successful.
2358 * Return a negative value otherwise. */
2359 int lsmash_print_movie
2361 lsmash_root_t *root, /* the address of ROOT you want to dump and print */
2362 const char *filename /* the path of a file as the destination */
2365 /* Print a chapter list written as a user data on stdout.
2366 * This function might output BOM on Windows.
2368 * Return 0 if successful.
2369 * Return a negative value otherwise. */
2370 int lsmash_print_chapter_list
2372 lsmash_root_t *root
2375 /****************************************************************************
2376 * Timeline
2377 ****************************************************************************/
2378 /* Copy all edits from the source track to the destination track.
2380 * Return 0 if successful.
2381 * Return a negative value otherwise. */
2382 int lsmash_copy_timeline_map
2384 lsmash_root_t *dst,
2385 uint32_t dst_track_ID,
2386 lsmash_root_t *src,
2387 uint32_t src_track_ID
2390 /* Construct the timeline for a track.
2391 * The constructed timeline can be destructed by lsmash_destruct_timeline().
2393 * Return 0 if successful.
2394 * Return a negative value otherwise. */
2395 int lsmash_construct_timeline
2397 lsmash_root_t *root,
2398 uint32_t track_ID
2401 /* Destruct the timeline for a given track. */
2402 void lsmash_destruct_timeline
2404 lsmash_root_t *root,
2405 uint32_t track_ID
2408 /* Get the duration of the last sample from the media timeline for a track.
2410 * Return 0 if successful.
2411 * Return a negative value otherwise. */
2412 int lsmash_get_last_sample_delta_from_media_timeline
2414 lsmash_root_t *root,
2415 uint32_t track_ID,
2416 uint32_t *last_sample_delta /* the address of a variable to which the duration of the last sample will be set */
2419 /* Get the duration of a sample from the media timeline for a track.
2421 * Return 0 if successful.
2422 * Return a negative value otherwise. */
2423 int lsmash_get_sample_delta_from_media_timeline
2425 lsmash_root_t *root,
2426 uint32_t track_ID,
2427 uint32_t sample_number,
2428 uint32_t *sample_delta /* the address of a variable to which the duration of a sample will be set */
2431 /* Get the decoding timestamp of a sample from the media timeline for a track.
2433 * Return 0 if successful.
2434 * Return a negative value otherwise. */
2435 int lsmash_get_dts_from_media_timeline
2437 lsmash_root_t *root,
2438 uint32_t track_ID,
2439 uint32_t sample_number,
2440 uint64_t *dts /* the address of a variable to which a decoding timestamp will be set */
2443 /* Get the composition timestamp of a sample from the media timeline for a track.
2445 * Return 0 if successful.
2446 * Return a negative value otherwise. */
2447 int lsmash_get_cts_from_media_timeline
2449 lsmash_root_t *root,
2450 uint32_t track_ID,
2451 uint32_t sample_number,
2452 uint64_t *cts /* the address of a variable to which a composition timestamp will be set */
2455 /* Get the shift of composition timeline to decode timeline from the media timeline for a track.
2457 * Return 0 if successful.
2458 * Return a negative value otherwise. */
2459 int lsmash_get_composition_to_decode_shift_from_media_timeline
2461 lsmash_root_t *root,
2462 uint32_t track_ID,
2463 uint32_t *ctd_shift /* the address of a variable to which the shift of composition timeline to decode timeline will be set */
2466 /* Get the sample number which is the closest random accessible point to the sample
2467 * corresponding to a given sample number from the media timeline for a track.
2468 * This function tries to find the closest random accessible point from the past at the first.
2469 * If not found, try to find it from the future.
2470 * Note:
2471 * the closest random accessible point doesn't always guarantee that
2472 * the sample corresponding to a given number can be decodable correctly by decoding from there.
2474 * Return 0 if successful.
2475 * Return a negative value otherwise. */
2476 int lsmash_get_closest_random_accessible_point_from_media_timeline
2478 lsmash_root_t *root,
2479 uint32_t track_ID,
2480 uint32_t sample_number,
2481 uint32_t *rap_number /* the address of a variable to which the sample number of the closest random accessible point will be set */
2484 /* Get the detailed information of the closest random accessible point to the sample
2485 * corresponding to a given sample number from the media timeline for a track.
2486 * Note:
2487 * the closest random accessible point doesn't always guarantee that
2488 * the sample corresponding to a given number can be decodable correctly by decoding from there.
2490 * Return 0 if successful.
2491 * Return a negative value otherwise. */
2492 int lsmash_get_closest_random_accessible_point_detail_from_media_timeline
2494 lsmash_root_t *root,
2495 uint32_t track_ID,
2496 uint32_t sample_number,
2497 uint32_t *rap_number, /* the address of a variable to which the sample number of the closest random accessible point will be set */
2498 lsmash_random_access_flag *ra_flags, /* the address of a variable to which the flags of the closest random accessible point will be set */
2499 uint32_t *leading, /* the address of a variable to which the number of leading samples will be set */
2500 uint32_t *distance /* the address of a variable to which a distance from the closest random accessible point to a point which guarantees
2501 * that the sample corresponding to a given number can be decodable correctly by decoding from there will be set */
2504 /* Get the number of samples in the media timeline for a track.
2506 * Return the number of samples in a track if successful.
2507 * Return 0 otherwise. */
2508 uint32_t lsmash_get_sample_count_in_media_timeline
2510 lsmash_root_t *root,
2511 uint32_t track_ID
2514 /* Get the maximum size of sample in the media timeline for a track.
2516 * Return the maximum size of the samples in a track if successful.
2517 * Return 0 otherwise. */
2518 uint32_t lsmash_get_max_sample_size_in_media_timeline
2520 lsmash_root_t *root,
2521 uint32_t track_ID
2524 /* Get the duration of the media from the media timeline for a track.
2526 * Return the duration of the media in a track if successful.
2527 * Return 0 otherwise. */
2528 uint64_t lsmash_get_media_duration_from_media_timeline
2530 lsmash_root_t *root,
2531 uint32_t track_ID
2534 /* Allocate and get the sample corresponding to a given sample number from the media timeline for a track.
2535 * The allocated sample can be deallocated by lsmash_delete_sample().
2537 * Return the address of an allocated and gotten sample if successful.
2538 * Return NULL otherwise. */
2539 lsmash_sample_t *lsmash_get_sample_from_media_timeline
2541 lsmash_root_t *root,
2542 uint32_t track_ID,
2543 uint32_t sample_number
2546 /* Get the information of the sample correspondint to a given sample number from the media timeline for a track.
2547 * The information includes the size, timestamps and properties of the sample.
2549 * Return 0 if successful.
2550 * Return a negative value otherwise. */
2551 int lsmash_get_sample_info_from_media_timeline
2553 lsmash_root_t *root,
2554 uint32_t track_ID,
2555 uint32_t sample_number,
2556 lsmash_sample_t *sample
2559 /* Get the properties of the sample correspondint to a given sample number from the media timeline for a track.
2561 * Return 0 if successful.
2562 * Return a negative value otherwise. */
2563 int lsmash_get_sample_property_from_media_timeline
2565 lsmash_root_t *root,
2566 uint32_t track_ID,
2567 uint32_t sample_number,
2568 lsmash_sample_property_t *prop
2571 /* Check if the sample corresponding to a given sample number exists in the media timeline for a track.
2573 * Return 1 if the sample exists.
2574 * Return 0 otherwise. */
2575 int lsmash_check_sample_existence_in_media_timeline
2577 lsmash_root_t *root,
2578 uint32_t track_ID,
2579 uint32_t sample_number
2582 /* Set or change the decoding and composition timestamps in the media timeline for a track.
2583 * This function doesn't support for any LPCM track currently.
2585 * Return 0 if successful.
2586 * Return a negative value othewise. */
2587 int lsmash_set_media_timestamps
2589 lsmash_root_t *root,
2590 uint32_t track_ID,
2591 lsmash_media_ts_list_t *ts_list
2594 /* Allocate and get the decoding and composition timestamps from the media timeline for a track.
2595 * The allocated decoding and composition timestamps can be deallocated by lsmash_delete_media_timestamps().
2597 * Return 0 if successful.
2598 * Return a negative value othewise. */
2599 int lsmash_get_media_timestamps
2601 lsmash_root_t *root,
2602 uint32_t track_ID,
2603 lsmash_media_ts_list_t *ts_list
2606 /* Deallocate the decoding and composition timestamps in a given media timestamp list. */
2607 void lsmash_delete_media_timestamps
2609 lsmash_media_ts_list_t *ts_list
2612 /* Get the maximum composition delay derived from composition reordering.
2614 * Return 0 if successful.
2615 * Return a negative value otherwise. */
2616 int lsmash_get_max_sample_delay
2618 lsmash_media_ts_list_t *ts_list,
2619 uint32_t *max_sample_delay
2622 /* Sort decoding and composition timestamps in decoding order. */
2623 void lsmash_sort_timestamps_decoding_order
2625 lsmash_media_ts_list_t *ts_list
2628 /* Sort decoding and composition timestamps in composition order. */
2629 void lsmash_sort_timestamps_composition_order
2631 lsmash_media_ts_list_t *ts_list
2634 /****************************************************************************
2635 * Tools for creating CODEC Specific Information Extensions (Magic Cookies)
2636 ****************************************************************************/
2637 /* MPEG-4 Systems Specific Information
2638 * Mandatory :
2639 * ISOM_CODEC_TYPE_MP4A_AUDIO
2640 * QT_CODEC_TYPE_MP4A_AUDIO
2641 * ISOM_CODEC_TYPE_MP4V_AUDIO
2642 * ISOM_CODEC_TYPE_MP4S_AUDIO */
2643 /* objectTypeIndication */
2644 typedef enum
2646 MP4SYS_OBJECT_TYPE_Forbidden = 0x00, /* Forbidden */
2647 MP4SYS_OBJECT_TYPE_Systems_ISO_14496_1 = 0x01, /* Systems ISO/IEC 14496-1
2648 * For all 14496-1 streams unless specifically indicated to the contrary.
2649 * Scene Description scenes, which are identified with StreamType=0x03, using
2650 * this object type value shall use the BIFSConfig. */
2651 MP4SYS_OBJECT_TYPE_Systems_ISO_14496_1_BIFSv2 = 0x02, /* Systems ISO/IEC 14496-1
2652 * This object type shall be used, with StreamType=0x03, for Scene
2653 * Description streams that use the BIFSv2Config.
2654 * Its use with other StreamTypes is reserved. */
2655 MP4SYS_OBJECT_TYPE_Interaction_Stream = 0x03, /* Interaction Stream */
2656 MP4SYS_OBJECT_TYPE_Extended_BIFS = 0x04, /* Extended BIFS
2657 * Used, with StreamType=0x03, for Scene Description streams that use the BIFSConfigEx;
2658 * its use with other StreamTypes is reserved.
2659 * (Was previously reserved for MUCommandStream but not used for that purpose.) */
2660 MP4SYS_OBJECT_TYPE_AFX_Stream = 0x05, /* AFX Stream
2661 * Used, with StreamType=0x03, for Scene Description streams that use the AFXConfig;
2662 * its use with other StreamTypes is reserved. */
2663 MP4SYS_OBJECT_TYPE_Font_Data_Stream = 0x06, /* Font Data Stream */
2664 MP4SYS_OBJECT_TYPE_Synthetised_Texture = 0x07, /* Synthetised Texture */
2665 MP4SYS_OBJECT_TYPE_Text_Stream = 0x08, /* Text Stream */
2666 MP4SYS_OBJECT_TYPE_Visual_ISO_14496_2 = 0x20, /* Visual ISO/IEC 14496-2
2667 * The actual object types are within the DecoderSpecificInfo and defined in 14496-2. */
2668 MP4SYS_OBJECT_TYPE_Visual_H264_ISO_14496_10 = 0x21, /* Visual ITU-T Recommendation H.264 | ISO/IEC 14496-10
2669 * The actual object types are within the DecoderSpecificInfo and defined in H.264 | 14496-10. */
2670 MP4SYS_OBJECT_TYPE_Parameter_Sets_H_264_ISO_14496_10 = 0x22, /* Parameter Sets for ITU-T Recommendation H.264 | ISO/IEC 14496-10
2671 * The actual object types are within the DecoderSpecificInfo and defined in H.264 | 14496-10. */
2672 MP4SYS_OBJECT_TYPE_Audio_ISO_14496_3 = 0x40, /* Audio ISO/IEC 14496-3 (MPEG-4 Audio)
2673 * The actual object types are defined in 14496-3 and are in the DecoderSpecificInfo as specified in 14496-3. */
2674 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_Simple_Profile = 0x60, /* Visual ISO/IEC 13818-2 Simple Profile (MPEG-2 Video) */
2675 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_Main_Profile = 0x61, /* Visual ISO/IEC 13818-2 Main Profile */
2676 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_SNR_Profile = 0x62, /* Visual ISO/IEC 13818-2 SNR Profile */
2677 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_Spatial_Profile = 0x63, /* Visual ISO/IEC 13818-2 Spatial Profile */
2678 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_High_Profile = 0x64, /* Visual ISO/IEC 13818-2 High Profile */
2679 MP4SYS_OBJECT_TYPE_Visual_ISO_13818_2_422_Profile = 0x65, /* Visual ISO/IEC 13818-2 422 Profile */
2680 MP4SYS_OBJECT_TYPE_Audio_ISO_13818_7_Main_Profile = 0x66, /* Audio ISO/IEC 13818-7 Main Profile (MPEG-2 Audio)(AAC) */
2681 MP4SYS_OBJECT_TYPE_Audio_ISO_13818_7_LC_Profile = 0x67, /* Audio ISO/IEC 13818-7 LowComplexity Profile */
2682 MP4SYS_OBJECT_TYPE_Audio_ISO_13818_7_SSR_Profile = 0x68, /* Audio ISO/IEC 13818-7 Scaleable Sampling Rate Profile
2683 * For streams kinda 13818-7 the decoder specific information consists of the ADIF header if present
2684 * (or none if not present) and an access unit is a "raw_data_block()" as defined in 13818-7. */
2685 MP4SYS_OBJECT_TYPE_Audio_ISO_13818_3 = 0x69, /* Audio ISO/IEC 13818-3 (MPEG-2 BC-Audio)(redefined MPEG-1 Audio in MPEG-2)
2686 * For streams kinda 13818-3 the decoder specific information is empty since all necessary data is in the bitstream frames itself.
2687 * The access units in this case are the "frame()" bitstream element as is defined in 11172-3. */
2688 MP4SYS_OBJECT_TYPE_Visual_ISO_11172_2 = 0x6A, /* Visual ISO/IEC 11172-2 (MPEG-1 Video) */
2689 MP4SYS_OBJECT_TYPE_Audio_ISO_11172_3 = 0x6B, /* Audio ISO/IEC 11172-3 (MPEG-1 Audio) */
2690 MP4SYS_OBJECT_TYPE_Visual_ISO_10918_1 = 0x6C, /* Visual ISO/IEC 10918-1 (JPEG) */
2691 MP4SYS_OBJECT_TYPE_PNG = 0x6D, /* Portable Network Graphics */
2692 MP4SYS_OBJECT_TYPE_Visual_ISO_15444_1_JPEG2000 = 0x6E, /* Visual ISO/IEC 15444-1 (JPEG 2000) */
2694 /* FIXME: rename these symbols to be explaining, rather than based on four cc */
2695 MP4SYS_OBJECT_TYPE_EVRC_AUDIO = 0xA0, /* EVRC Voice */
2696 MP4SYS_OBJECT_TYPE_SSMV_AUDIO = 0xA1, /* SMV Voice */
2697 MP4SYS_OBJECT_TYPE_3GPP2_CMF = 0xA2, /* 3GPP2 Compact Multimedia Format (CMF) */
2698 MP4SYS_OBJECT_TYPE_VC_1_VIDEO = 0xA3, /* SMPTE VC-1 Video */
2699 MP4SYS_OBJECT_TYPE_DRAC_VIDEO = 0xA4, /* Dirac Video Coder */
2700 MP4SYS_OBJECT_TYPE_AC_3_AUDIO = 0xA5, /* AC-3 Audio */
2701 MP4SYS_OBJECT_TYPE_EC_3_AUDIO = 0xA6, /* Enhanced AC-3 audio */
2702 MP4SYS_OBJECT_TYPE_DRA1_AUDIO = 0xA7, /* DRA Audio */
2703 MP4SYS_OBJECT_TYPE_G719_AUDIO = 0xA8, /* ITU G.719 Audio */
2704 MP4SYS_OBJECT_TYPE_DTSC_AUDIO = 0xA9, /* DTS Coherent Acoustics audio */
2705 MP4SYS_OBJECT_TYPE_DTSH_AUDIO = 0xAA, /* DTS-HD High Resolution Audio */
2706 MP4SYS_OBJECT_TYPE_DTSL_AUDIO = 0xAB, /* DTS-HD Master Audio */
2707 MP4SYS_OBJECT_TYPE_DTSE_AUDIO = 0xAC, /* DTS Express low bit rate audio, also known as DTS LBR */
2708 MP4SYS_OBJECT_TYPE_SQCP_AUDIO = 0xE1, /* 13K Voice */
2710 MP4SYS_OBJECT_TYPE_NONE = 0xFF, /* no object type specified
2711 * Streams with this value with a StreamType indicating a systems stream (values 1,2,3,6,7,8,9)
2712 * shall be treated as if the ObjectTypeIndication had been set to 0x01. */
2713 } lsmash_mp4sys_object_type_indication;
2715 /* streamType */
2716 typedef enum
2718 MP4SYS_STREAM_TYPE_Forbidden = 0x00, /* Forbidden */
2719 MP4SYS_STREAM_TYPE_ObjectDescriptorStream = 0x01, /* ObjectDescriptorStream */
2720 MP4SYS_STREAM_TYPE_ClockReferenceStream = 0x02, /* ClockReferenceStream */
2721 MP4SYS_STREAM_TYPE_SceneDescriptionStream = 0x03, /* SceneDescriptionStream */
2722 MP4SYS_STREAM_TYPE_VisualStream = 0x04, /* VisualStream */
2723 MP4SYS_STREAM_TYPE_AudioStream = 0x05, /* AudioStream */
2724 MP4SYS_STREAM_TYPE_MPEG7Stream = 0x06, /* MPEG7Stream */
2725 MP4SYS_STREAM_TYPE_IPMPStream = 0x07, /* IPMPStream */
2726 MP4SYS_STREAM_TYPE_ObjectContentInfoStream = 0x08, /* ObjectContentInfoStream */
2727 MP4SYS_STREAM_TYPE_MPEGJStream = 0x09, /* MPEGJStream */
2728 MP4SYS_STREAM_TYPE_InteractionStream = 0x0A, /* Interaction Stream */
2729 MP4SYS_STREAM_TYPE_IPMPToolStream = 0x0B, /* IPMPToolStream */
2730 MP4SYS_STREAM_TYPE_FontDataStream = 0x0C, /* FontDataStream */
2731 MP4SYS_STREAM_TYPE_StreamingText = 0x0D, /* StreamingText */
2732 } lsmash_mp4sys_stream_type;
2734 /* MPEG-4 Systems Decoder Specific Information
2735 * an opaque container with information for a specific media decoder
2736 * The existence and semantics of decoder specific information depends on the values of streamType and objectTypeIndication. */
2737 typedef struct lsmash_mp4sys_decoder_specific_info_tag lsmash_mp4sys_decoder_specific_info_t;
2739 /* Note: bufferSizeDB, maxBitrate and avgBitrate are calculated internally when calling lsmash_finish_movie().
2740 * You need not to set up them manually when muxing streams by L-SMASH. */
2741 typedef struct
2743 lsmash_mp4sys_object_type_indication objectTypeIndication;
2744 lsmash_mp4sys_stream_type streamType;
2745 uint32_t bufferSizeDB; /* the size of the decoding buffer for this elementary stream in byte */
2746 uint32_t maxBitrate; /* the maximum bitrate in bits per second of the elementary stream in
2747 * any time window of one second duration */
2748 uint32_t avgBitrate; /* the average bitrate in bits per second of the elementary stream
2749 * Set to 0 if the stream is encoded as variable bitrate. */
2750 lsmash_mp4sys_decoder_specific_info_t *dsi; /* zero or one decoder specific information */
2751 } lsmash_mp4sys_decoder_parameters_t;
2753 int lsmash_set_mp4sys_decoder_specific_info
2755 lsmash_mp4sys_decoder_parameters_t *param,
2756 uint8_t *payload,
2757 uint32_t payload_length
2760 void lsmash_destroy_mp4sys_decoder_specific_info
2762 lsmash_mp4sys_decoder_parameters_t *param
2765 uint8_t *lsmash_create_mp4sys_decoder_config
2767 lsmash_mp4sys_decoder_parameters_t *param,
2768 uint32_t *data_length
2771 /* Return MP4SYS_OBJECT_TYPE_Forbidden if objectTypeIndication is not found or there is an error to find it. */
2772 lsmash_mp4sys_object_type_indication lsmash_mp4sys_get_object_type_indication
2774 lsmash_summary_t *summary
2777 /* Return -1 if any error.
2778 * Even if the decoder specific information is not found, it is not an error since no decoder specific information is allowed for some stream formats. */
2779 int lsmash_get_mp4sys_decoder_specific_info
2781 lsmash_mp4sys_decoder_parameters_t *param,
2782 uint8_t **payload,
2783 uint32_t *payload_length
2786 /* AC-3 Specific Information
2787 * Mandatory :
2788 * ISOM_CODEC_TYPE_AC_3_AUDIO
2790 * Unlike MPEG-4 Audio formats, the decoder does not require this for the initialization.
2791 * Each AC-3 sample is self-contained.
2792 * Users shall set the actual sample rate to 'frequency', which is a member of lsmash_audio_summary_t. */
2793 typedef struct
2795 uint8_t fscod; /* the same value as the fscod field in the AC-3 bitstream */
2796 uint8_t bsid; /* the same value as the bsid field in the AC-3 bitstream */
2797 uint8_t bsmod; /* the same value as the bsmod field in the AC-3 bitstream */
2798 uint8_t acmod; /* the same value as the acmod field in the AC-3 bitstream */
2799 uint8_t lfeon; /* the same value as the lfeon field in the AC-3 bitstream */
2800 uint8_t frmsizecod; /* the same value as the frmsizecod field in the AC-3 bitstream */
2801 } lsmash_ac3_specific_parameters_t;
2803 int lsmash_setup_ac3_specific_parameters_from_syncframe
2805 lsmash_ac3_specific_parameters_t *param,
2806 uint8_t *data,
2807 uint32_t data_length
2810 uint8_t *lsmash_create_ac3_specific_info
2812 lsmash_ac3_specific_parameters_t *param,
2813 uint32_t *data_length
2816 /* Enhanced AC-3 Specific Information
2817 * Mandatory :
2818 * ISOM_CODEC_TYPE_EC_3_AUDIO
2820 * Unlike MPEG-4 Audio formats, the decoder does not require this for the initialization.
2821 * Each Enhanced AC-3 sample is self-contained.
2822 * Note that this cannot document reduced sample rates (24000, 22050 or 16000 Hz).
2823 * Therefore, users shall set the actual sample rate to 'frequency', which is a member of lsmash_audio_summary_t. */
2824 typedef struct
2826 uint8_t fscod; /* the same value as the fscod field in the independent substream */
2827 uint8_t bsid; /* the same value as the bsid field in the independent substream */
2828 uint8_t bsmod; /* the same value as the bsmod field in the independent substream
2829 * If the bsmod field is not present in the independent substream, this field shall be set to 0. */
2830 uint8_t acmod; /* the same value as the acmod field in the independent substream */
2831 uint8_t lfeon; /* the same value as the lfeon field in the independent substream */
2832 uint8_t num_dep_sub; /* the number of dependent substreams that are associated with the independent substream */
2833 uint16_t chan_loc; /* channel locations of dependent substreams associated with the independent substream
2834 * This information is extracted from the chanmap field of each dependent substream. */
2835 } lsmash_eac3_substream_info_t;
2837 typedef struct
2839 uint16_t data_rate; /* the data rate of the Enhanced AC-3 bitstream in kbit/s
2840 * If the Enhanced AC-3 stream is variable bitrate, then this value indicates the maximum data rate of the stream. */
2841 uint8_t num_ind_sub; /* the number of independent substreams that are present in the Enhanced AC-3 bitstream
2842 * The value of this field is one less than the number of independent substreams present
2843 * and shall be in the range of 0 to 7, inclusive. */
2844 lsmash_eac3_substream_info_t independent_info[8];
2845 } lsmash_eac3_specific_parameters_t;
2847 int lsmash_setup_eac3_specific_parameters_from_frame
2849 lsmash_eac3_specific_parameters_t *param,
2850 uint8_t *data,
2851 uint32_t data_length
2854 uint16_t lsmash_eac3_get_chan_loc_from_chanmap
2856 uint16_t chanmap
2859 uint8_t *lsmash_create_eac3_specific_info
2861 lsmash_eac3_specific_parameters_t *param,
2862 uint32_t *data_length
2865 /* DTS Audio Specific Information
2866 * Mandatory :
2867 * ISOM_CODEC_TYPE_DTSC_AUDIO
2868 * ISOM_CODEC_TYPE_DTSH_AUDIO
2869 * ISOM_CODEC_TYPE_DTSL_AUDIO
2870 * ISOM_CODEC_TYPE_DTSE_AUDIO
2872 * Unlike MPEG-4 Audio formats, the decoder does not require this for the initialization.
2873 * Each DTS Audio sample is self-contained. */
2874 typedef enum
2876 DTS_CORE_SUBSTREAM_CORE_FLAG = 0x00000001,
2877 DTS_CORE_SUBSTREAM_XXCH_FLAG = 0x00000002,
2878 DTS_CORE_SUBSTREAM_X96_FLAG = 0x00000004,
2879 DTS_CORE_SUBSTREAM_XCH_FLAG = 0x00000008,
2880 DTS_EXT_SUBSTREAM_CORE_FLAG = 0x00000010,
2881 DTS_EXT_SUBSTREAM_XBR_FLAG = 0x00000020,
2882 DTS_EXT_SUBSTREAM_XXCH_FLAG = 0x00000040,
2883 DTS_EXT_SUBSTREAM_X96_FLAG = 0x00000080,
2884 DTS_EXT_SUBSTREAM_LBR_FLAG = 0x00000100,
2885 DTS_EXT_SUBSTREAM_XLL_FLAG = 0x00000200,
2886 } lsmash_dts_construction_flag;
2888 typedef struct lsmash_dts_reserved_box_tag lsmash_dts_reserved_box_t;
2890 typedef struct
2892 uint32_t DTSSamplingFrequency; /* the maximum sampling frequency stored in the compressed audio stream
2893 * 'frequency', which is a member of lsmash_audio_summary_t, shall be set according to DTSSamplingFrequency of either:
2894 * 48000 for original sampling frequencies of 24000Hz, 48000Hz, 96000Hz or 192000Hz;
2895 * 44100 for original sampling frequencies of 22050Hz, 44100Hz, 88200Hz or 176400Hz;
2896 * 32000 for original sampling frequencies of 16000Hz, 32000Hz, 64000Hz or 128000Hz. */
2897 uint32_t maxBitrate; /* the peak bit rate, in bits per second, of the audio elementary stream for the duration of the track,
2898 * including the core substream (if present) and all extension substreams.
2899 * If the stream is a constant bit rate, this parameter shall have the same value as avgBitrate.
2900 * If the maximum bit rate is unknown, this parameter shall be set to 0. */
2901 uint32_t avgBitrate; /* the average bit rate, in bits per second, of the audio elementary stream for the duration of the track,
2902 * including the core substream and any extension substream that may be present. */
2903 uint8_t pcmSampleDepth; /* the bit depth of the rendered audio
2904 * The value is 16 or 24 bits. */
2905 uint8_t FrameDuration; /* the number of audio samples decoded in a complete audio access unit at DTSSamplingFrequency
2906 * 0: 512, 1: 1024, 2: 2048, 3: 4096 */
2907 uint8_t StreamConstruction; /* complete information on the existence and of location of extensions in any synchronized frame */
2908 uint8_t CoreLFEPresent; /* the presence of an LFE channel in the core
2909 * 0: none
2910 * 1: LFE exists */
2911 uint8_t CoreLayout; /* the channel layout of the core within the core substream
2912 * If no core substream exists, this parameter shall be ignored and ChannelLayout or
2913 * RepresentationType shall be used to determine channel configuration. */
2914 uint16_t CoreSize; /* The size of a core substream AU in bytes.
2915 * If no core substream exists, CoreSize = 0. */
2916 uint8_t StereoDownmix; /* the presence of an embedded stereo downmix in the stream
2917 * 0: none
2918 * 1: embedded downmix present */
2919 uint8_t RepresentationType; /* This indicates special properties of the audio presentation.
2920 * 0: Audio asset designated for mixing with another audio asset
2921 * 2: Lt/Rt Encoded for matrix surround decoding
2922 * 3: Audio processed for headphone playback
2923 * otherwise: Reserved
2924 * If ChannelLayout != 0, this value shall be ignored. */
2925 uint16_t ChannelLayout; /* complete information on channels coded in the audio stream including core and extensions */
2926 uint8_t MultiAssetFlag; /* This flag shall set if the stream contains more than one asset.
2927 * 0: single asset
2928 * 1: multiple asset
2929 * When multiple assets exist, the remaining parameters only reflect the coding parameters of the first asset. */
2930 uint8_t LBRDurationMod; /* This flag indicates a special case of the LBR coding bandwidth, resulting in 1/3 or 2/3 band limiting.
2931 * If set to 1, LBR frame duration is 50 % larger than indicated in FrameDuration */
2932 lsmash_dts_reserved_box_t *box;
2933 } lsmash_dts_specific_parameters_t;
2935 int lsmash_setup_dts_specific_parameters_from_frame
2937 lsmash_dts_specific_parameters_t *param,
2938 uint8_t *data,
2939 uint32_t data_length
2942 uint8_t lsmash_dts_get_stream_construction
2944 lsmash_dts_construction_flag flags
2947 lsmash_dts_construction_flag lsmash_dts_get_construction_flags
2949 uint8_t stream_construction
2952 lsmash_codec_type_t lsmash_dts_get_codingname
2954 lsmash_dts_specific_parameters_t *param
2957 uint8_t *lsmash_create_dts_specific_info
2959 lsmash_dts_specific_parameters_t *param,
2960 uint32_t *data_length
2963 int lsmash_append_dts_reserved_box
2965 lsmash_dts_specific_parameters_t *param,
2966 uint8_t *box_data,
2967 uint32_t box_size
2970 void lsmash_remove_dts_reserved_box
2972 lsmash_dts_specific_parameters_t *param
2975 /* Apple Lossless Audio Specific Information
2976 * Mandatory :
2977 * ISOM_CODEC_TYPE_ALAC_AUDIO
2978 * QT_CODEC_TYPE_ALAC_AUDIO */
2979 typedef struct
2981 uint32_t frameLength; /* the frames per packet when no explicit frames per packet setting is present in the packet header
2982 * The encoder frames per packet can be explicitly set but for maximum compatibility,
2983 * the default encoder setting of 4096 should be used. */
2984 uint8_t bitDepth; /* the bit depth of the source PCM data (maximum value = 32) */
2985 uint8_t numChannels; /* the channel count (1 = mono, 2 = stereo, etc...)
2986 * When channel layout info is not provided in the Channel Layout extension,
2987 * a channel count > 2 describes a set of discreet channels with no specific ordering. */
2988 uint32_t maxFrameBytes; /* the maximum size of an Apple Lossless packet within the encoded stream
2989 * Value of 0 indicates unknown. */
2990 uint32_t avgBitrate; /* the average bit rate in bits per second of the Apple Lossless stream
2991 * Value of 0 indicates unknown. */
2992 uint32_t sampleRate; /* sample rate of the encoded stream */
2993 } lsmash_alac_specific_parameters_t;
2995 uint8_t *lsmash_create_alac_specific_info
2997 lsmash_alac_specific_parameters_t *param,
2998 uint32_t *data_length
3001 /* MPEG-4 Bitrate Information.
3002 * Optional :
3003 * ISOM_CODEC_TYPE_AVC1_VIDEO
3004 * ISOM_CODEC_TYPE_AVC2_VIDEO
3005 * ISOM_CODEC_TYPE_AVC3_VIDEO
3006 * ISOM_CODEC_TYPE_AVC4_VIDEO
3007 * ISOM_CODEC_TYPE_HVC1_VIDEO
3008 * ISOM_CODEC_TYPE_HEV1_VIDEO
3010 * Though you need not to set these fields manually since lsmash_finish_movie() calls the function
3011 * that calculates these values internally, these fields are optional.
3012 * Therefore, if you want to add this info, append this as an extension via LSMASH_CODEC_SPECIFIC_DATA_TYPE_ISOM_VIDEO_H264_BITRATE at least. */
3013 typedef struct
3015 uint32_t bufferSizeDB; /* the size of the decoding buffer for the elementary stream in bytes */
3016 uint32_t maxBitrate; /* the maximum rate in bits/second over any window of one second */
3017 uint32_t avgBitrate; /* the average rate in bits/second over the entire presentation */
3018 } lsmash_h264_bitrate_t;
3020 /* Appendability of NAL unit into Decoder Configuration Record */
3021 typedef enum
3023 DCR_NALU_APPEND_NEW_SAMPLE_ENTRY_REQUIRED = -3, /* A new sample description entry is needed because e.g. visual presentation size changes. */
3024 DCR_NALU_APPEND_NEW_DCR_REQUIRED = -2, /* A new Decoder Configuration Record is needed. */
3025 DCR_NALU_APPEND_ERROR = -1, /* something of errors */
3026 DCR_NALU_APPEND_DUPLICATED = 0, /* The same NAL unit is in the Decoder Configuration Record. */
3027 DCR_NALU_APPEND_POSSIBLE = 1, /* It is possible to append the NAL unit into the Decoder Configuration Record. */
3028 } lsmash_dcr_nalu_appendable;
3030 /* H.264/AVC Specific Information
3031 * Mandatory :
3032 * ISOM_CODEC_TYPE_AVC1_VIDEO
3033 * ISOM_CODEC_TYPE_AVC2_VIDEO
3034 * ISOM_CODEC_TYPE_AVC3_VIDEO
3035 * ISOM_CODEC_TYPE_AVC4_VIDEO
3037 * All members in lsmash_h264_specific_parameters_t except for lengthSizeMinusOne shall be automatically set up
3038 * when appending SPS NAL units by calling lsmash_append_h264_parameter_set(). */
3039 typedef enum
3041 H264_PARAMETER_SET_TYPE_SPS = 0, /* SPS (Sequence Parameter Set) */
3042 H264_PARAMETER_SET_TYPE_PPS = 1, /* PPS (Picture Parameter Set) */
3043 H264_PARAMETER_SET_TYPE_SPSEXT = 2, /* SPS Ext (Sequence Parameter Set Extension) */
3044 /* The number of the NAL unit types defined for AVC Decoder Configuration Record */
3045 H264_PARAMETER_SET_TYPE_NUM
3046 } lsmash_h264_parameter_set_type;
3048 typedef struct lsmash_h264_parameter_sets_tag lsmash_h264_parameter_sets_t;
3050 typedef struct
3052 uint8_t AVCProfileIndication; /* profile_idc in sequence parameter sets
3053 * This field must indicate a profile to which the stream associated with
3054 * this configuration record conforms.
3055 * Note: there is no profile to which the entire stream conforms, then
3056 * the entire stream must be split into two or more sub-streams with
3057 * separate configuration records in which these rules can be met. */
3058 uint8_t profile_compatibility; /* constraint_set_flags in sequence parameter sets
3059 * The each bit may only be set if all the included parameter sets set that flag. */
3060 uint8_t AVCLevelIndication; /* level_idc in sequence parameter sets
3061 * This field must indicate a level of capability equal to or greater than
3062 * the highest level indicated in the included parameter sets. */
3063 uint8_t lengthSizeMinusOne; /* the length in bytes of the NALUnitLength field prior to NAL unit
3064 * The value of this field shall be one of 0, 1, or 3
3065 * corresponding to a length encoded with 1, 2, or 4 bytes, respectively.
3066 * NALUnitLength indicates the size of a NAL unit measured in bytes,
3067 * and includes the size of both the one byte NAL header and the EBSP payload
3068 * but does not include the length field itself. */
3069 /* chroma format and bit depth information
3070 * These fields must be identical in all the parameter sets. */
3071 uint8_t chroma_format; /* chroma_format_idc in sequence parameter sets */
3072 uint8_t bit_depth_luma_minus8; /* bit_depth_luma_minus8 in sequence parameter sets */
3073 uint8_t bit_depth_chroma_minus8; /* bit_depth_chroma_minus8 in sequence parameter sets */
3074 /* a set of arrays to carry initialization NAL units
3075 * The NAL unit types are restricted to indicate SPS, PPS and SPS Ext NAL units only. */
3076 lsmash_h264_parameter_sets_t *parameter_sets;
3077 } lsmash_h264_specific_parameters_t;
3079 int lsmash_setup_h264_specific_parameters_from_access_unit
3081 lsmash_h264_specific_parameters_t *param,
3082 uint8_t *data,
3083 uint32_t data_length
3086 void lsmash_destroy_h264_parameter_sets
3088 lsmash_h264_specific_parameters_t *param
3091 lsmash_dcr_nalu_appendable lsmash_check_h264_parameter_set_appendable
3093 lsmash_h264_specific_parameters_t *param,
3094 lsmash_h264_parameter_set_type ps_type,
3095 void *ps_data,
3096 uint32_t ps_length
3099 int lsmash_append_h264_parameter_set
3101 lsmash_h264_specific_parameters_t *param,
3102 lsmash_h264_parameter_set_type ps_type,
3103 void *ps_data,
3104 uint32_t ps_length
3107 uint8_t *lsmash_create_h264_specific_info
3109 lsmash_h264_specific_parameters_t *param,
3110 uint32_t *data_length
3113 /* H.265/HEVC Specific Information
3114 * Mandatory :
3115 * ISOM_CODEC_TYPE_HVC1_VIDEO
3116 * ISOM_CODEC_TYPE_HEV1_VIDEO
3118 * All members in lsmash_hevc_specific_parameters_t except for avgFrameRate and lengthSizeMinusOne shall be
3119 * automatically set up when appending VPS and SPS NAL units by calling lsmash_append_hevc_dcr_nalu().
3120 * It is recommended that you should append VPS, SPS and PPS in this order so that a parameter set can reference
3121 * another parameter set. */
3122 typedef enum
3124 /* Parameter sets
3125 * When the CODEC identifier ISOM_CODEC_TYPE_HVC1_VIDEO is used, at least one parameter set for each array
3126 * of parameter set shall be in the configuration record. */
3127 HEVC_DCR_NALU_TYPE_VPS = 0, /* VPS (Video Parameter Set) */
3128 HEVC_DCR_NALU_TYPE_SPS = 1, /* SPS (Sequence Parameter Set) */
3129 HEVC_DCR_NALU_TYPE_PPS = 2, /* PPS (Picture Parameter Set) */
3130 /* SEI (Supplemental Enhancement Information)
3131 * Only the 'declarative' SEI messages that provide information about the stream as
3132 * a whole are allowed because SEIs themselves basically have no identifier and
3133 * no one can reference dynamically in a configuration record. */
3134 HEVC_DCR_NALU_TYPE_PREFIX_SEI = 3, /* Prefix SEI */
3135 HEVC_DCR_NALU_TYPE_SUFFIX_SEI = 4, /* Suffix SEI */
3136 /* The number of the NAL unit types defined for HEVC Decoder Configuration Record */
3137 HEVC_DCR_NALU_TYPE_NUM
3138 } lsmash_hevc_dcr_nalu_type;
3140 typedef struct lsmash_hevc_parameter_arrays_tag lsmash_hevc_parameter_arrays_t;
3142 typedef struct
3144 /* general profile, tier and level from VPS and/or SPS */
3145 uint8_t general_profile_space; /* general_profile_space
3146 * The value in all the parameter sets must be identical. */
3147 uint8_t general_tier_flag; /* general_tier_flag
3148 * The value must indicate a tier equal to or greater than the highest
3149 * tier indicated in all the parameter sets. */
3150 uint8_t general_profile_idc; /* general_profile_idc
3151 * The value must indicate a profile to which the stream associated with
3152 * this configuration record conforms.
3153 * Note: there is no profile to which the entire stream conforms, then
3154 * the entire stream must be split into two or more sub-streams with
3155 * separate configuration records in which these rules can be met. */
3156 uint32_t general_profile_compatibility_flags; /* general_profile_compatibility_flag[j] for j from 0 to 31
3157 * The each bit may only be set if all the parameter sets set that bit. */
3158 uint64_t general_constraint_indicator_flags; /* the 6 bytes starting with the byte containing the general_progressive_source_flag
3159 * The each bit may only be set if all the parameter sets set that bit. */
3160 uint8_t general_level_idc; /* general_level_idc
3161 * The value must indicate a level of capability equal to or greater
3162 * than the highest level indicated for the highest tier in all the
3163 * parameter sets. */
3164 /* */
3165 uint16_t min_spatial_segmentation_idc; /* min_spatial_segmentation_idc in VUI (Video Usability Information)
3166 * The value must indicate a level of spatial segmentation equal to
3167 * or less than the lowest level of spatial segmentation indicated in
3168 * all the parameter sets. */
3169 uint8_t parallelismType; /* parallelismType indicates the type of parallelism that is used to meet the
3170 * restrictions imposed by min_spatial_segmentation_idc when the value of
3171 * min_spatial_segmentation_idc is greater than 0.
3172 * For the stream to which this configuration record applies,
3173 * 0: mixed types of parallel decoding or parallelism type is unknown
3174 * 1: slice based parallel decoding
3175 * 2: tile based parallel decoding
3176 * 3: entropy coding synchronization based parallel decoding
3177 * (WPP: Wavefront Parallel Processing) */
3178 /* chroma format and bit depth information
3179 * These fields must be identical in all the parameter sets. */
3180 uint8_t chromaFormat; /* chroma_format_idc in sequence parameter sets */
3181 uint8_t bitDepthLumaMinus8; /* bit_depth_luma_minus8 in sequence parameter sets */
3182 uint8_t bitDepthChromaMinus8; /* bit_depth_chroma_minus8 in sequence parameter sets */
3183 /* miscellaneous */
3184 uint16_t avgFrameRate; /* the average frame rate in units of frames/(256 seconds)
3185 * Value 0 indicates an unspecified average frame rate. */
3186 uint8_t constantFrameRate; /* 0: the stream may or may not be of constant frame rate.
3187 * 1: that the stream to which this configuration record applies is of
3188 * constant frame rate
3189 * 2: the representation of each temporal layer in the stream is of
3190 * constant frame rate. */
3191 uint8_t numTemporalLayers; /* 0: it is unknown whether the stream is temporally scalable.
3192 * 1: the stream is not temporally scalable.
3193 * otherwise: the stream to which this configuration record applies is
3194 * temporally scalable and the contained number of temporal layers
3195 * (also referred to as temporal sublayer or sub-layer) is equal
3196 * is equal to numTemporalLayers. */
3197 uint8_t temporalIdNested; /* 0: at least one of the SPSs that are activated when the stream to which
3198 * this configuration record applies is decoded has sps_temporal_id_nesting_flag
3199 * equal to 0.
3200 * 1: all SPSs that are activated when the stream to which this configuration
3201 * record applies is decoded have sps_temporal_id_nesting_flag equal to 1
3202 * and temporal sub-layer up-switching to any higher temporal layer can be
3203 * performed at any sample.
3204 * Any step-wise temporal sub-layer access picture shall not be present in
3205 * the sequences to which this configuration record applies. */
3206 uint8_t lengthSizeMinusOne; /* the length in bytes of the NALUnitLength field prior to NAL unit
3207 * The value of this field shall be one of 0, 1, or 3
3208 * corresponding to a length encoded with 1, 2, or 4 bytes, respectively.
3209 * NALUnitLength indicates the size of a NAL unit measured in bytes,
3210 * and includes the size of both the one byte NAL header and the EBSP payload
3211 * but does not include the length field itself. */
3212 /* a set of arrays to carry initialization NAL units
3213 * The NAL unit types are restricted to indicate VPS, SPS, PPS, and SEI NAL units only. */
3214 lsmash_hevc_parameter_arrays_t *parameter_arrays;
3215 } lsmash_hevc_specific_parameters_t;
3217 int lsmash_setup_hevc_specific_parameters_from_access_unit
3219 lsmash_hevc_specific_parameters_t *param,
3220 uint8_t *data,
3221 uint32_t data_length
3224 void lsmash_destroy_hevc_parameter_arrays
3226 lsmash_hevc_specific_parameters_t *param
3229 lsmash_dcr_nalu_appendable lsmash_check_hevc_dcr_nalu_appendable
3231 lsmash_hevc_specific_parameters_t *param,
3232 lsmash_hevc_dcr_nalu_type ps_type,
3233 void *ps_data,
3234 uint32_t ps_length
3237 int lsmash_append_hevc_dcr_nalu
3239 lsmash_hevc_specific_parameters_t *param,
3240 lsmash_hevc_dcr_nalu_type ps_type,
3241 void *ps_data,
3242 uint32_t ps_length
3245 int lsmash_set_hevc_array_completeness
3247 lsmash_hevc_specific_parameters_t *param,
3248 lsmash_hevc_dcr_nalu_type ps_type,
3249 int array_completeness
3252 int lsmash_get_hevc_array_completeness
3254 lsmash_hevc_specific_parameters_t *param,
3255 lsmash_hevc_dcr_nalu_type ps_type,
3256 int *array_completeness
3259 uint8_t *lsmash_create_hevc_specific_info
3261 lsmash_hevc_specific_parameters_t *param,
3262 uint32_t *data_length
3265 /* VC-1 Specific Information
3266 * Mandatory :
3267 * ISOM_CODEC_TYPE_VC_1_VIDEO
3269 * We support only advanced profile at present. */
3270 typedef struct lsmash_vc1_header_tag lsmash_vc1_header_t;
3272 typedef struct
3274 /* Note: multiple_sequence, multiple_entry, slice_present and bframe_present shall be decided through overall VC-1 bitstream. */
3275 uint8_t profile; /* the encoding profile used in the VC-1 bitstream
3276 * 0: simple profile (not supported)
3277 * 4: main profile (not supported)
3278 * 12: advanced profile
3279 * Currently, only 12 for advanced profile is available. */
3280 uint8_t level; /* the highest encoding level used in the VC-1 bitstream */
3281 uint8_t cbr; /* 0: non-constant bitrate model
3282 * 1: constant bitrate model */
3283 uint8_t interlaced; /* 0: interlaced coding of frames is not used.
3284 * 1: frames may use interlaced coding. */
3285 uint8_t multiple_sequence; /* 0: the track contains no sequence headers (stored only in VC-1 specific info structure),
3286 * or
3287 * all sequence headers in the track are identical to the sequence header that is specified in the seqhdr field.
3288 * In this case, random access points are samples that contain an entry-point header.
3289 * 1: the track may contain Sequence headers that are different from the sequence header specified in the seqhdr field.
3290 * In this case, random access points are samples that contain both a sequence Header and an entry-point header. */
3291 uint8_t multiple_entry; /* 0: all entry-point headers in the track are identical to the entry-point header that is specified in the ephdr field.
3292 * 1: the track may contain entry-point headers that are different from the entry-point header specified in the ephdr field. */
3293 uint8_t slice_present; /* 0: frames are not coded as multiple slices.
3294 * 1: frames may be coded as multiple slices. */
3295 uint8_t bframe_present; /* 0: neither B-frames nor BI-frames are present in the track.
3296 * 1: B-frames or BI-frames may be present in the track. */
3297 uint32_t framerate; /* the rounded frame rate (frames per second) of the track
3298 * Should be set to 0xffffffff if the frame rate is not known, unspecified, or non-constant. */
3299 lsmash_vc1_header_t *seqhdr; /* a sequence header EBDU (mandatory) */
3300 lsmash_vc1_header_t *ephdr; /* an entry-point header EBDU (mandatory) */
3301 } lsmash_vc1_specific_parameters_t;
3303 int lsmash_setup_vc1_specific_parameters_from_access_unit
3305 lsmash_vc1_specific_parameters_t *param,
3306 uint8_t *data,
3307 uint32_t data_length
3310 void lsmash_destroy_vc1_headers
3312 lsmash_vc1_specific_parameters_t *param
3315 int lsmash_put_vc1_header
3317 lsmash_vc1_specific_parameters_t *param,
3318 void *hdr_data,
3319 uint32_t hdr_length
3322 uint8_t *lsmash_create_vc1_specific_info
3324 lsmash_vc1_specific_parameters_t *param,
3325 uint32_t *data_length
3328 /* Sample scaling
3329 * Without this extension, video samples are scaled into the visual presentation region to fill it. */
3330 typedef enum
3332 ISOM_SCALE_METHOD_FILL = 1,
3333 ISOM_SCALE_METHOD_HIDDEN = 2,
3334 ISOM_SCALE_METHOD_MEET = 3,
3335 ISOM_SCALE_METHOD_SLICE_X = 4,
3336 ISOM_SCALE_METHOD_SLICE_Y = 5,
3337 } lsmash_scale_method;
3339 typedef struct
3341 uint8_t constraint_flag; /* Upper 7-bits are reserved.
3342 * If this flag is set, all samples described by this sample entry shall be scaled
3343 * according to the method specified by the field 'scale_method'. */
3344 lsmash_scale_method scale_method; /* The semantics of the values for scale_method are as specified for the 'fit' attribute of regions in SMIL 1.0. */
3345 int16_t display_center_x;
3346 int16_t display_center_y;
3347 } lsmash_isom_sample_scale_t;
3349 /* QuickTime Video CODEC tools */
3350 typedef enum
3352 QT_COMPRESSION_QUALITY_LOSSLESS = 0x00000400, /* only valid for spatial compression */
3353 QT_COMPRESSION_QUALITY_MAX = 0x000003FF,
3354 QT_COMPRESSION_QUALITY_MIN = 0x00000000,
3355 QT_COMPRESSION_QUALITY_LOW = 0x00000100,
3356 QT_COMPRESSION_QUALITY_NORMAL = 0x00000200,
3357 QT_COMPRESSION_QUALITY_HIGH = 0x00000300
3358 } lsmash_qt_compression_quality;
3360 typedef struct
3362 uint32_t seed; /* Must be set to 0. */
3363 uint16_t flags; /* Must be set to 0x8000. */
3364 uint16_t size; /* the number of colors in the following color array
3365 * This is a zero-relative value;
3366 * setting this field to 0 means that there is one color in the array. */
3367 /* Color array
3368 * An array of colors. Each color is made of four unsigned 16-bit integers.
3369 * We support up to 256 elements. */
3370 struct
3372 uint16_t unused; /* Must be set to 0. */
3373 /* true color */
3374 uint16_t r; /* magnitude of red component */
3375 uint16_t g; /* magnitude of green component */
3376 uint16_t b; /* magnitude of blue component */
3377 } array[256];
3378 } lsmash_qt_color_table_t;
3380 typedef struct
3382 int16_t revision_level; /* version of the CODEC */
3383 int32_t vendor; /* whose CODEC */
3384 lsmash_qt_compression_quality temporalQuality; /* the temporal quality factor (0-1023) */
3385 lsmash_qt_compression_quality spatialQuality; /* the spatial quality factor (0-1024) */
3386 uint32_t horizontal_resolution; /* a 16.16 fixed-point number containing the horizontal resolution of the image in pixels per inch. */
3387 uint32_t vertical_resolution; /* a 16.16 fixed-point number containing the vertical resolution of the image in pixels per inch. */
3388 uint32_t dataSize; /* if known, the size of data for this descriptor */
3389 uint16_t frame_count; /* frame per sample */
3390 int16_t color_table_ID; /* color table ID
3391 * If this field is set to -1, the default color table should be used for the specified depth
3392 * If the color table ID is set to 0, a color table is contained within the sample description itself.
3393 * The color table immediately follows the color table ID field. */
3394 lsmash_qt_color_table_t color_table; /* a list of preferred colors for displaying the movie on devices that support only 256 colors */
3395 } lsmash_qt_video_common_t;
3397 typedef struct
3399 uint32_t level; /* A fixed-point 16.16 number indicating the gamma level at which the image was captured. */
3400 } lsmash_qt_gamma_t;
3402 typedef enum
3404 QT_FIELEDS_SCAN_PROGRESSIVE = 1, /* progressive scan */
3405 QT_FIELEDS_SCAN_INTERLACED = 2, /* 2:1 interlaced */
3406 } lsmash_qt_number_of_fields;
3408 /* field ordering for interlaced material */
3409 typedef enum
3411 QT_FIELD_ORDERINGS_UNKNOWN = 0,
3412 QT_FIELD_ORDERINGS_TEMPORAL_TOP_FIRST = 1,
3413 QT_FIELD_ORDERINGS_TEMPORAL_BOTTOM_FIRST = 6,
3414 QT_FIELD_ORDERINGS_SPATIAL_FIRST_LINE_EARLY = 9,
3415 QT_FIELD_ORDERINGS_SPATIAL_FIRST_LINE_LATE = 14
3416 } lsmash_qt_field_orderings;
3418 typedef struct
3420 lsmash_qt_number_of_fields fields;
3421 lsmash_qt_field_orderings detail;
3422 } lsmash_qt_field_info_t;
3424 /* the native pixel format */
3425 typedef enum
3427 QT_PIXEL_FORMAT_TYPE_1_MONOCHROME = 0x00000001, /* 1 bit indexed */
3428 QT_PIXEL_FORMAT_TYPE_2_INDEXED = 0x00000002, /* 2 bit indexed */
3429 QT_PIXEL_FORMAT_TYPE_4_INDEXED = 0x00000004, /* 4 bit indexed */
3430 QT_PIXEL_FORMAT_TYPE_8_INDEXED = 0x00000008, /* 8 bit indexed */
3431 QT_PIXEL_FORMAT_TYPE_1_INDEXED_GRAY_WHITE_IS_ZERO = 0x00000021, /* 1 bit indexed gray, white is zero */
3432 QT_PIXEL_FORMAT_TYPE_2_INDEXED_GRAY_WHITE_IS_ZERO = 0x00000022, /* 2 bit indexed gray, white is zero */
3433 QT_PIXEL_FORMAT_TYPE_4_INDEXED_GRAY_WHITE_IS_ZERO = 0x00000024, /* 4 bit indexed gray, white is zero */
3434 QT_PIXEL_FORMAT_TYPE_8_INDEXED_GRAY_WHITE_IS_ZERO = 0x00000028, /* 8 bit indexed gray, white is zero */
3435 QT_PIXEL_FORMAT_TYPE_16BE555 = 0x00000010, /* 16 bit BE RGB 555 */
3436 QT_PIXEL_FORMAT_TYPE_16LE555 = LSMASH_4CC( 'L', '5', '5', '5' ), /* 16 bit LE RGB 555 */
3437 QT_PIXEL_FORMAT_TYPE_16LE5551 = LSMASH_4CC( '5', '5', '5', '1' ), /* 16 bit LE RGB 5551 */
3438 QT_PIXEL_FORMAT_TYPE_16BE565 = LSMASH_4CC( 'B', '5', '6', '5' ), /* 16 bit BE RGB 565 */
3439 QT_PIXEL_FORMAT_TYPE_16LE565 = LSMASH_4CC( 'L', '5', '6', '5' ), /* 16 bit LE RGB 565 */
3440 QT_PIXEL_FORMAT_TYPE_24RGB = 0x00000018, /* 24 bit RGB */
3441 QT_PIXEL_FORMAT_TYPE_24BGR = LSMASH_4CC( '2', '4', 'B', 'G' ), /* 24 bit BGR */
3442 QT_PIXEL_FORMAT_TYPE_32ARGB = 0x00000020, /* 32 bit ARGB */
3443 QT_PIXEL_FORMAT_TYPE_32BGRA = LSMASH_4CC( 'B', 'G', 'R', 'A' ), /* 32 bit BGRA */
3444 QT_PIXEL_FORMAT_TYPE_32ABGR = LSMASH_4CC( 'A', 'B', 'G', 'R' ), /* 32 bit ABGR */
3445 QT_PIXEL_FORMAT_TYPE_32RGBA = LSMASH_4CC( 'R', 'G', 'B', 'A' ), /* 32 bit RGBA */
3446 QT_PIXEL_FORMAT_TYPE_64ARGB = LSMASH_4CC( 'b', '6', '4', 'a' ), /* 64 bit ARGB, 16-bit big-endian samples */
3447 QT_PIXEL_FORMAT_TYPE_48RGB = LSMASH_4CC( 'b', '4', '8', 'r' ), /* 48 bit RGB, 16-bit big-endian samples */
3448 QT_PIXEL_FORMAT_TYPE_32_ALPHA_GRAY = LSMASH_4CC( 'b', '3', '2', 'a' ), /* 32 bit AlphaGray, 16-bit big-endian samples, black is zero */
3449 QT_PIXEL_FORMAT_TYPE_16_GRAY = LSMASH_4CC( 'b', '1', '6', 'g' ), /* 16 bit Grayscale, 16-bit big-endian samples, black is zero */
3450 QT_PIXEL_FORMAT_TYPE_30RGB = LSMASH_4CC( 'R', '1', '0', 'k' ), /* 30 bit RGB, 10-bit big-endian samples, 2 unused padding bits (at least significant end) */
3451 QT_PIXEL_FORMAT_TYPE_422YpCbCr8 = LSMASH_4CC( '2', 'v', 'u', 'y' ), /* Component Y'CbCr 8-bit 4:2:2, ordered Cb Y'0 Cr Y'1 */
3452 QT_PIXEL_FORMAT_TYPE_4444YpCbCrA8 = LSMASH_4CC( 'v', '4', '0', '8' ), /* Component Y'CbCrA 8-bit 4:4:4:4, ordered Cb Y' Cr A */
3453 QT_PIXEL_FORMAT_TYPE_4444YpCbCrA8R = LSMASH_4CC( 'r', '4', '0', '8' ), /* Component Y'CbCrA 8-bit 4:4:4:4, rendering format. full range alpha, zero biased YUV, ordered A Y' Cb Cr */
3454 QT_PIXEL_FORMAT_TYPE_4444AYpCbCr8 = LSMASH_4CC( 'y', '4', '0', '8' ), /* Component Y'CbCrA 8-bit 4:4:4:4, ordered A Y' Cb Cr, full range alpha, video range Y'CbCr */
3455 QT_PIXEL_FORMAT_TYPE_4444AYpCbCr16 = LSMASH_4CC( 'y', '4', '1', '6' ), /* Component Y'CbCrA 16-bit 4:4:4:4, ordered A Y' Cb Cr, full range alpha, video range Y'CbCr, 16-bit little-endian samples */
3456 QT_PIXEL_FORMAT_TYPE_444YpCbCr8 = LSMASH_4CC( 'v', '3', '0', '8' ), /* Component Y'CbCr 8-bit 4:4:4 */
3457 QT_PIXEL_FORMAT_TYPE_422YpCbCr16 = LSMASH_4CC( 'v', '2', '1', '6' ), /* Component Y'CbCr 10,12,14,16-bit 4:2:2 */
3458 QT_PIXEL_FORMAT_TYPE_422YpCbCr10 = LSMASH_4CC( 'v', '2', '1', '0' ), /* Component Y'CbCr 10-bit 4:2:2 */
3459 QT_PIXEL_FORMAT_TYPE_444YpCbCr10 = LSMASH_4CC( 'v', '4', '1', '0' ), /* Component Y'CbCr 10-bit 4:4:4 */
3460 QT_PIXEL_FORMAT_TYPE_420YpCbCr8_PLANAR = LSMASH_4CC( 'y', '4', '2', '0' ), /* Planar Component Y'CbCr 8-bit 4:2:0 */
3461 QT_PIXEL_FORMAT_TYPE_420YpCbCr8_PLANAR_FULL_RANGE = LSMASH_4CC( 'f', '4', '2', '0' ), /* Planar Component Y'CbCr 8-bit 4:2:0, full range */
3462 QT_PIXEL_FORMAT_TYPE_422YpCbCr_4A_8_BIPLANAR = LSMASH_4CC( 'a', '2', 'v', 'y' ), /* First plane: Video-range Component Y'CbCr 8-bit 4:2:2, ordered Cb Y'0 Cr Y'1; second plane: alpha 8-bit 0-255 */
3463 QT_PIXEL_FORMAT_TYPE_420YpCbCr8_BIPLANAR_VIDEO_RANGE = LSMASH_4CC( '4', '2', '0', 'v' ), /* Bi-Planar Component Y'CbCr 8-bit 4:2:0, video-range (luma=[16,235] chroma=[16,240]) */
3464 QT_PIXEL_FORMAT_TYPE_420YpCbCr8_BIPLANAR_FULL_RANGE = LSMASH_4CC( '4', '2', '0', 'f' ), /* Bi-Planar Component Y'CbCr 8-bit 4:2:0, full-range (luma=[0,255] chroma=[1,255]) */
3465 QT_PIXEL_FORMAT_TYPE_422YpCbCr8_YUVS = LSMASH_4CC( 'y', 'u', 'v', 's' ), /* Component Y'CbCr 8-bit 4:2:2, ordered Y'0 Cb Y'1 Cr */
3466 QT_PIXEL_FORMAT_TYPE_422YpCbCr8_FULL_RANGE = LSMASH_4CC( 'y', 'u', 'v', 'f' ), /* Component Y'CbCr 8-bit 4:2:2, full range, ordered Y'0 Cb Y'1 Cr */
3468 /* Developer specific FourCCs (from dispatch 20) */
3469 QT_PIXEL_FORMAT_TYPE_SOFTVOUT_SOFTCODEC = LSMASH_4CC( 's', 'o', 'f', 't' ), /* Intermediary pixel format used by SoftVout and SoftCodec */
3470 QT_PIXEL_FORMAT_TYPE_VIEW_GRAPHICS = LSMASH_4CC( 'v', 'w', 'g', 'r' ), /* Intermediary pixel format used by View Graphics */
3471 QT_PIXEL_FORMAT_TYPE_SGI = LSMASH_4CC( 'S', 'G', 'V', 'C' ), /* Intermediary pixel format used by SGI */
3472 } lsmash_qt_pixel_format;
3474 typedef struct
3476 lsmash_qt_pixel_format pixel_format; /* the native pixel format of an image */
3477 } lsmash_qt_pixel_format_t;
3479 /* Significant Bits Extension
3480 * mandatory extension for 'v216' (Uncompressed Y'CbCr, 10, 12, 14, or 16-bit-per-component 4:2:2) */
3481 typedef struct
3483 uint8_t significantBits; /* the number of significant bits per component */
3484 } lsmash_qt_significant_bits_t;
3486 /* QuickTime Audio CODEC tools */
3487 typedef enum
3489 QT_AUDIO_COMPRESSION_ID_NOT_COMPRESSED = 0,
3490 QT_AUDIO_COMPRESSION_ID_FIXED_COMPRESSION = -1,
3491 QT_AUDIO_COMPRESSION_ID_VARIABLE_COMPRESSION = -2,
3492 QT_AUDIO_COMPRESSION_ID_TWO_TO_ONE = 1,
3493 QT_AUDIO_COMPRESSION_ID_EIGHT_TO_THREE = 2,
3494 QT_AUDIO_COMPRESSION_ID_THREE_TO_ONE = 3,
3495 QT_AUDIO_COMPRESSION_ID_SIX_TO_ONE = 4,
3496 QT_AUDIO_COMPRESSION_ID_SIX_TO_ONE_PACKET_SIZE = 8,
3497 QT_AUDIO_COMPRESSION_ID_THREE_TO_ONE_PACKET_SIZE = 16,
3498 } lsmash_qt_audio_compression_id;
3500 typedef struct
3502 int16_t revision_level; /* version of the CODEC */
3503 int32_t vendor; /* whose CODEC */
3504 lsmash_qt_audio_compression_id compression_ID;
3505 } lsmash_qt_audio_common_t;
3507 /* Audio Channel Layout
3508 * This CODEC specific extension is for
3509 * QuickTime Audio inside QuickTime file format
3510 * and
3511 * Apple Lossless Audio inside ISO Base Media file format.
3512 * When audio stream has 3 or more number of channels, this extension shall be present. */
3513 typedef enum
3515 QT_CHANNEL_LABEL_UNKNOWN = (signed)0xffffffff, /* unknown or unspecified other use */
3516 QT_CHANNEL_LABEL_UNUSED = 0, /* channel is present, but has no intended use or destination */
3517 QT_CHANNEL_LABEL_USE_COORDINATES = 100, /* channel is described by the coordinates fields. */
3519 QT_CHANNEL_LABEL_LEFT = 1,
3520 QT_CHANNEL_LABEL_RIGHT = 2,
3521 QT_CHANNEL_LABEL_CENTER = 3,
3522 QT_CHANNEL_LABEL_LFE_SCREEN = 4,
3523 QT_CHANNEL_LABEL_LEFT_SURROUND = 5, /* WAVE: "Back Left" */
3524 QT_CHANNEL_LABEL_RIGHT_SUROUND = 6, /* WAVE: "Back Right" */
3525 QT_CHANNEL_LABEL_LEFT_CENTER = 7,
3526 QT_CHANNEL_LABEL_RIGHT_CENTER = 8,
3527 QT_CHANNEL_LABEL_CENTER_SURROUND = 9, /* WAVE: "Back Center" or plain "Rear Surround" */
3528 QT_CHANNEL_LABEL_LEFT_SURROUND_DIRECT = 10, /* WAVE: "Side Left" */
3529 QT_CHANNEL_LABEL_RIGHT_SURROUND_DIRECT = 11, /* WAVE: "Side Right" */
3530 QT_CHANNEL_LABEL_TOP_CENTER_SURROUND = 12,
3531 QT_CHANNEL_LABEL_VERTICAL_HEIGHT_LEFT = 13, /* WAVE: "Top Front Left" */
3532 QT_CHANNEL_LABEL_VERTICAL_HEIGHT_CENTER = 14, /* WAVE: "Top Front Center" */
3533 QT_CHANNEL_LABEL_VERTICAL_HEIGHT_RIGHT = 15, /* WAVE: "Top Front Right" */
3535 QT_CHANNEL_LABEL_TOP_BACK_LEFT = 16,
3536 QT_CHANNEL_LABEL_TOP_BACK_CENTER = 17,
3537 QT_CHANNEL_LABEL_TOP_BACK_RIGHT = 18,
3539 QT_CHANNEL_LABEL_REAR_SURROUND_LEFT = 33,
3540 QT_CHANNEL_LABEL_REAR_SURROUND_RIGHT = 34,
3541 QT_CHANNEL_LABEL_LEFT_WIDE = 35,
3542 QT_CHANNEL_LABEL_RIGHT_WIDE = 36,
3543 QT_CHANNEL_LABEL_LFE2 = 37,
3544 QT_CHANNEL_LABEL_LEFT_TOTAL = 38, /* matrix encoded 4 channels */
3545 QT_CHANNEL_LABEL_RIGHT_TOTAL = 39, /* matrix encoded 4 channels */
3546 QT_CHANNEL_LABEL_HEARING_IMPAIRED = 40,
3547 QT_CHANNEL_LABEL_NARRATION = 41,
3548 QT_CHANNEL_LABEL_MONO = 42,
3549 QT_CHANNEL_LABEL_DIALOG_CENTRIC_MIX = 43,
3551 QT_CHANNEL_LABEL_CENTER_SURROUND_DIRECT = 44, /* back center, non diffuse */
3553 QT_CHANNEL_LABEL_HAPTIC = 45,
3555 /* first order ambisonic channels */
3556 QT_CHANNEL_LABEL_AMBISONIC_W = 200,
3557 QT_CHANNEL_LABEL_AMBISONIC_X = 201,
3558 QT_CHANNEL_LABEL_AMBISONIC_Y = 202,
3559 QT_CHANNEL_LABEL_AMBISONIC_Z = 203,
3561 /* Mid/Side Recording */
3562 QT_CHANNEL_LABEL_MS_MID = 204,
3563 QT_CHANNEL_LABEL_MS_SIDE = 205,
3565 /* X-Y Recording */
3566 QT_CHANNEL_LABEL_XY_X = 206,
3567 QT_CHANNEL_LABEL_XY_Y = 207,
3569 /* other */
3570 QT_CHANNEL_LABEL_HEADPHONES_LEFT = 301,
3571 QT_CHANNEL_LABEL_HEADPHONES_RIGHT = 302,
3572 QT_CHANNEL_LABEL_CLICK_TRACK = 304,
3573 QT_CHANNEL_LABEL_FOREIGN_LANGUAGE = 305,
3575 /* generic discrete channel */
3576 QT_CHANNEL_LABEL_DISCRETE = 400,
3578 /* numbered discrete channel */
3579 QT_CHANNEL_LABEL_DISCRETE_0 = (1<<16),
3580 QT_CHANNEL_LABEL_DISCRETE_1 = (1<<16) | 1,
3581 QT_CHANNEL_LABEL_DISCRETE_2 = (1<<16) | 2,
3582 QT_CHANNEL_LABEL_DISCRETE_3 = (1<<16) | 3,
3583 QT_CHANNEL_LABEL_DISCRETE_4 = (1<<16) | 4,
3584 QT_CHANNEL_LABEL_DISCRETE_5 = (1<<16) | 5,
3585 QT_CHANNEL_LABEL_DISCRETE_6 = (1<<16) | 6,
3586 QT_CHANNEL_LABEL_DISCRETE_7 = (1<<16) | 7,
3587 QT_CHANNEL_LABEL_DISCRETE_8 = (1<<16) | 8,
3588 QT_CHANNEL_LABEL_DISCRETE_9 = (1<<16) | 9,
3589 QT_CHANNEL_LABEL_DISCRETE_10 = (1<<16) | 10,
3590 QT_CHANNEL_LABEL_DISCRETE_11 = (1<<16) | 11,
3591 QT_CHANNEL_LABEL_DISCRETE_12 = (1<<16) | 12,
3592 QT_CHANNEL_LABEL_DISCRETE_13 = (1<<16) | 13,
3593 QT_CHANNEL_LABEL_DISCRETE_14 = (1<<16) | 14,
3594 QT_CHANNEL_LABEL_DISCRETE_15 = (1<<16) | 15,
3595 QT_CHANNEL_LABEL_DISCRETE_65535 = (1<<16) | 65535,
3596 } lsmash_channel_label;
3598 typedef enum
3600 QT_CHANNEL_BIT_LEFT = 1,
3601 QT_CHANNEL_BIT_RIGHT = 1<<1,
3602 QT_CHANNEL_BIT_CENTER = 1<<2,
3603 QT_CHANNEL_BIT_LFE_SCREEN = 1<<3,
3604 QT_CHANNEL_BIT_LEFT_SURROUND = 1<<4, /* WAVE: "Back Left" */
3605 QT_CHANNEL_BIT_RIGHT_SURROUND = 1<<5, /* WAVE: "Back Right" */
3606 QT_CHANNEL_BIT_LEFT_CENTER = 1<<6,
3607 QT_CHANNEL_BIT_RIGHT_CENTER = 1<<7,
3608 QT_CHANNEL_BIT_CENTER_SURROUND = 1<<8, /* WAVE: "Back Center" */
3609 QT_CHANNEL_BIT_LEFT_SURROUND_DIRECT = 1<<9, /* WAVE: "Side Left" */
3610 QT_CHANNEL_BIT_RIGHT_SURROUND_DIRECT = 1<<10, /* WAVE: "Side Right" */
3611 QT_CHANNEL_BIT_TOP_CENTER_SURROUND = 1<<11,
3612 QT_CHANNEL_BIT_VERTICAL_HEIGHT_LEFT = 1<<12, /* WAVE: "Top Front Left" */
3613 QT_CHANNEL_BIT_VERTICAL_HEIGHT_CENTER = 1<<13, /* WAVE: "Top Front Center" */
3614 QT_CHANNEL_BIT_VERTICAL_HEIGHT_RIGHT = 1<<14, /* WAVE: "Top Front Right" */
3615 QT_CHANNEL_BIT_TOP_BACK_LEFT = 1<<15,
3616 QT_CHANNEL_BIT_TOP_BACK_CENTER = 1<<16,
3617 QT_CHANNEL_BIT_TOP_BACK_RIGHT = 1<<17,
3618 QT_CHANNEL_BIT_FULL = 0x3ffff,
3619 } lsmash_channel_bitmap;
3621 typedef enum
3623 QT_CHANNEL_FLAGS_ALL_OFF = 0,
3624 QT_CHANNEL_FLAGS_RECTANGULAR_COORDINATES = 1,
3625 QT_CHANNEL_FLAGS_SPHERICAL_COORDINATES = 1<<1,
3626 QT_CHANNEL_FLAGS_METERS = 1<<2,
3627 } lsmash_channel_flags;
3629 typedef enum
3631 /* indices for accessing the coordinates array in Channel Descriptions */
3632 /* for rectangulare coordinates */
3633 QT_CHANNEL_COORDINATES_LEFT_RIGHT = 0, /* Negative is left and positive is right. */
3634 QT_CHANNEL_COORDINATES_BACK_FRONT = 1, /* Negative is back and positive is front. */
3635 QT_CHANNEL_COORDINATES_DOWN_UP = 2, /* Negative is below ground level, 0 is ground level, and positive is above ground level. */
3636 /* for spherical coordinates */
3637 QT_CHANNEL_COORDINATES_AZIMUTH = 0, /* 0 is front center, positive is right, negative is left. This is measured in degrees. */
3638 QT_CHANNEL_COORDINATES_ELEVATION = 1, /* +90 is zenith, 0 is horizontal, -90 is nadir. This is measured in degrees. */
3639 QT_CHANNEL_COORDINATES_DISTANCE = 2, /* The units are described by flags. */
3640 } lsmash_channel_coordinates_index;
3642 typedef enum
3644 /* channel abbreviations:
3645 * L - left
3646 * R - right
3647 * C - center
3648 * Ls - left surround
3649 * Rs - right surround
3650 * Cs - center surround
3651 * Rls - rear left surround
3652 * Rrs - rear right surround
3653 * Lw - left wide
3654 * Rw - right wide
3655 * Lsd - left surround direct
3656 * Rsd - right surround direct
3657 * Lc - left center
3658 * Rc - right center
3659 * Ts - top surround
3660 * Vhl - vertical height left
3661 * Vhc - vertical height center
3662 * Vhr - vertical height right
3663 * Lt - left matrix total. for matrix encoded stereo.
3664 * Rt - right matrix total. for matrix encoded stereo. */
3666 /* General layouts */
3667 QT_CHANNEL_LAYOUT_USE_CHANNEL_DESCRIPTIONS = 0, /* use the array of Channel Descriptions to define the mapping. */
3668 QT_CHANNEL_LAYOUT_USE_CHANNEL_BITMAP = 1<<16, /* use the bitmap to define the mapping. */
3670 QT_CHANNEL_LAYOUT_MONO = (100<<16) | 1, /* a standard mono stream */
3671 QT_CHANNEL_LAYOUT_STEREO = (101<<16) | 2, /* a standard stereo stream (L R) - implied playback */
3672 QT_CHANNEL_LAYOUT_STEREO_HEADPHONES = (102<<16) | 2, /* a standard stereo stream (L R) - implied headphone playback */
3673 QT_CHANNEL_LAYOUT_MATRIX_STEREO = (103<<16) | 2, /* a matrix encoded stereo stream (Lt, Rt) */
3674 QT_CHANNEL_LAYOUT_MID_SIDE = (104<<16) | 2, /* mid/side recording */
3675 QT_CHANNEL_LAYOUT_XY = (105<<16) | 2, /* coincident mic pair (often 2 figure 8's) */
3676 QT_CHANNEL_LAYOUT_BINAURAL = (106<<16) | 2, /* binaural stereo (left, right) */
3677 QT_CHANNEL_LAYOUT_AMBISONIC_B_FORMAT = (107<<16) | 4, /* W, X, Y, Z */
3679 QT_CHANNEL_LAYOUT_QUADRAPHONIC = (108<<16) | 4, /* front left, front right, back left, back right */
3681 QT_CHANNEL_LAYOUT_PENTAGONAL = (109<<16) | 5, /* left, right, rear left, rear right, center */
3683 QT_CHANNEL_LAYOUT_HEXAGONAL = (110<<16) | 6, /* left, right, rear left, rear right, center, rear */
3685 QT_CHANNEL_LAYOUT_OCTAGONAL = (111<<16) | 8, /* front left, front right, rear left, rear right,
3686 * front center, rear center, side left, side right */
3688 QT_CHANNEL_LAYOUT_CUBE = (112<<16) | 8, /* left, right, rear left, rear right,
3689 * top left, top right, top rear left, top rear right */
3691 /* MPEG defined layouts */
3692 QT_CHANNEL_LAYOUT_MPEG_1_0 = QT_CHANNEL_LAYOUT_MONO, /* C */
3693 QT_CHANNEL_LAYOUT_MPEG_2_0 = QT_CHANNEL_LAYOUT_STEREO, /* L R */
3694 QT_CHANNEL_LAYOUT_MPEG_3_0_A = (113<<16) | 3, /* L R C */
3695 QT_CHANNEL_LAYOUT_MPEG_3_0_B = (114<<16) | 3, /* C L R */
3696 QT_CHANNEL_LAYOUT_MPEG_4_0_A = (115<<16) | 4, /* L R C Cs */
3697 QT_CHANNEL_LAYOUT_MPEG_4_0_B = (116<<16) | 4, /* C L R Cs */
3698 QT_CHANNEL_LAYOUT_MPEG_5_0_A = (117<<16) | 5, /* L R C Ls Rs */
3699 QT_CHANNEL_LAYOUT_MPEG_5_0_B = (118<<16) | 5, /* L R Ls Rs C */
3700 QT_CHANNEL_LAYOUT_MPEG_5_0_C = (119<<16) | 5, /* L C R Ls Rs */
3701 QT_CHANNEL_LAYOUT_MPEG_5_0_D = (120<<16) | 5, /* C L R Ls Rs */
3702 QT_CHANNEL_LAYOUT_MPEG_5_1_A = (121<<16) | 6, /* L R C LFE Ls Rs */
3703 QT_CHANNEL_LAYOUT_MPEG_5_1_B = (122<<16) | 6, /* L R Ls Rs C LFE */
3704 QT_CHANNEL_LAYOUT_MPEG_5_1_C = (123<<16) | 6, /* L C R Ls Rs LFE */
3705 QT_CHANNEL_LAYOUT_MPEG_5_1_D = (124<<16) | 6, /* C L R Ls Rs LFE */
3706 QT_CHANNEL_LAYOUT_MPEG_6_1_A = (125<<16) | 7, /* L R C LFE Ls Rs Cs */
3707 QT_CHANNEL_LAYOUT_MPEG_7_1_A = (126<<16) | 8, /* L R C LFE Ls Rs Lc Rc */
3708 QT_CHANNEL_LAYOUT_MPEG_7_1_B = (127<<16) | 8, /* C Lc Rc L R Ls Rs LFE (doc: IS-13818-7 MPEG2-AAC Table 3.1) */
3709 QT_CHANNEL_LAYOUT_MPEG_7_1_C = (128<<16) | 8, /* L R C LFE Ls Rs Rls Rrs */
3710 QT_CHANNEL_LAYOUT_EMAGIC_DEFAULT_7_1 = (129<<16) | 8, /* L R Ls Rs C LFE Lc Rc */
3711 QT_CHANNEL_LAYOUT_SMPTE_DTV = (130<<16) | 8, /* L R C LFE Ls Rs Lt Rt */
3713 /* ITU defined layouts */
3714 QT_CHANNEL_LAYOUT_ITU_1_0 = QT_CHANNEL_LAYOUT_MONO, /* C */
3715 QT_CHANNEL_LAYOUT_ITU_2_0 = QT_CHANNEL_LAYOUT_STEREO, /* L R */
3717 QT_CHANNEL_LAYOUT_ITU_2_1 = (131<<16) | 3, /* L R Cs */
3718 QT_CHANNEL_LAYOUT_ITU_2_2 = (132<<16) | 4, /* L R Ls Rs */
3719 QT_CHANNEL_LAYOUT_ITU_3_0 = QT_CHANNEL_LAYOUT_MPEG_3_0_A, /* L R C */
3720 QT_CHANNEL_LAYOUT_ITU_3_1 = QT_CHANNEL_LAYOUT_MPEG_4_0_A, /* L R C Cs */
3722 QT_CHANNEL_LAYOUT_ITU_3_2 = QT_CHANNEL_LAYOUT_MPEG_5_0_A, /* L R C Ls Rs */
3723 QT_CHANNEL_LAYOUT_ITU_3_2_1 = QT_CHANNEL_LAYOUT_MPEG_5_1_A, /* L R C LFE Ls Rs */
3724 QT_CHANNEL_LAYOUT_ITU_3_4_1 = QT_CHANNEL_LAYOUT_MPEG_7_1_C, /* L R C LFE Ls Rs Rls Rrs */
3726 /* DVD defined layouts */
3727 QT_CHANNEL_LAYOUT_DVD_0 = QT_CHANNEL_LAYOUT_MONO, /* C (mono) */
3728 QT_CHANNEL_LAYOUT_DVD_1 = QT_CHANNEL_LAYOUT_STEREO, /* L R */
3729 QT_CHANNEL_LAYOUT_DVD_2 = QT_CHANNEL_LAYOUT_ITU_2_1, /* L R Cs */
3730 QT_CHANNEL_LAYOUT_DVD_3 = QT_CHANNEL_LAYOUT_ITU_2_2, /* L R Ls Rs */
3731 QT_CHANNEL_LAYOUT_DVD_4 = (133<<16) | 3, /* L R LFE */
3732 QT_CHANNEL_LAYOUT_DVD_5 = (134<<16) | 4, /* L R LFE Cs */
3733 QT_CHANNEL_LAYOUT_DVD_6 = (135<<16) | 5, /* L R LFE Ls Rs */
3734 QT_CHANNEL_LAYOUT_DVD_7 = QT_CHANNEL_LAYOUT_MPEG_3_0_A, /* L R C */
3735 QT_CHANNEL_LAYOUT_DVD_8 = QT_CHANNEL_LAYOUT_MPEG_4_0_A, /* L R C Cs */
3736 QT_CHANNEL_LAYOUT_DVD_9 = QT_CHANNEL_LAYOUT_MPEG_5_0_A, /* L R C Ls Rs */
3737 QT_CHANNEL_LAYOUT_DVD_10 = (136<<16) | 4, /* L R C LFE */
3738 QT_CHANNEL_LAYOUT_DVD_11 = (137<<16) | 5, /* L R C LFE Cs */
3739 QT_CHANNEL_LAYOUT_DVD_12 = QT_CHANNEL_LAYOUT_MPEG_5_1_A, /* L R C LFE Ls Rs */
3740 /* 13 through 17 are duplicates of 8 through 12. */
3741 QT_CHANNEL_LAYOUT_DVD_13 = QT_CHANNEL_LAYOUT_DVD_8, /* L R C Cs */
3742 QT_CHANNEL_LAYOUT_DVD_14 = QT_CHANNEL_LAYOUT_DVD_9, /* L R C Ls Rs */
3743 QT_CHANNEL_LAYOUT_DVD_15 = QT_CHANNEL_LAYOUT_DVD_10, /* L R C LFE */
3744 QT_CHANNEL_LAYOUT_DVD_16 = QT_CHANNEL_LAYOUT_DVD_11, /* L R C LFE Cs */
3745 QT_CHANNEL_LAYOUT_DVD_17 = QT_CHANNEL_LAYOUT_DVD_12, /* L R C LFE Ls Rs */
3746 QT_CHANNEL_LAYOUT_DVD_18 = (138<<16) | 5, /* L R Ls Rs LFE */
3747 QT_CHANNEL_LAYOUT_DVD_19 = QT_CHANNEL_LAYOUT_MPEG_5_0_B, /* L R Ls Rs C */
3748 QT_CHANNEL_LAYOUT_DVD_20 = QT_CHANNEL_LAYOUT_MPEG_5_1_B, /* L R Ls Rs C LFE */
3750 /* These are the symmetrical layouts. */
3751 QT_CHANNEL_LAYOUT_AUDIO_UNIT_4 = QT_CHANNEL_LAYOUT_QUADRAPHONIC,
3752 QT_CHANNEL_LAYOUT_AUDIO_UNIT_5 = QT_CHANNEL_LAYOUT_PENTAGONAL,
3753 QT_CHANNEL_LAYOUT_AUDIO_UNIT_6 = QT_CHANNEL_LAYOUT_HEXAGONAL,
3754 QT_CHANNEL_LAYOUT_AUDIO_UNIT_8 = QT_CHANNEL_LAYOUT_OCTAGONAL,
3755 /* These are the surround-based layouts. */
3756 QT_CHANNEL_LAYOUT_AUDIO_UNIT_5_0 = QT_CHANNEL_LAYOUT_MPEG_5_0_B, /* L R Ls Rs C */
3757 QT_CHANNEL_LAYOUT_AUDIO_UNIT_6_0 = (139<<16) | 6, /* L R Ls Rs C Cs */
3758 QT_CHANNEL_LAYOUT_AUDIO_UNIT_7_0 = (140<<16) | 7, /* L R Ls Rs C Rls Rrs */
3759 QT_CHANNEL_LAYOUT_AUDIO_UNIT_7_0_FRONT = (148<<16) | 7, /* L R Ls Rs C Lc Rc */
3760 QT_CHANNEL_LAYOUT_AUDIO_UNIT_5_1 = QT_CHANNEL_LAYOUT_MPEG_5_1_A, /* L R C LFE Ls Rs */
3761 QT_CHANNEL_LAYOUT_AUDIO_UNIT_6_1 = QT_CHANNEL_LAYOUT_MPEG_6_1_A, /* L R C LFE Ls Rs Cs */
3762 QT_CHANNEL_LAYOUT_AUDIO_UNIT_7_1 = QT_CHANNEL_LAYOUT_MPEG_7_1_C, /* L R C LFE Ls Rs Rls Rrs */
3763 QT_CHANNEL_LAYOUT_AUDIO_UNIT_7_1_FRONT = QT_CHANNEL_LAYOUT_MPEG_7_1_A, /* L R C LFE Ls Rs Lc Rc */
3765 QT_CHANNEL_LAYOUT_AAC_3_0 = QT_CHANNEL_LAYOUT_MPEG_3_0_B, /* C L R */
3766 QT_CHANNEL_LAYOUT_AAC_QUADRAPHONIC = QT_CHANNEL_LAYOUT_QUADRAPHONIC, /* L R Ls Rs */
3767 QT_CHANNEL_LAYOUT_AAC_4_0 = QT_CHANNEL_LAYOUT_MPEG_4_0_B, /* C L R Cs */
3768 QT_CHANNEL_LAYOUT_AAC_5_0 = QT_CHANNEL_LAYOUT_MPEG_5_0_D, /* C L R Ls Rs */
3769 QT_CHANNEL_LAYOUT_AAC_5_1 = QT_CHANNEL_LAYOUT_MPEG_5_1_D, /* C L R Ls Rs LFE */
3770 QT_CHANNEL_LAYOUT_AAC_6_0 = (141<<16) | 6, /* C L R Ls Rs Cs */
3771 QT_CHANNEL_LAYOUT_AAC_6_1 = (142<<16) | 7, /* C L R Ls Rs Cs LFE */
3772 QT_CHANNEL_LAYOUT_AAC_7_0 = (143<<16) | 7, /* C L R Ls Rs Rls Rrs */
3773 QT_CHANNEL_LAYOUT_AAC_7_1 = QT_CHANNEL_LAYOUT_MPEG_7_1_B, /* C Lc Rc L R Ls Rs LFE */
3774 QT_CHANNEL_LAYOUT_AAC_OCTAGONAL = (144<<16) | 8, /* C L R Ls Rs Rls Rrs Cs */
3776 QT_CHANNEL_LAYOUT_TMH_10_2_STD = (145<<16) | 16, /* L R C Vhc Lsd Rsd Ls Rs Vhl Vhr Lw Rw Csd Cs LFE1 LFE2 */
3777 QT_CHANNEL_LAYOUT_TMH_10_2_FULL = (146<<16) | 21, /* TMH_10_2_std plus: Lc Rc HI VI Haptic */
3779 QT_CHANNEL_LAYOUT_AC3_1_0_1 = (149<<16) | 2, /* C LFE */
3780 QT_CHANNEL_LAYOUT_AC3_3_0 = (150<<16) | 3, /* L C R */
3781 QT_CHANNEL_LAYOUT_AC3_3_1 = (151<<16) | 4, /* L C R Cs */
3782 QT_CHANNEL_LAYOUT_AC3_3_0_1 = (152<<16) | 4, /* L C R LFE */
3783 QT_CHANNEL_LAYOUT_AC3_2_1_1 = (153<<16) | 4, /* L R Cs LFE */
3784 QT_CHANNEL_LAYOUT_AC3_3_1_1 = (154<<16) | 5, /* L C R Cs LFE */
3786 QT_CHANNEL_LAYOUT_EAC_6_0_A = (155<<16) | 6, /* L C R Ls Rs Cs */
3787 QT_CHANNEL_LAYOUT_EAC_7_0_A = (156<<16) | 7, /* L C R Ls Rs Rls Rrs */
3789 QT_CHANNEL_LAYOUT_EAC3_6_1_A = (157<<16) | 7, /* L C R Ls Rs LFE Cs */
3790 QT_CHANNEL_LAYOUT_EAC3_6_1_B = (158<<16) | 7, /* L C R Ls Rs LFE Ts */
3791 QT_CHANNEL_LAYOUT_EAC3_6_1_C = (159<<16) | 7, /* L C R Ls Rs LFE Vhc */
3792 QT_CHANNEL_LAYOUT_EAC3_7_1_A = (160<<16) | 8, /* L C R Ls Rs LFE Rls Rrs */
3793 QT_CHANNEL_LAYOUT_EAC3_7_1_B = (161<<16) | 8, /* L C R Ls Rs LFE Lc Rc */
3794 QT_CHANNEL_LAYOUT_EAC3_7_1_C = (162<<16) | 8, /* L C R Ls Rs LFE Lsd Rsd */
3795 QT_CHANNEL_LAYOUT_EAC3_7_1_D = (163<<16) | 8, /* L C R Ls Rs LFE Lw Rw */
3796 QT_CHANNEL_LAYOUT_EAC3_7_1_E = (164<<16) | 8, /* L C R Ls Rs LFE Vhl Vhr */
3798 QT_CHANNEL_LAYOUT_EAC3_7_1_F = (165<<16) | 8, /* L C R Ls Rs LFE Cs Ts */
3799 QT_CHANNEL_LAYOUT_EAC3_7_1_G = (166<<16) | 8, /* L C R Ls Rs LFE Cs Vhc */
3800 QT_CHANNEL_LAYOUT_EAC3_7_1_H = (167<<16) | 8, /* L C R Ls Rs LFE Ts Vhc */
3802 QT_CHANNEL_LAYOUT_DTS_3_1 = (168<<16) | 4, /* C L R LFE */
3803 QT_CHANNEL_LAYOUT_DTS_4_1 = (169<<16) | 5, /* C L R Cs LFE */
3804 QT_CHANNEL_LAYOUT_DTS_6_0_A = (170<<16) | 6, /* Lc Rc L R Ls Rs */
3805 QT_CHANNEL_LAYOUT_DTS_6_0_B = (171<<16) | 6, /* C L R Rls Rrs Ts */
3806 QT_CHANNEL_LAYOUT_DTS_6_0_C = (172<<16) | 6, /* C Cs L R Rls Rrs */
3807 QT_CHANNEL_LAYOUT_DTS_6_1_A = (173<<16) | 7, /* Lc Rc L R Ls Rs LFE */
3808 QT_CHANNEL_LAYOUT_DTS_6_1_B = (174<<16) | 7, /* C L R Rls Rrs Ts LFE */
3809 QT_CHANNEL_LAYOUT_DTS_6_1_C = (175<<16) | 7, /* C Cs L R Rls Rrs LFE */
3810 QT_CHANNEL_LAYOUT_DTS_7_0 = (176<<16) | 7, /* Lc C Rc L R Ls Rs */
3811 QT_CHANNEL_LAYOUT_DTS_7_1 = (177<<16) | 8, /* Lc C Rc L R Ls Rs LFE */
3812 QT_CHANNEL_LAYOUT_DTS_8_0_A = (178<<16) | 8, /* Lc Rc L R Ls Rs Rls Rrs */
3813 QT_CHANNEL_LAYOUT_DTS_8_0_B = (179<<16) | 8, /* Lc C Rc L R Ls Cs Rs */
3814 QT_CHANNEL_LAYOUT_DTS_8_1_A = (180<<16) | 9, /* Lc Rc L R Ls Rs Rls Rrs LFE */
3815 QT_CHANNEL_LAYOUT_DTS_8_1_B = (181<<16) | 9, /* Lc C Rc L R Ls Cs Rs LFE */
3816 QT_CHANNEL_LAYOUT_DTS_6_1_D = (182<<16) | 7, /* C L R Ls Rs LFE Cs */
3818 QT_CHANNEL_LAYOUT_ALAC_MONO = QT_CHANNEL_LAYOUT_MONO, /* C */
3819 QT_CHANNEL_LAYOUT_ALAC_STEREO = QT_CHANNEL_LAYOUT_STEREO, /* L R */
3820 QT_CHANNEL_LAYOUT_ALAC_3_0 = QT_CHANNEL_LAYOUT_MPEG_3_0_B, /* C L R */
3821 QT_CHANNEL_LAYOUT_ALAC_4_0 = QT_CHANNEL_LAYOUT_MPEG_4_0_B, /* C L R Cs */
3822 QT_CHANNEL_LAYOUT_ALAC_5_0 = QT_CHANNEL_LAYOUT_MPEG_5_0_D, /* C L R Ls Rs */
3823 QT_CHANNEL_LAYOUT_ALAC_5_1 = QT_CHANNEL_LAYOUT_MPEG_5_1_D, /* C L R Ls Rs LFE */
3824 QT_CHANNEL_LAYOUT_ALAC_6_1 = QT_CHANNEL_LAYOUT_AAC_6_1, /* C L R Ls Rs Cs LFE */
3825 QT_CHANNEL_LAYOUT_ALAC_7_1 = QT_CHANNEL_LAYOUT_MPEG_7_1_B, /* C Lc Rc L R Ls Rs LFE */
3827 QT_CHANNEL_LAYOUT_DISCRETE_IN_ORDER = 147<<16, /* needs to be ORed with the actual number of channels */
3828 QT_CHANNEL_LAYOUT_UNKNOWN = (signed)0xffff0000, /* needs to be ORed with the actual number of channels */
3829 } lsmash_channel_layout_tag;
3831 typedef struct
3833 lsmash_channel_layout_tag channelLayoutTag; /* channel layout */
3834 lsmash_channel_bitmap channelBitmap; /* Only available when layout_tag is set to QT_CHANNEL_LAYOUT_USE_CHANNEL_BITMAP. */
3835 } lsmash_qt_audio_channel_layout_t;
3837 /* QuickTime Audio Format Specific Flags
3838 * Some values are ignored i.e. as if treated as unspecified when you specify certain CODECs.
3839 * For instance, you specify QT_CODEC_TYPE_SOWT_AUDIO, then all these values are ignored.
3840 * These values are basically used for QT_CODEC_TYPE_LPCM_AUDIO.
3841 * The endiannes value can be used for QT_CODEC_TYPE_FL32_AUDIO, QT_CODEC_TYPE_FL64_AUDIO, QT_CODEC_TYPE_IN24_AUDIO and QT_CODEC_TYPE_IN32_AUDIO. */
3842 typedef enum
3844 QT_AUDIO_FORMAT_FLAG_FLOAT = 1, /* Set for floating point, clear for integer. */
3845 QT_AUDIO_FORMAT_FLAG_BIG_ENDIAN = 1<<1, /* Set for big endian, clear for little endian. */
3846 QT_AUDIO_FORMAT_FLAG_SIGNED_INTEGER = 1<<2, /* Set for signed integer, clear for unsigned integer.
3847 * This is only valid if QT_AUDIO_FORMAT_FLAG_FLOAT is clear. */
3848 QT_AUDIO_FORMAT_FLAG_PACKED = 1<<3, /* Set if the sample bits occupy the entire available bits for the channel,
3849 * clear if they are high or low aligned within the channel. */
3850 QT_AUDIO_FORMAT_FLAG_ALIGNED_HIGH = 1<<4, /* Set if the sample bits are placed into the high bits of the channel, clear for low bit placement.
3851 * This is only valid if QT_AUDIO_FORMAT_FLAG_PACKED is clear. */
3852 QT_AUDIO_FORMAT_FLAG_NON_INTERLEAVED = 1<<5, /* Set if the samples for each channel are located contiguously and the channels are layed out end to end,
3853 * clear if the samples for each frame are layed out contiguously and the frames layed out end to end. */
3854 QT_AUDIO_FORMAT_FLAG_NON_MIXABLE = 1<<6, /* Set to indicate when a format is non-mixable.
3855 * Note that this flag is only used when interacting with the HAL's stream format information.
3856 * It is not a valid flag for any other uses. */
3857 QT_AUDIO_FORMAT_FLAG_ALL_CLEAR = 1<<31, /* Set if all the flags would be clear in order to preserve 0 as the wild card value. */
3859 QT_LPCM_FORMAT_FLAG_FLOAT = QT_AUDIO_FORMAT_FLAG_FLOAT,
3860 QT_LPCM_FORMAT_FLAG_BIG_ENDIAN = QT_AUDIO_FORMAT_FLAG_BIG_ENDIAN,
3861 QT_LPCM_FORMAT_FLAG_SIGNED_INTEGER = QT_AUDIO_FORMAT_FLAG_SIGNED_INTEGER,
3862 QT_LPCM_FORMAT_FLAG_PACKED = QT_AUDIO_FORMAT_FLAG_PACKED,
3863 QT_LPCM_FORMAT_FLAG_ALIGNED_HIGH = QT_AUDIO_FORMAT_FLAG_ALIGNED_HIGH,
3864 QT_LPCM_FORMAT_FLAG_NON_INTERLEAVED = QT_AUDIO_FORMAT_FLAG_NON_INTERLEAVED,
3865 QT_LPCM_FORMAT_FLAG_NON_MIXABLE = QT_AUDIO_FORMAT_FLAG_NON_MIXABLE,
3866 QT_LPCM_FORMAT_FLAG_ALL_CLEAR = QT_AUDIO_FORMAT_FLAG_ALL_CLEAR,
3868 /* These flags are set for Apple Lossless data that was sourced from N bit native endian signed integer data. */
3869 QT_ALAC_FORMAT_FLAG_16BIT_SOURCE_DATA = 1,
3870 QT_ALAC_FORMAT_FLAG_20BIT_SOURCE_DATA = 2,
3871 QT_ALAC_FORMAT_FLAG_24BIT_SOURCE_DATA = 3,
3872 QT_ALAC_FORMAT_FLAG_32BIT_SOURCE_DATA = 4,
3873 } lsmash_qt_audio_format_specific_flag;
3875 typedef struct
3877 lsmash_qt_audio_format_specific_flag format_flags;
3878 } lsmash_qt_audio_format_specific_flags_t;
3880 /* Global Header
3881 * Ut Video inside QuickTime file format requires this extension for storing CODEC specific information. */
3882 typedef struct
3884 uint32_t header_size;
3885 uint8_t *header_data;
3886 } lsmash_codec_global_header_t;
3888 /****************************************************************************
3889 * iTunes Metadata
3890 ****************************************************************************/
3891 typedef enum
3893 /* UTF String type */
3894 ITUNES_METADATA_ITEM_ALBUM_NAME = LSMASH_4CC( 0xA9, 'a', 'l', 'b' ), /* Album Name */
3895 ITUNES_METADATA_ITEM_ARTIST = LSMASH_4CC( 0xA9, 'A', 'R', 'T' ), /* Artist */
3896 ITUNES_METADATA_ITEM_USER_COMMENT = LSMASH_4CC( 0xA9, 'c', 'm', 't' ), /* User Comment */
3897 ITUNES_METADATA_ITEM_RELEASE_DATE = LSMASH_4CC( 0xA9, 'd', 'a', 'y' ), /* YYYY-MM-DD format string (may be incomplete, i.e. only year) */
3898 ITUNES_METADATA_ITEM_ENCODED_BY = LSMASH_4CC( 0xA9, 'e', 'n', 'c' ), /* Person or company that encoded the recording */
3899 ITUNES_METADATA_ITEM_USER_GENRE = LSMASH_4CC( 0xA9, 'g', 'e', 'n' ), /* User Genre user-specified string */
3900 ITUNES_METADATA_ITEM_GROUPING = LSMASH_4CC( 0xA9, 'g', 'r', 'p' ), /* Grouping */
3901 ITUNES_METADATA_ITEM_LYRICS = LSMASH_4CC( 0xA9, 'l', 'y', 'r' ), /* Lyrics */
3902 ITUNES_METADATA_ITEM_TITLE = LSMASH_4CC( 0xA9, 'n', 'a', 'm' ), /* Title / Song Name */
3903 ITUNES_METADATA_ITEM_TRACK_SUBTITLE = LSMASH_4CC( 0xA9, 's', 't', '3' ), /* Track Sub-Title */
3904 ITUNES_METADATA_ITEM_ENCODING_TOOL = LSMASH_4CC( 0xA9, 't', 'o', 'o' ), /* Software which encoded the recording */
3905 ITUNES_METADATA_ITEM_COMPOSER = LSMASH_4CC( 0xA9, 'w', 'r', 't' ), /* Composer */
3906 ITUNES_METADATA_ITEM_ALBUM_ARTIST = LSMASH_4CC( 'a', 'A', 'R', 'T' ), /* Artist for the whole album (if different than the individual tracks) */
3907 ITUNES_METADATA_ITEM_PODCAST_CATEGORY = LSMASH_4CC( 'c', 'a', 't', 'g' ), /* Podcast Category */
3908 ITUNES_METADATA_ITEM_COPYRIGHT = LSMASH_4CC( 'c', 'p', 'r', 't' ), /* Copyright */
3909 ITUNES_METADATA_ITEM_DESCRIPTION = LSMASH_4CC( 'd', 'e', 's', 'c' ), /* Description (limited to 255 bytes) */
3910 ITUNES_METADATA_ITEM_GROUPING_DRAFT = LSMASH_4CC( 'g', 'r', 'u', 'p' ), /* Grouping
3911 * Note: This identifier is defined in
3912 * iTunes Metadata Format Specification (Preliminary draft),
3913 * but not used by iTunes actually it seems.
3914 * We recommend you use ITUNES_METADATA_ITEM_GROUPING instead of this. */
3915 ITUNES_METADATA_ITEM_PODCAST_KEYWORD = LSMASH_4CC( 'k', 'e', 'y', 'w' ), /* Podcast Keywords */
3916 ITUNES_METADATA_ITEM_LONG_DESCRIPTION = LSMASH_4CC( 'l', 'd', 'e', 's' ), /* Long Description */
3917 ITUNES_METADATA_ITEM_PURCHASE_DATE = LSMASH_4CC( 'p', 'u', 'r', 'd' ), /* Purchase Date */
3918 ITUNES_METADATA_ITEM_TV_EPISODE_ID = LSMASH_4CC( 't', 'v', 'e', 'n' ), /* TV Episode ID */
3919 ITUNES_METADATA_ITEM_TV_NETWORK = LSMASH_4CC( 't', 'v', 'n', 'n' ), /* TV Network Name */
3920 ITUNES_METADATA_ITEM_TV_SHOW_NAME = LSMASH_4CC( 't', 'v', 's', 'h' ), /* TV Show Name */
3921 ITUNES_METADATA_ITEM_ITUNES_PURCHASE_ACCOUNT_ID = LSMASH_4CC( 'a', 'p', 'I', 'D' ), /* iTunes Account Used for Purchase */
3922 ITUNES_METADATA_ITEM_ITUNES_SORT_ALBUM = LSMASH_4CC( 's', 'o', 'a', 'l' ), /* Sort Album */
3923 ITUNES_METADATA_ITEM_ITUNES_SORT_ARTIST = LSMASH_4CC( 's', 'o', 'a', 'r' ), /* Sort Artist */
3924 ITUNES_METADATA_ITEM_ITUNES_SORT_ALBUM_ARTIST = LSMASH_4CC( 's', 'o', 'a', 'a' ), /* Sort Album Artist */
3925 ITUNES_METADATA_ITEM_ITUNES_SORT_COMPOSER = LSMASH_4CC( 's', 'o', 'c', 'o' ), /* Sort Composer */
3926 ITUNES_METADATA_ITEM_ITUNES_SORT_NAME = LSMASH_4CC( 's', 'o', 'n', 'm' ), /* Sort Name */
3927 ITUNES_METADATA_ITEM_ITUNES_SORT_SHOW = LSMASH_4CC( 's', 'o', 's', 'n' ), /* Sort Show */
3929 /* Integer type
3930 * (X): X means length of bytes */
3931 ITUNES_METADATA_ITEM_EPISODE_GLOBAL_ID = LSMASH_4CC( 'e', 'g', 'i', 'd' ), /* (1) Episode Global Unique ID */
3932 ITUNES_METADATA_ITEM_PREDEFINED_GENRE = LSMASH_4CC( 'g', 'n', 'r', 'e' ), /* (2) Pre-defined Genre / Enumerated value from ID3 tag set, plus 1 */
3933 ITUNES_METADATA_ITEM_PODCAST_URL = LSMASH_4CC( 'p', 'u', 'r', 'l' ), /* (?) Podcast URL */
3934 ITUNES_METADATA_ITEM_CONTENT_RATING = LSMASH_4CC( 'r', 't', 'n', 'g' ), /* (1) Content Rating / Does song have explicit content? 0: none, 2: clean, 4: explicit */
3935 ITUNES_METADATA_ITEM_MEDIA_TYPE = LSMASH_4CC( 's', 't', 'i', 'k' ), /* (1) Media Type */
3936 ITUNES_METADATA_ITEM_BEATS_PER_MINUTE = LSMASH_4CC( 't', 'm', 'p', 'o' ), /* (2) Beats Per Minute */
3937 ITUNES_METADATA_ITEM_TV_EPISODE = LSMASH_4CC( 't', 'v', 'e', 's' ), /* (4) TV Episode */
3938 ITUNES_METADATA_ITEM_TV_SEASON = LSMASH_4CC( 't', 'v', 's', 'n' ), /* (4) TV Season */
3939 ITUNES_METADATA_ITEM_ITUNES_ACCOUNT_TYPE = LSMASH_4CC( 'a', 'k', 'I', 'D' ), /* (1) iTunes Account Type / 0: iTunes, 1: AOL */
3940 ITUNES_METADATA_ITEM_ITUNES_ARTIST_ID = LSMASH_4CC( 'a', 't', 'I', 'D' ), /* (4) iTunes Artist ID */
3941 ITUNES_METADATA_ITEM_ITUNES_COMPOSER_ID = LSMASH_4CC( 'c', 'm', 'I', 'D' ), /* (4) iTunes Composer ID */
3942 ITUNES_METADATA_ITEM_ITUNES_CATALOG_ID = LSMASH_4CC( 'c', 'n', 'I', 'D' ), /* (4) iTunes Catalog ID */
3943 ITUNES_METADATA_ITEM_ITUNES_TV_GENRE_ID = LSMASH_4CC( 'g', 'e', 'I', 'D' ), /* (4) iTunes TV Genre ID */
3944 ITUNES_METADATA_ITEM_ITUNES_PLAYLIST_ID = LSMASH_4CC( 'p', 'l', 'I', 'D' ), /* (8) iTunes Playlist ID */
3945 ITUNES_METADATA_ITEM_ITUNES_COUNTRY_CODE = LSMASH_4CC( 's', 'f', 'I', 'D' ), /* (4) iTunes Country Code */
3947 /* Boolean type */
3948 ITUNES_METADATA_ITEM_DISC_COMPILATION = LSMASH_4CC( 'c', 'p', 'i', 'l' ), /* Disc Compilation / Is disc part of a compilation? 0: No, 1: Yes */
3949 ITUNES_METADATA_ITEM_HIGH_DEFINITION_VIDEO = LSMASH_4CC( 'h', 'd', 'v', 'd' ), /* High Definition Video / 0: No, 1: Yes */
3950 ITUNES_METADATA_ITEM_PODCAST = LSMASH_4CC( 'p', 'c', 's', 't' ), /* Podcast / 0: No, 1: Yes */
3951 ITUNES_METADATA_ITEM_GAPLESS_PLAYBACK = LSMASH_4CC( 'p', 'g', 'a', 'p' ), /* Gapless Playback / 0: insert gap, 1: no gap */
3953 /* Binary type */
3954 ITUNES_METADATA_ITEM_COVER_ART = LSMASH_4CC( 'c', 'o', 'v', 'r' ), /* One or more cover art images (JPEG/PNG/BMP data) */
3955 ITUNES_METADATA_ITEM_DISC_NUMBER = LSMASH_4CC( 'd', 'i', 's', 'k' ), /* Disc Number */
3956 ITUNES_METADATA_ITEM_TRACK_NUMBER = LSMASH_4CC( 't', 'r', 'k', 'n' ), /* Track Number */
3958 /* Custom type */
3959 ITUNES_METADATA_ITEM_CUSTOM = LSMASH_4CC( '-', '-', '-', '-' ), /* Custom */
3960 } lsmash_itunes_metadata_item;
3962 typedef enum
3964 ITUNES_METADATA_TYPE_NONE = 0,
3965 ITUNES_METADATA_TYPE_STRING = 1,
3966 ITUNES_METADATA_TYPE_INTEGER = 2,
3967 ITUNES_METADATA_TYPE_BOOLEAN = 3,
3968 ITUNES_METADATA_TYPE_BINARY = 4,
3969 } lsmash_itunes_metadata_type;
3971 typedef enum
3973 ITUNES_METADATA_SUBTYPE_IMPLICIT = 0, /* for use with tags for which no type needs to be indicated because only one type is allowed */
3974 ITUNES_METADATA_SUBTYPE_UTF8 = 1, /* without any count or null terminator */
3975 ITUNES_METADATA_SUBTYPE_UTF16 = 2, /* also known as UTF-16BE */
3976 ITUNES_METADATA_SUBTYPE_SJIS = 3, /* deprecated unless it is needed for special Japanese characters */
3977 ITUNES_METADATA_SUBTYPE_HTML = 6, /* the HTML file header specifies which HTML version */
3978 ITUNES_METADATA_SUBTYPE_XML = 7, /* the XML header must identify the DTD or schemas */
3979 ITUNES_METADATA_SUBTYPE_UUID = 8, /* also known as GUID; stored as 16 bytes in binary (valid as an ID) */
3980 ITUNES_METADATA_SUBTYPE_ISRC = 9, /* stored as UTF-8 text (valid as an ID) */
3981 ITUNES_METADATA_SUBTYPE_MI3P = 10, /* stored as UTF-8 text (valid as an ID) */
3982 ITUNES_METADATA_SUBTYPE_GIF = 12, /* (deprecated) a GIF image */
3983 ITUNES_METADATA_SUBTYPE_JPEG = 13, /* in a JFIF wrapper */
3984 ITUNES_METADATA_SUBTYPE_PNG = 14, /* in a PNG wrapper */
3985 ITUNES_METADATA_SUBTYPE_URL = 15, /* absolute, in UTF-8 characters */
3986 ITUNES_METADATA_SUBTYPE_DURATION = 16, /* in milliseconds, a 32-bit integer */
3987 ITUNES_METADATA_SUBTYPE_TIME = 17, /* in UTC, counting seconds since midnight on 1 January, 1904; 32 or 64 bits */
3988 ITUNES_METADATA_SUBTYPE_GENRES = 18, /* a list of values from the enumerated set */
3989 ITUNES_METADATA_SUBTYPE_INTEGER = 21, /* A signed big-endian integer in 1,2,3,4 or 8 bytes */
3990 ITUNES_METADATA_SUBTYPE_RIAAPA = 24, /* RIAA Parental advisory; -1=no, 1=yes, 0=unspecified. 8-bit integer */
3991 ITUNES_METADATA_SUBTYPE_UPC = 25, /* Universal Product Code, in text UTF-8 format (valid as an ID) */
3992 ITUNES_METADATA_SUBTYPE_BMP = 27, /* Windows bitmap format graphics */
3993 } lsmash_itunes_metadata_subtype;
3995 typedef union
3997 char *string; /* for ITUNES_METADATA_TYPE_STRING (UTF-8 string) */
3998 uint64_t integer; /* for ITUNES_METADATA_TYPE_INTEGER */
3999 lsmash_boolean_t boolean; /* for ITUNES_METADATA_TYPE_BOOLEAN */
4000 /* for ITUNES_METADATA_TYPE_BINARY */
4001 struct
4003 lsmash_itunes_metadata_subtype subtype;
4004 uint32_t size;
4005 uint8_t *data;
4006 } binary;
4007 } lsmash_itunes_metadata_value_t;
4009 typedef struct
4011 /* When 'item' is specified as ITUNES_METADATA_ITEM_CUSTOM, 'type' and 'meaning' is mandatory while 'name' is optionally valid.
4012 * Otherwise 'type', 'meaning' and 'name' are just ignored. 'value' is always mandatory. */
4013 lsmash_itunes_metadata_item item;
4014 lsmash_itunes_metadata_type type;
4015 lsmash_itunes_metadata_value_t value;
4016 char *meaning;
4017 char *name;
4018 } lsmash_itunes_metadata_t;
4020 /* Append an iTunes metadata to a movie.
4022 * Return 0 if successful.
4023 * Return a negative value otherwise. */
4024 int lsmash_set_itunes_metadata
4026 lsmash_root_t *root,
4027 lsmash_itunes_metadata_t metadata
4030 /* Count the number of iTunes metadata in a movie.
4032 * Return the number of iTunes metadata in a movie if successful.
4033 * Return 0 otherwise. */
4034 uint32_t lsmash_count_itunes_metadata
4036 lsmash_root_t *root
4039 /* Get an iTunes metadata in a movie.
4040 * String and/or binary fields in 'metadata' are allocated if successful.
4041 * You can deallocate the allocated fields by lsmash_free().
4042 * Also you can deallocate all of the allocated fields by lsmash_cleanup_itunes_metadata() at a time.
4044 * Return 0 if successful.
4045 * Return a negative value otherwise. */
4046 int lsmash_get_itunes_metadata
4048 lsmash_root_t *root,
4049 uint32_t metadata_number,
4050 lsmash_itunes_metadata_t *metadata
4053 /* Deallocate all of allocated fields in a given iTunes metadata at a time.
4054 * The deallocated fields are set to NULL.
4055 * Note: the given iTunes metadata itself is NOT deallocated by this function. */
4056 void lsmash_cleanup_itunes_metadata
4058 lsmash_itunes_metadata_t *metadata
4061 /****************************************************************************
4062 * Others
4063 ****************************************************************************/
4064 /* Set a copyright declaration to a track.
4065 * track_ID == 0 means copyright declaration applies to the entire presentation, not an entire track.
4067 * Return 0 if successful.
4068 * Return a negative value otherwise. */
4069 int lsmash_set_copyright
4071 lsmash_root_t *root,
4072 uint32_t track_ID,
4073 uint16_t ISO_language,
4074 char *notice
4077 int lsmash_create_object_descriptor
4079 lsmash_root_t *root
4082 #ifdef _WIN32
4083 /* Convert string encoded by ACP (ANSI CODE PAGE) to UTF-8.
4085 * Return the size of converted string (bytes) if successful.
4086 * Return 0 otherwise. */
4087 int lsmash_convert_ansi_to_utf8
4089 const char *string_ansi, /* string encoded by ACP */
4090 char *string_utf8, /* buffer for converted string from ACP */
4091 int max_length /* size of 'string_utf8' */
4093 #endif
4095 #undef PRIVATE
4097 #ifdef __cplusplus
4099 #endif
4101 #endif