forked from mp4ra/mp4ra.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecs.html
1280 lines (1277 loc) · 67.8 KB
/
codecs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="generator" content="Adobe GoLive 6">
<title>The 'MP4' Registration Authority</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="helper.js"></script>
<script type="text/javascript">
window.onload = function() {
loadCSV('CSV/specifications.csv', function (specs) {
loadCSV('CSV/handlers.csv', function (handlers) {
loadCSV('CSV/sample-entries.csv', function (boxes) {
buildTable(boxes, specs, document.getElementById('sampleEntriesTable'), handlers);
});
loadCSV('CSV/item-types.csv', function (boxes) {
buildTable(boxes, specs, document.getElementById('itemTypesTable'));
});
loadCSV('CSV/sample-entries-boxes.csv', function (boxes) {
buildTable(boxes, specs, document.getElementById('sampleEntryBoxes'), handlers);
});
loadCSV('CSV/sample-entries-qt.csv', function (boxes) {
buildTable(boxes, specs, document.getElementById('sampleEntriesQt'), handlers);
});
});
});
}
</script>
</head>
<body bgcolor="#ffffff">
<p><img src="Graphics/mp4reg.gif" alt="" width="184" height="48" border="0"></p>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr height="1">
<td width="50" height="1"></td> <td width="50" height="1"></td> <td width="50" height="1"></td>
<td width="50" height="1"></td> <td width="50" height="1"></td> <td width="50" height="1"></td>
<td width="50" height="1"></td> <td width="50" height="1"></td> <td width="50" height="1"></td>
<td width="50" height="1"></td> <td width="50" height="1"></td> <td width="50" height="1"></td>
</tr>
<tr height="32">
<td colspan="3" width="150" height="32"><a href="index.html"><img src="Graphics/introtab.gif" alt="" width="150" height="32" border="0"></a></td>
<td colspan="3" width="150" height="32"><a href="specs.html"><img src="Graphics/spectab.gif" alt="" width="150" height="32" border="0"></a></td>
<td colspan="3" width="150" height="32"><img src="Graphics/regtypestab.gif" alt="" width="150" height="32" border="0"></td>
<td colspan="3" width="150" height="32"><a href="request.html"><img src="Graphics/reqtab.gif" alt="" width="150" height="32" border="0"></a></td>
</tr>
<tr height="24">
<td colspan="2" width="100" height="24"><a href="atoms.html"><img src="Graphics/atoms-pl.gif" alt="" width="100" height="24" border="0"></a></td>
<td colspan="2" width="100" height="24"><a href="filetype.html"><img src="Graphics/filetype-pl.gif" alt="" width="100" height="24" border="0"></a></td>
<td colspan="2" width="100" height="24"><img src="Graphics/codecs-ch.gif" alt="" width="100" height="24" border="0"></td>
<td colspan="2" width="100" height="24"><a href="trackref.html"><img src="Graphics/trackref-pl.gif" alt="" width="100" height="24" border="0"></a></td>
<td colspan="2" width="100" height="24"><a href="handler.html"><img src="Graphics/handler-pl.gif" alt="" width="100" height="24" border="0"></a></td>
<td colspan="2" width="100" height="24"><a href="object.html"><img src="Graphics/object-pl.gif" alt="" width="100" height="24" border="0"></a></td>
</tr>
</table>
<table width="600" border="0" cellspacing="0" cellpadding="0" cool gridx="20" gridy="20" height="353" showgridx showgridy>
<tr height="1">
<td width="2" height="352" rowspan="2"></td>
<td width="597" height="1"></td>
<td width="1" height="1"><spacer type="block" width="1" height="1"></td>
</tr>
<tr height="351">
<td content csheight="351" width="597" height="351" valign="top" xpos="2"><p>This section documents the code-points used to identify codecs, or sample (access unit) formats. These are the four-character codes of <em>sample entries</em> (sample descriptions) in ISO media files.</p>
<p>There is also a table of <a href="#seboxes">boxes</a> that are stored in the sample entries for various track types.</p>
<p>Requests for a code-point in this area should identify the specification of the coding system, as well as the specification where the code-point is defined. The definition of the code-point should document the sample (access unit) format as well as the sample entry (sample description) format. Note that extra boxes (atoms) within the sample entry, which are specific to that coding system, need not be, and usually are not, registered.</p>
<p>Requests for a code-point in this area will normally also cause an objectTypeIndication to be allocated, so that the coding system can be used in MPEG-4 systems. Please indicate if this is not desirable. </p>
<p><b>Note well</b>: the existence of an ObjectType identification here does not document in which contexts, if any, that code-point may be used. The documentation must be consulted.</p>
<p><b>Sample Entry Codes Registered to ISO</b> (see <a href="#qtcodecs">below</a> for QuickTime code points)</p>
</td>
<td width="1" height="351"><spacer type="block" width="1" height="351"></td>
</tr>
<tr height="1" cntrlrow>
<td width="2" height="1"><spacer type="block" width="2" height="1"></td>
<td width="597" height="1"><spacer type="block" width="597" height="1"></td>
<td width="1" height="1"></td>
</tr>
</table>
<div id="sampleEntriesTable">
</div>
<!--table border=4 cellpadding=0 cellspacing=2 width=0 style="border-collapse:
collapse;table-layout:fixed">
<col width=75>
<col class=xl25 width=256>
<col width=80>
<col width=97>
<col width=86>
<tr >
<td class=xl26 width=60><strong>Code</strong></td>
<td class=xl27 width=253><strong>Abstract</strong></td>
<td class=xl27 width=80><strong>Stream type (handler)</strong></td>
<td class=xl26 width=97><strong>Defined in/by</strong></td>
<td class=xl26 width=86><strong>ObjectType</strong></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">3gvo</font></td>
<td class=xl25>3GPP Video Orientation</td>
<td><a href="handler.html#meta">Metadata</a></td>
<td class=xl37><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">a3ds</font></td>
<td class=xl25>Auro-Cx 3D audio</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#Auro" target="_parent">Auro</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">ac-3</font></td>
<td class=xl25 width=253>AC-3 audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#etsi-ac3">ETSI AC-3</a></td>
<td>0xA5</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">ac-4</font></td>
<td class=xl25>AC-4 audio</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#etsi-ac4">ETSI AC-4</a></td>
<td>0xAE</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">alac</font></td>
<td class=xl25 width=253>Apple lossless audio codec</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#apple">Apple</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">alaw</font></td>
<td class=xl25>a-Law</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#QT" target="_parent">QT</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">avc1</font></td>
<td class=xl25 width=253>Advanced Video Coding</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x21</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">avc2</font></td>
<td class=xl25 width=253>Advanced Video Coding</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x21</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">avc3</font></td>
<td class=xl25>Advanced Video Coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x21</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">avc4</font></td>
<td class=xl25>Advanced Video Coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x21</td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">avcp</font></td>
<td class=xl25 width=253>Advanced Video Coding Parameters</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x22</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">dra1</font></td>
<td class=xl25 width=253>DRA Audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#dra-spec">DRA</a></td>
<td>0xA7</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">drac</font></td>
<td class=xl25 width=253>Dirac Video Coder</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#dirac">Dirac</a></td>
<td>0xA4</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">dts+</font></td>
<td class=xl25>Enhancement layer for DTS layered audio</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DTS">DTS</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">dts-</font></td>
<td class=xl25>Dependent base layer for DTS layered audio</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DTS">DTS</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">dtsc</font></td>
<td class=xl25 width=253>DTS Coherent Acoustics audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#DTS">DTS</a></td>
<td>0xA9</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">dtse</font></td>
<td class=xl25 width=253>DTS Express low bit rate audio, also known as DTS LBR</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#DTS">DTS</a></td>
<td>0xAC</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">dtsh</font></td>
<td class=xl25 width=253>DTS-HD High Resolution Audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#DTS">DTS</a></td>
<td>0xAA</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">dtsl</font></td>
<td class=xl25 width=253>DTS-HD Master Audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#DTS">DTS</a></td>
<td>0xAB</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">dtsx</font></td>
<td class=xl25>DTS:X</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DTS">DTS</a><a href="specs.html#dolbyvision"></a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">dvav</font></td>
<td class=xl25>AVC-based “Dolby Vision”</td>
<td><a href="handler.html#vide">Video</a><a href="handler.html#soun"></a></td>
<td class=xl37><a href="specs.html#dolbyvision">DolbyVision</a><a href="specs.html#DTSX"></a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">dvhe</font></td>
<td class=xl25>HEVC-based “Dolby Vision”</td>
<td><a href="handler.html#vide">Video</a><a href="handler.html#soun"></a></td>
<td class=xl37><a href="specs.html#dolbyvision">DolbyVision</a><a href="specs.html#DTSX"></a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">ec-3</font></td>
<td class=xl25 width=253>Enhanced AC-3 audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#etsi-ac3">ETSI AC-3</a></td>
<td>0xA6</td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">enca</font></td>
<td class=xl25 width=253>Encrypted/Protected audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#ISMAc" target="_parent">ISMAc, </a><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">encf</font></td>
<td class=xl25>Encrypted/Protected font</td>
<td><a href="handler.html#fdsm">Font</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">encm</font></td>
<td class=xl25>Encrypted/Protected metadata</td>
<td><a href="handler.html#soun">Metadata</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">encs</font></td>
<td class=xl25 width=253>Encrypted Systems stream</td>
<td width="80">(various)</td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">enct</font></td>
<td class=xl25 width=253>Encrypted Text</td>
<td width="80"><a href="handler.html#text">Text</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">encv</font></td>
<td class=xl25 width=253>Encrypted/protected video</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#ISMAc" target="_parent">ISMAc, </a><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">fdp$20</font></td>
<td class=xl25 width=253>File delivery hints</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">g719</font></td>
<td class=xl25 width=253>ITU-T Recommendation G.719 (2008)</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#ITUG719">ITU G.719</a></td>
<td>0xA8</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">g726</font></td>
<td class=xl25 width=253>ITU-T Recommendation G.726 (1990)</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#QT" target="_parent">SDV</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">hev1</font></td>
<td class=xl25>High Efficiency Video Coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x23</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">hvc1</font></td>
<td class=xl25>High Efficiency Video Coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td>0x23</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">ixse</font></td>
<td class=xl25 width=253>DVB Track Level Index Track</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#DVBa121">DVB</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">m2ts</font></td>
<td class=xl25 width=253>MPEG-2 transport stream for DMB</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#DMB-MAF">DMB-MAF</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">m4ae</font></td>
<td class=xl25 width=253>MPEG-4 Audio Enhancement</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MP4V2" target="_parent">MP4v2</a></td>
<td>0x40, others</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">m4ae</font></td>
<td class=xl25 width=253>MPEG-4 Audio Enhancement</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MP4V1" target="_parent">MP4v1</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">mett</font></td>
<td class=xl25 width=253>Text timed metadata that is not XML</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">metx</font></td>
<td class=xl25 width=253>XML timed metadata</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mha1</font></td>
<td class=xl25>MPEG-H Audio (single stream, unencapsulated)</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#MPEGHAudio" target="_parent">MPEG-H</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mha2</font></td>
<td class=xl25>MPEG-H Audio (multi-stream, unencapsulated)</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#MPEGHAudio" target="_parent">MPEG-H</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mhm1</font></td>
<td class=xl25>MPEG-H Audio (single stream, MHAS encapsulated)</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#MPEGHAudio" target="_parent">MPEG-H</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mhm2</font></td>
<td class=xl25>MPEG-H Audio (multi-stream, MHAS encapsulated)</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#MPEGHAudio" target="_parent">MPEG-H</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mjp2</font></td>
<td class=xl25 width=253>Motion JPEG 2000</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#QT" target="_parent">MJ2</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mlix</font></td>
<td class=xl25 width=253>DVB Movie level index track</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#DVBa121">DVB</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mlpa</font></td>
<td class=xl25 width=253>MLP Audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MLP">Dolby MLP</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mp4a</font></td>
<td class=xl25 width=253>MPEG-4 Audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MP4V1" target="_parent">MP4v1</a></td>
<td>0x40, others</td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mp4s</font></td>
<td class=xl25 width=253>MPEG-4 Systems</td>
<td width="80">(various)</td>
<td class=xl37 width="97"><a href="specs.html#MP4V1" target="_parent">MP4V1</a></td>
<td>various</td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">mp4v</font></td>
<td class=xl25 width=253>MPEG-4 Visual</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#MP4V1" target="_parent">MP4V1</a></td>
<td>0x20, others</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">mvc1</font></td>
<td class=xl25 width=253>Multiview coding</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">mvc2</font></td>
<td class=xl25 width=253>Multiview coding</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mvc3</font></td>
<td class=xl25>Multiview coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">mvc4</font></td>
<td class=xl25>Multiview coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">oksd</font></td>
<td class=xl25 width=253>OMA Keys</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#omadrmxbs" target="_parent">OMA DRM XBS</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">Opus</font></td>
<td class=xl25>Opus audio coding</td>
<td><a href="handler.html#soun">Audio</a><a href="handler.html#meta"></a></td>
<td class=xl37><a href="specs.html#Opus" target="_parent">Opus</a><a href="specs.html#omadrmxbs" target="_parent"></a></td>
<td>0xAD</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">pm2t</font></td>
<td class=xl25 width=253>Protected MPEG-2 Transport</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">prtp</font></td>
<td class=xl25 width=253>Protected RTP Reception</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">raw$20</font></td>
<td class=xl25 width=253>Uncompressed audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MJ2" target="_parent">MJ2</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">resv</font></td>
<td class=xl25>Restricted Video</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">rm2t</font></td>
<td class=xl25 width=253>MPEG-2 Transport Reception</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">rrtp</font></td>
<td class=xl25 width=253>RTP reception</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">rsrp</font></td>
<td class=xl25 width=253>SRTP Reception</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC>rtmd</td>
<td class=xl25>Real Time Metadata Sample Entry(XAVC Format)</td>
<td><a href="handler.html#meta">Metadata</a><a href="handler.html#soun"></a></td>
<td class=xl37><a href="specs.html#Sony" target="_parent">Sony</a></td>
<td> </td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">rtp$20</font></td>
<td class=xl25 width=253>RTP Hints</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td>n/a</td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">s263</font></td>
<td class=xl25 width=253>ITU H.263 video (3GPP format)</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">samr</font></td>
<td class=xl25 width=253>Narrowband AMR voice</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">sawb</font></td>
<td class=xl25 width=253>Wideband AMR voice</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">sawp</font></td>
<td class=xl25 width=253>Extended AMR-WB (AMR-WB+)</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">sevc</font></td>
<td class=xl25 width=253>EVRC Voice</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP2">3GPP2</a></td>
<td>0xA0</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">sm2t</font></td>
<td class=xl25 width=253>MPEG-2 Transport Server</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">sqcp</font></td>
<td class=xl25 width=253>13K Voice</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP2">3GPP2</a></td>
<td>0xE1</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">srtp</font></td>
<td class=xl25 width=253>SRTP Hints</td>
<td width="80"><a href="handler.html#hint">Hint</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td>n/a</td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">ssmv</font></td>
<td class=xl25 width=253>SMV Voice</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP2">3GPP2</a></td>
<td>0xA1</td>
</tr>
<tr>
<td class=FourCC>STGS</td>
<td class=xl25>Subtitle Sample Entry (HMMP)</td>
<td><a href="handler.html#GRAP">Subtitle Graphics</a></td>
<td class=xl37><a href="specs.html#Sony" target="_parent">Sony</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">stpp</font></td>
<td class=xl25 width=253>Subtitles (Timed Text)</td>
<td width="80"><a href="handler.html#subt">Subtitles</a></td>
<td class=xl37 width="97"><a href="specs.html#iso" target="_parent">ISO</a><a href="specs.html#DECE10"></a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">svc1</font></td>
<td class=xl25 width=253>Scalable Video Coding</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">svc2</font></td>
<td class=xl25>Scalable Video Coding</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">svcM</font></td>
<td class=xl25 width=253>SVC metadata</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
<td></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">tc64</font></td>
<td class=xl25>64 bit timecode samples</td>
<td><a href="handler.html#tmcd">Timecode</a></td>
<td class=xl37><a href="specs.html#apple" target="_parent">Apple</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">tmcd</font></td>
<td class=xl25>32 bit timecode samples</td>
<td><a href="handler.html#tmcd">Timecode</a></td>
<td class=xl37><a href="specs.html#apple" target="_parent">Apple</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">twos</font></td>
<td class=xl25 width=253>Uncompressed 16-bit audio</td>
<td width="80"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#MJ2" target="_parent">MJ2</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">tx3g</font></td>
<td class=xl25 width=253>Timed Text stream</td>
<td width="80"><a href="handler.html#text">Text</a></td>
<td class=xl37 width="97"><a href="specs.html#3GPP" target="_parent">3GPP</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">ulaw</font></td>
<td class=xl25>Samples have been compressed using uLaw 2:1.</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#QT" target="_parent">QT</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC>unid</td>
<td class=xl25>Dynamic Range Control (DRC) data</td>
<td><a href="handler.html#meta">Metadata</a><a href="handler.html#soun"></a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New, Courier, Monaco, monospace">urim</font></td>
<td class=xl25 width=253>Binary timed metadata identified by URI</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td></td>
</tr>
<tr>
<td class=FourCC width="60"><font face="Courier New,Courier,Monaco">vc-1</font></td>
<td class=xl25 width=253>SMPTE VC-1</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#smptevc1">SMPTE</a></td>
<td>0xA3</td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">vp08</font></td>
<td class=xl25>VP8 video</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#VPxx">VPxx</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">vp09</font></td>
<td class=xl25>VP9 video</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#VPxx">VPxx</a></td>
<td> </td>
</tr>
<tr>
<td class=FourCC><font face="Courier New, Courier, Monaco, monospace">wvtt</font></td>
<td class=xl25>WebVTT data</td>
<td><a href="handler.html#text">Text</a></td>
<td class=xl37><a href="specs.html#ISOtext" target="_parent">ISO-Text</a></td>
<td> </td>
</tr>
</table-->
<p><b>Metadata Item Type Codes Registered to ISO</b></p>
<div id="itemTypesTable">
</div>
<!--table width=0 border=4 cellpadding=0 cellspacing=2 style="border-collapse:
collapse;table-layout:fixed">
<tr >
<td width=40 class=xl26><strong>Code</strong></td>
<td width=326 class=xl27><strong>Abstract</strong></td>
<td width=117 class=xl26><strong>Defined in/by</strong></td>
<td width=97 class=xl26><strong>ObjectType</strong></td>
</tr>
<col width=75>
<col class=xl25 width=256>
<col width=80>
<col width=97>
<col width=86>
<tr>
<td class=xl24><font face="Courier New,Courier,Monaco">auvd</font></td>
<td class=xl25>Auxiliary Video descriptor</td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a></td>
<td>n/a</td>
</tr>
</table-->
<p><b><a name="seboxes"></a>Box types contained in specific Sample Entries</b></p>
<div id="sampleEntryBoxes">
</div>
<!--table border=4 cellpadding=0 cellspacing=2 width=571 style="border-collapse:
collapse;table-layout:fixed">
<col width=75>
<col class=xl25 width=256>
<col width=80>
<col width=97>
<col width=86>
<tr >
<td class=xl26 width=80><strong>Code</strong></td>
<td class=xl27 width=288><strong>Abstract</strong></td>
<td class=xl27 width=80><strong>For stream (handler) type</strong></td>
<td class=xl26 width=97><strong>Defined in/by</strong></td>
</tr>
<tr>
<td class=FourCC><font face="Courier New,Courier,Monaco">avcC</font></td>
<td class=xl25>AVC Configuration</td>
<td><p><a href="handler.html#vide">Video</a></p></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr>
<td class=FourCC width="80"><font face="Courier New,Courier,Monaco">btrt</font></td>
<td class=xl25 width=288>Bit-rate information</td>
<td width="80">General</td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#etsi"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">chnl</td>
<td width="295">Channel layout</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">clap</font></td>
<td class=xl25>Clean aperture</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">colr</font></td>
<td class=xl25>Color information (see 1 below)</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a></td>
</tr>
<tr >
<td width="80" class="FourCC">dmix</td>
<td width="295">Downmix instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr>
<td class=FourCC><p><font face="Courier New,Courier,Monaco">ecam</font></p></td>
<td class=xl25>Extrinsic camera parameters</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">esds</font></td>
<td class=xl25>Elementary stream descriptor</td>
<td>General</td>
<td class=xl37><a href="specs.html#MP4V2">MPEG4</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">hvcC</font></td>
<td class=xl25>HEVC Configuration</td>
<td><p><a href="handler.html#vide">Video</a></p></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">icam</font></td>
<td class=xl25>Intrinsic camera parameters</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td width="80" class="FourCC">leqi</td>
<td width="295">Loudness equalization instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
</tr>
<tr >
<td class=FourCC><p><font face="Courier New,Courier,Monaco">m4ds</font></p></td>
<td class=xl25>MPEG-4 descriptors</td>
<td>General</td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">mvcC</font></td>
<td class=xl25>MVC configuration</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">mvcP</font></td>
<td class=xl25>MVC priority assignment</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC width="80"><font face="Courier New,Courier,Monaco">pasp</font></td>
<td class=xl25 width=288>Pixel aspect ratio</td>
<td width="80"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#AVC" target="_parent"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">pdc1</td>
<td width="295">Parametric DRC coefficients</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
</tr>
<tr >
<td width="80" class="FourCC">pdi1</td>
<td width="295">Parametric DRC instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">qlif</font></td>
<td class=xl25>Layer quality assignments</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">seib</font></td>
<td class=xl25>Scalability information</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">svcC</font></td>
<td class=xl25>SVC configuration</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">svcP</font></td>
<td class=xl25>SVC priority assignments</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">svmC</font></td>
<td class=xl25>SVC information configuration</td>
<td><a href="handler.html#meta">Metadata</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td width="80" class="FourCC">udc1</td>
<td width="295">Basic DRC coefficients</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">udc2</td>
<td width="295">Unified DRC coefficients</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">udex</td>
<td width="295">Unified DRC configuration extension</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">udi1</td>
<td width="295">Basic DRC instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">udi2</td>
<td width="295">Unified DRC instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td width="80" class="FourCC">ueqc</td>
<td width="295">Equalization coefficients</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
</tr>
<tr >
<td width="80" class="FourCC">ueqi</td>
<td width="295">Equalization instructions</td>
<td><a href="handler.html#soun">Audio</a></td>
<td class=xl37><a href="specs.html#DRC" target="_parent">DRC</a></td>
</tr>
<tr >
<td class=FourCC width="80"><font face="Courier New,Courier,Monaco">uriI</font></td>
<td class=xl25 width=288>URI Information</td>
<td width="80"><a href="handler.html#meta">Metadata</a></td>
<td class=xl37 width="97"><a href="specs.html#ISO" target="_parent">ISO</a><a href="specs.html#apple"></a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">vsib</font></td>
<td class=xl25>View scalability information</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
<tr >
<td class=FourCC><font face="Courier New,Courier,Monaco">vwid</font></td>
<td class=xl25>View identifier</td>
<td><a href="handler.html#vide">Video</a></td>
<td class=xl37><a href="specs.html#AVC" target="_parent">NALu Video</a></td>
</tr>
</table-->
<ol>
<li>See the color information in the '<a href="handler.html">misc</a>' tables for the contents of the color information box.</li>
</ol>
<p><a name="qtcodecs"></a><b>Sample Entry Codes Registered for QuickTime</b></p>
<div id="sampleEntriesQt">
</div>
<!--table border=4 cellpadding=0 cellspacing=2 width=600 style="border-collapse:
collapse;table-layout:fixed">
<tr>
<td class=xl26 width=75><strong>Code</strong></td>
<td class=xl27 width=256><strong>Abstract</strong></td>
<td class=xl27 width=49><strong>Stream type (handler)</strong></td>
<td class=xl26 width=97><strong>Defined in/by</strong></td>
</tr>
<tr>
<td class=xl24 width="75"><font face="Courier New,Courier,Monaco">agsm</font></td>
<td class=xl25 width=256>GSM</td>
<td width="49"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#QT" target="_parent">QT</a></td>
</tr>
<tr>
<td class=xl24 width="75"><font face="Courier New,Courier,Monaco">alaw</font></td>
<td class=xl25 width=256>a-Law</td>
<td width="49"><a href="handler.html#soun">Audio</a></td>
<td class=xl37 width="97"><a href="specs.html#QT" target="_parent">QT</a></td>
</tr>
<tr>
<td class=xl24 width="75"><font face="Courier New,Courier,Monaco">CFHD</font></td>
<td class=xl25 width=256>CineForm High-Definition (HD) wavelet codec</td>
<td width="49"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#cineform">CineForm</a></td>
</tr>
<tr>
<td class=xl24 width="75"><font face="Courier New,Courier,Monaco">civd</font></td>
<td class=xl25 width=256>Cinepak Video</td>
<td width="49"><a href="handler.html#vide">Video</a></td>
<td class=xl37 width="97"><a href="specs.html#QT" target="_parent">QT</a></td>
</tr>
<tr>
<td class=xl24><font face="Courier New,Courier,Monaco">c608</font></td>
<td class=xl25>CEA 608 Captions</td>
<td><a href="handler.html#clcp">ClosedCaption</a></td>
<td class=xl37><a href="specs.html#QT" target="_parent">QT</a></td>