Mercurial > libavformat.hg
annotate mxfenc.c @ 3826:da2d0c162cde libavformat
introduce MXFContainerEssencePair to associate essence element key and
essence container easily and compute essence element key in write_header
| author | bcoudurier |
|---|---|
| date | Sun, 31 Aug 2008 01:33:28 +0000 |
| parents | 9322d2054ec8 |
| children | e206d10f28db |
| rev | line source |
|---|---|
| 3721 | 1 /* |
| 2 * MXF muxer | |
| 3 * Copyright (c) 2008 GUCAS, Zhentan Feng <spyfeng at gmail dot com> | |
| 4 * | |
| 5 * This file is part of FFmpeg. | |
| 6 * | |
| 7 * FFmpeg is free software; you can redistribute it and/or | |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2.1 of the License, or (at your option) any later version. | |
| 11 * | |
| 12 * FFmpeg is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
| 18 * License along with FFmpeg; if not, write to the Free Software | |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 20 */ | |
| 21 | |
| 22 /* | |
| 23 * References | |
| 24 * SMPTE 336M KLV Data Encoding Protocol Using Key-Length-Value | |
| 25 * SMPTE 377M MXF File Format Specifications | |
| 26 * SMPTE 379M MXF Generic Container | |
| 27 * SMPTE 381M Mapping MPEG Streams into the MXF Generic Container | |
| 28 * SMPTE RP210: SMPTE Metadata Dictionary | |
| 29 * SMPTE RP224: Registry of SMPTE Universal Labels | |
| 30 */ | |
| 31 | |
| 32 //#define DEBUG | |
| 33 | |
| 3735 | 34 #include "mxf.h" |
| 35 | |
| 36 typedef struct { | |
| 37 int local_tag; | |
| 38 UID uid; | |
| 39 } MXFLocalTagPair; | |
| 40 | |
| 3740 | 41 typedef struct { |
| 42 UID track_essence_element_key; | |
|
3817
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
43 const UID *essence_container_ul; |
| 3740 | 44 } MXFStreamContext; |
| 45 | |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
46 typedef struct { |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
47 UID container_ul; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
48 UID element_ul; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
49 enum CodecID id; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
50 } MXFContainerEssencePair; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
51 |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
52 static const MXFContainerEssencePair mxf_essence_container_uls[] = { |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
53 { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x02,0x0D,0x01,0x03,0x01,0x02,0x04,0x60,0x01 }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
54 { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x15,0x01,0x05,0x00 }, CODEC_ID_MPEG2VIDEO }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
55 { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x06,0x01,0x00 }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
56 { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x16,0x01,0x01,0x00 }, CODEC_ID_PCM_S16LE }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
57 { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
58 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, CODEC_ID_NONE }, |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
59 }; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
60 |
| 3740 | 61 typedef struct MXFContext { |
| 62 int64_t header_byte_count; | |
| 63 int64_t header_byte_count_offset; | |
| 64 int64_t header_footer_partition_offset; | |
| 65 int essence_container_count; | |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
66 uint8_t essence_containers_indices[sizeof(mxf_essence_container_uls)/ |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
67 sizeof(*mxf_essence_container_uls)]; |
| 3740 | 68 } MXFContext; |
| 3743 | 69 |
| 70 typedef struct { | |
| 71 const UID key; | |
| 3749 | 72 void (*write)(); |
| 3743 | 73 enum CodecType type; |
| 74 } MXFDescriptorWriteTableEntry; | |
| 75 | |
| 3735 | 76 static const uint8_t uuid_base[] = { 0xAD,0xAB,0x44,0x24,0x2f,0x25,0x4d,0xc7,0x92,0xff,0x29,0xbd }; |
| 77 static const uint8_t umid_base[] = { 0x06,0x0A,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x00,0x13,0x00,0x00,0x00 }; | |
| 78 | |
| 79 /** | |
| 80 * complete key for operation pattern, partitions, and primer pack | |
| 81 */ | |
| 82 static const uint8_t op1a_ul[] = { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x01,0x01,0x00 }; | |
| 83 static const uint8_t header_partition_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x02,0x04,0x00 }; // ClosedComplete | |
| 84 static const uint8_t footer_partition_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x04,0x04,0x00 }; // ClosedComplete | |
| 85 static const uint8_t primer_pack_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x05,0x01,0x00 }; | |
| 86 | |
| 3743 | 87 /** |
| 88 * partial key for header metadata | |
| 89 */ | |
| 90 static const uint8_t header_metadata_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0D,0x01,0x01,0x01,0x01 }; | |
| 91 | |
| 92 static const MXFCodecUL mxf_essence_element_key[] = { | |
| 93 { { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x15,0x01,0x05,0x00 }, 14, CODEC_ID_MPEG2VIDEO}, | |
| 94 { { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x16,0x01,0x01,0x00 }, 14, CODEC_ID_PCM_S16LE}, | |
| 95 { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, CODEC_ID_NONE}, | |
| 96 }; | |
| 97 | |
| 98 static const uint8_t multiple_desc_ul[] = { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x0D,0x01,0x03,0x01,0x02,0x7F,0x01,0x00 }; | |
| 99 | |
| 3749 | 100 /** |
| 101 * SMPTE RP210 http://www.smpte-ra.org/mdd/index.html | |
| 102 */ | |
| 103 static const MXFLocalTagPair mxf_local_tag_batch[] = { | |
| 104 // preface set | |
| 105 { 0x3C0A, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x02,0x00,0x00,0x00,0x00}}, /* Instance UID */ | |
| 106 { 0x3B02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x04,0x00,0x00}}, /* Last Modified Date */ | |
| 107 { 0x3B05, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x03,0x01,0x02,0x01,0x05,0x00,0x00,0x00}}, /* Version */ | |
| 108 { 0x3B06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x04,0x00,0x00}}, /* Identifications reference */ | |
| 109 { 0x3B03, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x01,0x00,0x00}}, /* Content Storage reference */ | |
| 110 { 0x3B09, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x03,0x00,0x00,0x00,0x00}}, /* Operational Pattern UL */ | |
| 111 { 0x3B0A, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x10,0x02,0x01,0x00,0x00}}, /* Essence Containers UL batch */ | |
| 112 { 0x3B0B, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x10,0x02,0x02,0x00,0x00}}, /* DM Schemes UL batch */ | |
| 113 // Identification | |
| 114 { 0x3C09, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x01,0x00,0x00,0x00}}, /* This Generation UID */ | |
| 115 { 0x3C01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x02,0x01,0x00,0x00}}, /* Company Name */ | |
| 116 { 0x3C02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x03,0x01,0x00,0x00}}, /* Product Name */ | |
| 3792 | 117 { 0x3C04, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x05,0x01,0x00,0x00}}, /* Version String */ |
| 3749 | 118 { 0x3C05, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x07,0x00,0x00,0x00}}, /* Product ID */ |
| 119 { 0x3C06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x03,0x00,0x00}}, /* Modification Date */ | |
| 120 // Content Storage | |
| 121 { 0x1901, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x05,0x01,0x00,0x00}}, /* Package strong reference batch */ | |
| 122 // Essence Container Data | |
| 123 { 0x2701, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x06,0x01,0x00,0x00,0x00}}, /* Linked Package UID */ | |
| 124 { 0x3F07, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x01,0x03,0x04,0x04,0x00,0x00,0x00,0x00}}, /* BodySID */ | |
| 125 // Package | |
| 126 { 0x4401, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x10,0x00,0x00,0x00,0x00}}, /* Package UID */ | |
| 127 { 0x4405, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x01,0x03,0x00,0x00}}, /* Package Creation Date */ | |
| 128 { 0x4404, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x05,0x00,0x00}}, /* Package Modified Date */ | |
| 129 { 0x4403, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x05,0x00,0x00}}, /* Tracks Strong reference array */ | |
| 130 { 0x4701, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x03,0x00,0x00}}, /* Descriptor */ | |
| 131 // Track | |
| 132 { 0x4801, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x01,0x07,0x01,0x01,0x00,0x00,0x00,0x00}}, /* Track ID */ | |
| 3793 | 133 { 0x4804, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x01,0x03,0x00,0x00}}, /* Track Number */ |
| 3749 | 134 { 0x4B01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x30,0x04,0x05,0x00,0x00,0x00,0x00}}, /* Edit Rate */ |
| 135 { 0x4B02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x03,0x01,0x03,0x00,0x00}}, /* Origin */ | |
| 136 { 0x4803, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x04,0x00,0x00}}, /* Sequence reference */ | |
| 137 // Sequence | |
| 138 { 0x0201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x07,0x01,0x00,0x00,0x00,0x00,0x00}}, /* Data Definition UL */ | |
| 139 { 0x0202, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x02,0x01,0x01,0x03,0x00,0x00}}, /* Duration */ | |
| 140 { 0x1001, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x09,0x00,0x00}}, /* Structural Components reference array */ | |
| 141 // Source Clip | |
| 142 { 0x1201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x07,0x02,0x01,0x03,0x01,0x0A,0x00,0x00}}, /* Start position */ | |
| 143 { 0x1101, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x03,0x01,0x00,0x00,0x00}}, /* SourcePackageID */ | |
| 144 { 0x1102, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x03,0x02,0x00,0x00,0x00}}, /* SourceTrackID */ | |
| 3794 | 145 // File Descriptor |
| 146 { 0x3F01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x06,0x01,0x01,0x04,0x06,0x0B,0x00,0x00}}, /* Sub Descriptors reference array */ | |
| 3749 | 147 { 0x3006, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x06,0x01,0x01,0x03,0x05,0x00,0x00,0x00}}, /* Linked Track ID */ |
| 148 { 0x3001, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x06,0x01,0x01,0x00,0x00,0x00,0x00}}, /* SampleRate */ | |
| 3794 | 149 { 0x3004, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x01,0x02,0x00,0x00}}, /* Essence Container */ |
| 150 // Generic Picture Essence Descriptor | |
| 151 { 0x3203, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x05,0x02,0x02,0x00,0x00,0x00}}, /* Stored Width */ | |
| 152 { 0x3202, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x05,0x02,0x01,0x00,0x00,0x00}}, /* Stored Height */ | |
| 153 { 0x320E, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x01,0x01,0x01,0x00,0x00,0x00}}, /* Aspect Ratio */ | |
| 154 { 0x3201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x01,0x06,0x01,0x00,0x00,0x00,0x00}}, /* Picture Essence Coding */ | |
| 155 // Generic Sound Essence Descriptor | |
| 156 { 0x3D03, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x04,0x02,0x03,0x01,0x01,0x01,0x00,0x00}}, /* Audio sampling rate */ | |
| 157 { 0x3D07, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x04,0x02,0x01,0x01,0x04,0x00,0x00,0x00}}, /* ChannelCount */ | |
| 158 { 0x3D01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x04,0x02,0x03,0x03,0x04,0x00,0x00,0x00}}, /* Quantization bits */ | |
| 159 { 0x3D06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x01,0x06,0x01,0x00,0x00,0x00,0x00}}, /* Sound Essence Compression */ | |
| 3749 | 160 }; |
| 161 | |
| 3735 | 162 static void mxf_write_uuid(ByteIOContext *pb, enum CodecID type, int value) |
| 163 { | |
| 164 put_buffer(pb, uuid_base, 12); | |
| 165 put_be16(pb, type); | |
| 166 put_be16(pb, value); | |
| 167 } | |
| 168 | |
| 3740 | 169 static void mxf_write_umid(ByteIOContext *pb, enum CodecID type, int value) |
| 170 { | |
| 171 put_buffer(pb, umid_base, 16); | |
| 172 mxf_write_uuid(pb, type, value); | |
| 173 } | |
| 3743 | 174 |
| 175 static void mxf_write_refs_count(ByteIOContext *pb, int ref_count) | |
| 176 { | |
| 177 put_be32(pb, ref_count); | |
| 178 put_be32(pb, 16); | |
| 179 } | |
| 180 | |
| 3735 | 181 static int klv_encode_ber_length(ByteIOContext *pb, uint64_t len) |
| 182 { | |
| 183 // Determine the best BER size | |
| 184 int size; | |
| 185 if (len < 128) { | |
| 186 //short form | |
| 187 put_byte(pb, len); | |
| 188 return 1; | |
| 189 } | |
| 190 | |
| 191 size = (av_log2(len) >> 3) + 1; | |
| 192 | |
| 193 // long form | |
| 194 put_byte(pb, 0x80 + size); | |
| 195 while(size) { | |
| 196 size --; | |
| 197 put_byte(pb, len >> 8 * size & 0xff); | |
| 198 } | |
| 199 return 0; | |
| 200 } | |
| 201 | |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
202 /* |
|
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
203 * Get essence container ul and return its index position |
|
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
204 */ |
|
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
205 static const UID *mxf_get_essence_container_ul(enum CodecID type, int *index) |
| 3721 | 206 { |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
207 const MXFContainerEssencePair *uls = mxf_essence_container_uls; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
208 for (*index = 0; *index < sizeof(mxf_essence_container_uls)/ |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
209 sizeof(*mxf_essence_container_uls); (*index)++) |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
210 if (mxf_essence_container_uls[*index].id == type) |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
211 return &uls->container_ul; |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
212 *index = -1; |
|
3817
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
213 return NULL; |
| 3721 | 214 } |
| 215 | |
| 3749 | 216 static void mxf_write_primer_pack(AVFormatContext *s) |
| 3735 | 217 { |
| 218 ByteIOContext *pb = s->pb; | |
| 219 int local_tag_number, i = 0; | |
| 220 | |
| 3824 | 221 local_tag_number = sizeof(mxf_local_tag_batch)/sizeof(*mxf_local_tag_batch); |
| 3735 | 222 |
| 223 put_buffer(pb, primer_pack_key, 16); | |
| 224 klv_encode_ber_length(pb, local_tag_number * 18 + 8); | |
| 225 | |
| 226 put_be32(pb, local_tag_number); // local_tag num | |
| 227 put_be32(pb, 18); // item size, always 18 according to the specs | |
| 228 | |
| 229 for (i = 0; i < local_tag_number; i++) { | |
| 230 put_be16(pb, mxf_local_tag_batch[i].local_tag); | |
| 231 put_buffer(pb, mxf_local_tag_batch[i].uid, 16); | |
| 232 } | |
| 233 } | |
| 234 | |
| 3815 | 235 static void mxf_write_local_tag(ByteIOContext *pb, int size, int tag) |
| 3735 | 236 { |
| 237 put_be16(pb, tag); | |
| 3815 | 238 put_be16(pb, size); |
| 3735 | 239 } |
| 240 | |
| 3740 | 241 static void mxf_write_metadata_key(ByteIOContext *pb, unsigned int value) |
| 242 { | |
| 243 put_buffer(pb, header_metadata_key, 13); | |
| 244 put_be24(pb, value); | |
| 245 } | |
| 246 | |
| 3721 | 247 static void mxf_free(AVFormatContext *s) |
| 248 { | |
| 249 int i; | |
| 250 | |
| 251 for (i = 0; i < s->nb_streams; i++) { | |
| 3823 | 252 AVStream *st = s->streams[i]; |
| 3721 | 253 av_freep(&st->priv_data); |
| 254 } | |
| 255 } | |
| 256 | |
| 257 static const MXFDataDefinitionUL *mxf_get_data_definition_ul(enum CodecType type) | |
| 258 { | |
| 3735 | 259 const MXFDataDefinitionUL *uls = ff_mxf_data_definition_uls; |
| 3721 | 260 while (uls->type != CODEC_TYPE_DATA) { |
| 261 if (type == uls->type) | |
| 262 break; | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
263 uls++; |
| 3721 | 264 } |
| 265 return uls; | |
| 266 } | |
| 267 | |
| 3821 | 268 static void mxf_write_essence_container_refs(AVFormatContext *s) |
|
3780
261cd3e672e5
Remaining parts of GSoC MXF muxer by Zhentan Feng.
cehoyos
parents:
3778
diff
changeset
|
269 { |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
270 MXFContext *c = s->priv_data; |
|
3780
261cd3e672e5
Remaining parts of GSoC MXF muxer by Zhentan Feng.
cehoyos
parents:
3778
diff
changeset
|
271 ByteIOContext *pb = s->pb; |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
272 int i; |
|
3780
261cd3e672e5
Remaining parts of GSoC MXF muxer by Zhentan Feng.
cehoyos
parents:
3778
diff
changeset
|
273 |
| 3822 | 274 mxf_write_refs_count(pb, c->essence_container_count); |
| 275 av_log(s,AV_LOG_DEBUG, "essence container count:%d\n", c->essence_container_count); | |
| 276 for (i = 0; i < c->essence_container_count; i++) { | |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
277 put_buffer(pb, mxf_essence_container_uls[c->essence_containers_indices[i]].container_ul, 16); |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
278 PRINT_KEY(s, "essence container ul:\n", mxf_essence_container_uls[c->essence_containers_indices[i]].container_ul); |
| 3822 | 279 } |
|
3780
261cd3e672e5
Remaining parts of GSoC MXF muxer by Zhentan Feng.
cehoyos
parents:
3778
diff
changeset
|
280 } |
|
261cd3e672e5
Remaining parts of GSoC MXF muxer by Zhentan Feng.
cehoyos
parents:
3778
diff
changeset
|
281 |
| 3749 | 282 static void mxf_write_preface(AVFormatContext *s) |
| 283 { | |
| 284 MXFContext *mxf = s->priv_data; | |
| 285 ByteIOContext *pb = s->pb; | |
| 286 | |
| 287 mxf_write_metadata_key(pb, 0x012f00); | |
| 288 PRINT_KEY(s, "preface key", pb->buf_ptr - 16); | |
| 289 klv_encode_ber_length(pb, 130 + 16 * mxf->essence_container_count); | |
| 290 | |
| 291 // write preface set uid | |
| 292 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 293 mxf_write_uuid(pb, Preface, 0); | |
| 294 PRINT_KEY(s, "preface uid", pb->buf_ptr - 16); | |
| 295 | |
| 296 // write create date as unknown | |
| 297 mxf_write_local_tag(pb, 8, 0x3B02); | |
| 298 put_be64(pb, 0); | |
| 299 | |
| 300 // write version | |
| 301 mxf_write_local_tag(pb, 2, 0x3B05); | |
| 302 put_be16(pb, 1); | |
| 303 | |
| 304 // write identification_refs | |
| 305 mxf_write_local_tag(pb, 16 + 8, 0x3B06); | |
| 306 mxf_write_refs_count(pb, 1); | |
| 307 mxf_write_uuid(pb, Identification, 0); | |
| 308 | |
| 309 // write content_storage_refs | |
| 310 mxf_write_local_tag(pb, 16, 0x3B03); | |
| 311 mxf_write_uuid(pb, ContentStorage, 0); | |
| 312 | |
| 313 mxf_write_local_tag(pb, 16, 0x3B09); | |
| 314 put_buffer(pb, op1a_ul, 16); | |
| 315 | |
| 316 // write essence_container_refs | |
| 317 mxf_write_local_tag(pb, 8 + 16 * mxf->essence_container_count, 0x3B0A); | |
| 3821 | 318 mxf_write_essence_container_refs(s); |
| 3749 | 319 |
| 320 // write dm_scheme_refs | |
| 321 mxf_write_local_tag(pb, 8, 0x3B0B); | |
| 322 put_be64(pb, 0); | |
| 323 } | |
| 324 | |
| 3804 | 325 /* |
|
3806
fa043e93fc66
introduce mxf_write_local_tag_utf16 and factorize
bcoudurier
parents:
3805
diff
changeset
|
326 * Write a local tag containing an ascii string as utf-16 |
| 3804 | 327 */ |
|
3806
fa043e93fc66
introduce mxf_write_local_tag_utf16 and factorize
bcoudurier
parents:
3805
diff
changeset
|
328 static void mxf_write_local_tag_utf16(ByteIOContext *pb, int tag, const char *value) |
| 3804 | 329 { |
|
3805
d8a6432c76f3
use strlen and do not write useless trailing 0 according to specs
bcoudurier
parents:
3804
diff
changeset
|
330 int i, size = strlen(value); |
|
3806
fa043e93fc66
introduce mxf_write_local_tag_utf16 and factorize
bcoudurier
parents:
3805
diff
changeset
|
331 mxf_write_local_tag(pb, size*2, tag); |
| 3804 | 332 for (i = 0; i < size; i++) |
| 333 put_be16(pb, value[i]); | |
| 334 } | |
| 335 | |
| 3749 | 336 static void mxf_write_identification(AVFormatContext *s) |
| 337 { | |
| 338 ByteIOContext *pb = s->pb; | |
| 3810 | 339 const char *company = "FFmpeg"; |
| 340 const char *product = "OP1a Muxer"; | |
| 3807 | 341 const char *version; |
| 3810 | 342 int length; |
| 3749 | 343 |
| 344 mxf_write_metadata_key(pb, 0x013000); | |
| 345 PRINT_KEY(s, "identification key", pb->buf_ptr - 16); | |
| 346 | |
| 3808 | 347 version = s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT ? |
| 3809 | 348 "0.0.0" : AV_STRINGIFY(LIBAVFORMAT_VERSION); |
| 3810 | 349 length = 84 + (strlen(company)+strlen(product)+strlen(version))*2; // utf-16 |
| 3749 | 350 klv_encode_ber_length(pb, length); |
| 351 | |
| 352 // write uid | |
| 353 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 354 mxf_write_uuid(pb, Identification, 0); | |
| 355 PRINT_KEY(s, "identification uid", pb->buf_ptr - 16); | |
| 3811 | 356 |
| 3749 | 357 // write generation uid |
| 358 mxf_write_local_tag(pb, 16, 0x3C09); | |
| 359 mxf_write_uuid(pb, Identification, 1); | |
| 360 | |
| 3810 | 361 mxf_write_local_tag_utf16(pb, 0x3C01, company); // Company Name |
| 362 mxf_write_local_tag_utf16(pb, 0x3C02, product); // Product Name | |
| 3807 | 363 mxf_write_local_tag_utf16(pb, 0x3C04, version); // Version String |
| 3749 | 364 |
| 365 // write product uid | |
| 366 mxf_write_local_tag(pb, 16, 0x3C05); | |
| 367 mxf_write_uuid(pb, Identification, 2); | |
| 368 | |
| 369 // write modified date | |
| 370 mxf_write_local_tag(pb, 8, 0x3C06); | |
| 371 put_be64(pb, 0); | |
| 372 } | |
| 373 | |
| 374 static void mxf_write_content_storage(AVFormatContext *s) | |
| 375 { | |
| 376 ByteIOContext *pb = s->pb; | |
| 377 | |
| 378 mxf_write_metadata_key(pb, 0x011800); | |
| 379 PRINT_KEY(s, "content storage key", pb->buf_ptr - 16); | |
| 380 klv_encode_ber_length(pb, 64); | |
| 381 | |
| 382 // write uid | |
| 383 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 384 mxf_write_uuid(pb, ContentStorage, 0); | |
| 385 PRINT_KEY(s, "content storage uid", pb->buf_ptr - 16); | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
386 |
| 3749 | 387 // write package reference |
| 388 mxf_write_local_tag(pb, 16 * 2 + 8, 0x1901); | |
| 389 mxf_write_refs_count(pb, 2); | |
| 390 mxf_write_uuid(pb, MaterialPackage, 0); | |
| 391 mxf_write_uuid(pb, SourcePackage, 0); | |
| 392 } | |
| 393 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
394 static void mxf_write_package(AVFormatContext *s, enum MXFMetadataSetType type) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
395 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
396 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
397 int i; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
398 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
399 if (type == MaterialPackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
400 mxf_write_metadata_key(pb, 0x013600); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
401 PRINT_KEY(s, "Material Package key", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
402 klv_encode_ber_length(pb, 92 + 16 * s->nb_streams); |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
403 } else { |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
404 mxf_write_metadata_key(pb, 0x013700); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
405 PRINT_KEY(s, "Source Package key", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
406 klv_encode_ber_length(pb, 112 + 16 * s->nb_streams); // 20 bytes length for descriptor reference |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
407 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
408 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
409 // write uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
410 mxf_write_local_tag(pb, 16, 0x3C0A); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
411 mxf_write_uuid(pb, type, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
412 av_log(s,AV_LOG_DEBUG, "package type:%d\n", type); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
413 PRINT_KEY(s, "package uid", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
414 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
415 // write package umid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
416 mxf_write_local_tag(pb, 32, 0x4401); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
417 mxf_write_umid(pb, type, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
418 PRINT_KEY(s, "package umid second part", pb->buf_ptr - 16); |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
419 |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
420 // write create date |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
421 mxf_write_local_tag(pb, 8, 0x4405); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
422 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
423 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
424 // write modified date |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
425 mxf_write_local_tag(pb, 8, 0x4404); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
426 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
427 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
428 // write track refs |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
429 mxf_write_local_tag(pb, s->nb_streams * 16 + 8, 0x4403); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
430 mxf_write_refs_count(pb, s->nb_streams); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
431 for (i = 0; i < s->nb_streams; i++) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
432 mxf_write_uuid(pb, type == MaterialPackage ? Track : Track + TypeBottom, i); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
433 |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
434 // write multiple descriptor reference |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
435 if (type == SourcePackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
436 mxf_write_local_tag(pb, 16, 0x4701); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
437 mxf_write_uuid(pb, MultipleDescriptor, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
438 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
439 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
440 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
441 static void mxf_write_track(AVFormatContext *s, int stream_index, enum MXFMetadataSetType type, int *track_number_sign) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
442 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
443 ByteIOContext *pb = s->pb; |
| 3823 | 444 AVStream *st = s->streams[stream_index]; |
| 445 MXFStreamContext *sc = st->priv_data; | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
446 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
447 mxf_write_metadata_key(pb, 0x013b00); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
448 PRINT_KEY(s, "track key", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
449 klv_encode_ber_length(pb, 80); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
450 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
451 // write track uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
452 mxf_write_local_tag(pb, 16, 0x3C0A); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
453 mxf_write_uuid(pb, type == MaterialPackage ? Track : Track + TypeBottom, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
454 PRINT_KEY(s, "track uid", pb->buf_ptr - 16); |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
455 |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
456 // write track id |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
457 mxf_write_local_tag(pb, 4, 0x4801); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
458 put_be32(pb, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
459 |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
460 // write track number |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
461 mxf_write_local_tag(pb, 4, 0x4804); |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
462 if (type == MaterialPackage) |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
463 put_be32(pb, 0); // track number of material package is 0 |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
464 else |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
465 put_buffer(pb, sc->track_essence_element_key + 12, 4); |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
466 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
467 mxf_write_local_tag(pb, 8, 0x4B01); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
468 put_be32(pb, st->time_base.den); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
469 put_be32(pb, st->time_base.num); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
470 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
471 // write origin |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
472 mxf_write_local_tag(pb, 8, 0x4B02); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
473 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
474 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
475 // write sequence refs |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
476 mxf_write_local_tag(pb, 16, 0x4803); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
477 mxf_write_uuid(pb, type == MaterialPackage ? Sequence: Sequence + TypeBottom, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
478 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
479 |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
480 static void mxf_write_common_fields(ByteIOContext *pb, AVStream *st) |
| 3743 | 481 { |
| 3823 | 482 const MXFDataDefinitionUL *data_def_ul = mxf_get_data_definition_ul(st->codec->codec_type); |
| 3743 | 483 // find data define uls |
| 484 mxf_write_local_tag(pb, 16, 0x0201); | |
| 485 put_buffer(pb, data_def_ul->uid, 16); | |
| 486 | |
| 487 // write duration | |
| 488 mxf_write_local_tag(pb, 8, 0x0202); | |
| 489 put_be64(pb, st->duration); | |
| 490 } | |
| 491 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
492 static void mxf_write_sequence(AVFormatContext *s, int stream_index, enum MXFMetadataSetType type) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
493 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
494 ByteIOContext *pb = s->pb; |
| 3823 | 495 AVStream *st = s->streams[stream_index]; |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
496 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
497 mxf_write_metadata_key(pb, 0x010f00); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
498 PRINT_KEY(s, "sequence key", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
499 klv_encode_ber_length(pb, 80); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
500 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
501 mxf_write_local_tag(pb, 16, 0x3C0A); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
502 mxf_write_uuid(pb, type == MaterialPackage ? Sequence: Sequence + TypeBottom, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
503 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
504 PRINT_KEY(s, "sequence uid", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
505 mxf_write_common_fields(pb, st); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
506 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
507 // write structural component |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
508 mxf_write_local_tag(pb, 16 + 8, 0x1001); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
509 mxf_write_refs_count(pb, 1); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
510 mxf_write_uuid(pb, type == MaterialPackage ? SourceClip: SourceClip + TypeBottom, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
511 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
512 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
513 static void mxf_write_structural_component(AVFormatContext *s, int stream_index, enum MXFMetadataSetType type) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
514 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
515 ByteIOContext *pb = s->pb; |
| 3823 | 516 AVStream *st = s->streams[stream_index]; |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
517 int i; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
518 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
519 mxf_write_metadata_key(pb, 0x011100); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
520 PRINT_KEY(s, "sturctural component key", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
521 klv_encode_ber_length(pb, 108); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
522 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
523 // write uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
524 mxf_write_local_tag(pb, 16, 0x3C0A); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
525 mxf_write_uuid(pb, type == MaterialPackage ? SourceClip: SourceClip + TypeBottom, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
526 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
527 PRINT_KEY(s, "structural component uid", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
528 mxf_write_common_fields(pb, st); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
529 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
530 // write start_position |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
531 mxf_write_local_tag(pb, 8, 0x1201); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
532 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
533 |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
534 // write source package uid, end of the reference |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
535 mxf_write_local_tag(pb, 32, 0x1101); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
536 if (type == SourcePackage) { |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
537 for (i = 0; i < 4; i++) |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
538 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
539 } else |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
540 mxf_write_umid(pb, SourcePackage, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
541 |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
542 // write source track id |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
543 mxf_write_local_tag(pb, 4, 0x1102); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
544 if (type == SourcePackage) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
545 put_be32(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
546 else |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
547 put_be32(pb, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
548 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
549 |
| 3749 | 550 static void mxf_write_multi_descriptor(AVFormatContext *s) |
| 551 { | |
| 552 ByteIOContext *pb = s->pb; | |
| 553 int i; | |
| 554 | |
| 555 mxf_write_metadata_key(pb, 0x014400); | |
| 556 PRINT_KEY(s, "multiple descriptor key", pb->buf_ptr - 16); | |
| 557 klv_encode_ber_length(pb, 64 + 16 * s->nb_streams); | |
| 558 | |
| 559 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 560 mxf_write_uuid(pb, MultipleDescriptor, 0); | |
| 561 PRINT_KEY(s, "multi_desc uid", pb->buf_ptr - 16); | |
| 562 | |
| 563 // write sample rate | |
| 564 mxf_write_local_tag(pb, 8, 0x3001); | |
| 565 put_be32(pb, s->streams[0]->time_base.den); | |
| 566 put_be32(pb, s->streams[0]->time_base.num); | |
| 567 | |
| 568 // write essence container ul | |
| 569 mxf_write_local_tag(pb, 16, 0x3004); | |
| 570 put_buffer(pb, multiple_desc_ul, 16); | |
| 571 | |
| 572 // write sub descriptor refs | |
| 573 mxf_write_local_tag(pb, s->nb_streams * 16 + 8, 0x3F01); | |
| 574 mxf_write_refs_count(pb, s->nb_streams); | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
575 for (i = 0; i < s->nb_streams; i++) |
| 3749 | 576 mxf_write_uuid(pb, SubDescriptor, i); |
| 577 } | |
| 578 | |
| 3813 | 579 static void mxf_write_generic_desc(ByteIOContext *pb, const MXFDescriptorWriteTableEntry *desc_tbl, AVStream *st) |
| 3743 | 580 { |
|
3817
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
581 MXFStreamContext *sc = st->priv_data; |
| 3743 | 582 |
| 583 put_buffer(pb, desc_tbl->key, 16); | |
| 3749 | 584 klv_encode_ber_length(pb, 108); |
| 3743 | 585 |
| 586 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 587 mxf_write_uuid(pb, SubDescriptor, st->index); | |
| 588 | |
| 589 mxf_write_local_tag(pb, 4, 0x3006); | |
| 590 put_be32(pb, st->index); | |
| 591 | |
| 3749 | 592 mxf_write_local_tag(pb, 8, 0x3001); |
| 593 put_be32(pb, st->time_base.den); | |
| 594 put_be32(pb, st->time_base.num); | |
| 595 | |
| 3743 | 596 mxf_write_local_tag(pb, 16, 0x3004); |
|
3817
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
597 put_buffer(pb, *sc->essence_container_ul, 16); |
| 3743 | 598 } |
| 599 | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
600 static void mxf_write_mpegvideo_desc(AVFormatContext *s, const MXFDescriptorWriteTableEntry *desc_tbl, int stream_index) |
| 3743 | 601 { |
| 602 ByteIOContext *pb = s->pb; | |
| 3823 | 603 AVStream *st = s->streams[stream_index]; |
| 3743 | 604 |
| 3813 | 605 mxf_write_generic_desc(pb, desc_tbl, st); |
| 3743 | 606 |
| 607 mxf_write_local_tag(pb, 4, 0x3203); | |
| 608 put_be32(pb, st->codec->width); | |
| 609 | |
| 610 mxf_write_local_tag(pb, 4, 0x3202); | |
| 611 put_be32(pb, st->codec->height); | |
| 612 | |
| 613 mxf_write_local_tag(pb, 8, 0x320E); | |
|
3759
27537074f2a9
convert every muxer/demuxer to write/read sample_aspect_ratio from/to
aurel
parents:
3749
diff
changeset
|
614 put_be32(pb, st->codec->height * st->sample_aspect_ratio.den); |
|
27537074f2a9
convert every muxer/demuxer to write/read sample_aspect_ratio from/to
aurel
parents:
3749
diff
changeset
|
615 put_be32(pb, st->codec->width * st->sample_aspect_ratio.num); |
| 3743 | 616 |
| 617 // tmp write, will modified later | |
| 618 mxf_write_local_tag(pb, 16, 0x3201); | |
| 619 put_buffer(pb, ff_mxf_codec_uls->uid, 16); | |
| 620 } | |
| 621 | |
| 3749 | 622 static void mxf_write_wav_desc(AVFormatContext *s, const MXFDescriptorWriteTableEntry *desc_tbl, int stream_index) |
| 3743 | 623 { |
| 624 ByteIOContext *pb = s->pb; | |
| 625 AVStream *st; | |
| 626 | |
| 627 st = s->streams[stream_index]; | |
| 3813 | 628 mxf_write_generic_desc(pb, desc_tbl, st); |
| 3743 | 629 |
| 630 // write audio sampling rate | |
| 631 mxf_write_local_tag(pb, 8, 0x3D03); | |
| 632 put_be32(pb, st->codec->sample_rate); | |
| 633 put_be32(pb, 1); | |
| 634 | |
| 635 mxf_write_local_tag(pb, 4, 0x3D07); | |
| 636 put_be32(pb, st->codec->channels); | |
| 637 | |
| 638 mxf_write_local_tag(pb, 4, 0x3D01); | |
| 639 put_be32(pb, st->codec->bits_per_sample); | |
| 640 | |
| 641 // tmp write, will modified later | |
| 642 mxf_write_local_tag(pb, 16, 0x3201); | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
643 put_buffer(pb, (ff_mxf_codec_uls + 8)->uid, 16); |
| 3743 | 644 } |
| 645 | |
| 646 static const MXFDescriptorWriteTableEntry mxf_descriptor_write_table[] = { | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
647 { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x51,0x00 }, mxf_write_mpegvideo_desc, CODEC_ID_MPEG2VIDEO}, |
| 3743 | 648 { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x48,0x00 }, mxf_write_wav_desc, CODEC_ID_PCM_S16LE}, |
| 649 { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, CODEC_ID_NONE}, | |
| 650 }; | |
| 651 | |
| 3749 | 652 static void mxf_build_structural_metadata(AVFormatContext *s, enum MXFMetadataSetType type) |
| 3743 | 653 { |
| 654 int i; | |
| 655 const MXFDescriptorWriteTableEntry *desc = NULL; | |
| 3824 | 656 int track_number_sign[sizeof(mxf_essence_element_key)/ |
| 657 sizeof(*mxf_essence_element_key)] = {0}; | |
| 3743 | 658 |
| 3749 | 659 mxf_write_package(s, type); |
| 660 if (type == SourcePackage) | |
| 661 mxf_write_multi_descriptor(s); | |
| 3743 | 662 |
| 663 for (i = 0;i < s->nb_streams; i++) { | |
| 3749 | 664 mxf_write_track(s, i, type, track_number_sign); |
| 665 mxf_write_sequence(s, i, type); | |
| 666 mxf_write_structural_component(s, i, type); | |
| 3743 | 667 |
| 668 if (type == SourcePackage) { | |
| 669 for (desc = mxf_descriptor_write_table; desc->write; desc++) { | |
| 670 if (s->streams[i]->codec->codec_id == desc->type) { | |
| 3749 | 671 desc->write(s, desc, i); |
| 3743 | 672 break; |
| 673 } | |
| 674 } | |
| 675 } | |
| 676 } | |
| 677 } | |
| 678 | |
| 3740 | 679 static int mxf_write_header_metadata_sets(AVFormatContext *s) |
| 680 { | |
| 3749 | 681 mxf_write_preface(s); |
| 682 mxf_write_identification(s); | |
| 683 mxf_write_content_storage(s); | |
| 684 mxf_build_structural_metadata(s, MaterialPackage); | |
| 685 mxf_build_structural_metadata(s, SourcePackage); | |
| 3740 | 686 return 0; |
| 687 } | |
| 688 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
689 static void mxf_write_partition(AVFormatContext *s, int64_t byte_position, int bodysid, const uint8_t *key) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
690 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
691 MXFContext *mxf = s->priv_data; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
692 ByteIOContext *pb = s->pb; |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
693 |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
694 // write klv |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
695 put_buffer(pb, key, 16); |
| 3821 | 696 |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
697 klv_encode_ber_length(pb, 88 + 16 * mxf->essence_container_count); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
698 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
699 // write partition value |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
700 put_be16(pb, 1); // majorVersion |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
701 put_be16(pb, 2); // minorVersion |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
702 put_be32(pb, 1); // kagSize |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
703 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
704 put_be64(pb, byte_position); // thisPartition |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
705 put_be64(pb, 0); // previousPartition |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
706 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
707 // set offset |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
708 if (!byte_position) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
709 mxf->header_footer_partition_offset = url_ftell(pb); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
710 put_be64(pb, byte_position); // footerPartition,update later |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
711 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
712 // set offset |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
713 if (!byte_position) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
714 mxf->header_byte_count_offset = url_ftell(pb); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
715 put_be64(pb, 0); // headerByteCount, update later |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
716 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
717 // no indexTable |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
718 put_be64(pb, 0); // indexByteCount |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
719 put_be32(pb, 0); // indexSID |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
720 put_be64(pb, 0); // bodyOffset |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
721 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
722 put_be32(pb, bodysid); // bodySID |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
723 put_buffer(pb, op1a_ul, 16); // operational pattern |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
724 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
725 // essence container |
| 3821 | 726 mxf_write_essence_container_refs(s); |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
727 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
728 |
| 3749 | 729 static int mux_write_header(AVFormatContext *s) |
| 730 { | |
| 731 MXFContext *mxf = s->priv_data; | |
| 732 ByteIOContext *pb = s->pb; | |
| 733 int64_t header_metadata_start, offset_now; | |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
734 int i, index; |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
735 uint8_t present[sizeof(mxf_essence_container_uls)/ |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
736 sizeof(*mxf_essence_container_uls)] = {0}; |
|
3816
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
737 |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
738 for (i = 0; i < s->nb_streams; i++) { |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
739 AVStream *st = s->streams[i]; |
| 3824 | 740 MXFStreamContext *sc = av_mallocz(sizeof(*sc)); |
|
3816
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
741 if (!sc) |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
742 return AVERROR(ENOMEM); |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
743 st->priv_data = sc; |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
744 // set pts information |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
745 if (st->codec->codec_type == CODEC_TYPE_VIDEO) |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
746 av_set_pts_info(st, 64, 1, st->codec->time_base.den); |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
747 else if (st->codec->codec_type == CODEC_TYPE_AUDIO) |
|
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
748 av_set_pts_info(st, 64, 1, st->codec->sample_rate); |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
749 sc->essence_container_ul = mxf_get_essence_container_ul(st->codec->codec_id, &index); |
|
3817
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
750 if (!sc->essence_container_ul) { |
|
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
751 av_log(s, AV_LOG_ERROR, "track %d: could not find essence container ul, " |
|
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
752 "codec not currently supported in container\n", i); |
|
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
753 return -1; |
|
22831cc65a35
get essence container ul in header and set it per track, check for unsupported codec
bcoudurier
parents:
3816
diff
changeset
|
754 } |
|
3818
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
755 if (!present[index]) { |
|
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
756 mxf->essence_containers_indices[mxf->essence_container_count++] = index; |
|
ae0d01b63679
compute essence containers in mxf_write_header, this simplifies the code
bcoudurier
parents:
3817
diff
changeset
|
757 present[index] = 1; |
|
3826
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
758 } else |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
759 present[index]++; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
760 memcpy(sc->track_essence_element_key, mxf_essence_element_key[index].uid, 15); |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
761 sc->track_essence_element_key[15] = present[index]; |
|
da2d0c162cde
introduce MXFContainerEssencePair to associate essence element key and
bcoudurier
parents:
3825
diff
changeset
|
762 PRINT_KEY(s, "track essence element key", sc->track_essence_element_key); |
|
3816
50bdbde13ecf
move per track code in mxf_write_header to be able to check for unsupported configuration
bcoudurier
parents:
3815
diff
changeset
|
763 } |
| 3749 | 764 |
| 765 mxf_write_partition(s, 0, 1, header_partition_key); | |
| 766 | |
| 767 // mark the start of the headermetadata and calculate metadata size | |
| 768 header_metadata_start = url_ftell(s->pb); | |
| 769 mxf_write_primer_pack(s); | |
| 770 if (mxf_write_header_metadata_sets(s) < 0) | |
| 771 goto fail; | |
| 772 offset_now = url_ftell(s->pb); | |
| 773 mxf->header_byte_count = offset_now - header_metadata_start; | |
| 774 // update header_byte_count | |
| 775 url_fseek(pb, mxf->header_byte_count_offset, SEEK_SET); | |
| 776 put_be64(pb, mxf->header_byte_count); | |
| 777 url_fseek(pb, offset_now, SEEK_SET); | |
| 778 | |
| 779 put_flush_packet(pb); | |
| 780 return 0; | |
| 781 fail: | |
| 782 mxf_free(s); | |
| 783 return -1; | |
| 784 } | |
| 785 | |
| 3778 | 786 static int mux_write_packet(AVFormatContext *s, AVPacket *pkt) |
| 787 { | |
| 788 ByteIOContext *pb = s->pb; | |
| 789 AVStream *st = s->streams[pkt->stream_index]; | |
| 790 MXFStreamContext *sc = st->priv_data; | |
| 791 | |
| 792 put_buffer(pb, sc->track_essence_element_key, 16); // write key | |
| 793 klv_encode_ber_length(pb, pkt->size); // write length | |
| 794 put_buffer(pb, pkt->data, pkt->size); // write value | |
| 795 | |
| 796 put_flush_packet(pb); | |
| 797 return 0; | |
| 798 } | |
| 799 | |
| 3749 | 800 static void mxf_update_header_partition(AVFormatContext *s, int64_t footer_partition_offset) |
| 3740 | 801 { |
| 802 MXFContext *mxf = s->priv_data; | |
| 803 ByteIOContext *pb = s->pb; | |
| 804 | |
| 805 url_fseek(pb, mxf->header_footer_partition_offset, SEEK_SET); | |
| 806 put_be64(pb, footer_partition_offset); | |
| 807 put_flush_packet(pb); | |
| 3749 | 808 } |
| 809 | |
| 810 | |
| 811 static int mux_write_footer(AVFormatContext *s) | |
| 812 { | |
| 813 ByteIOContext *pb = s->pb; | |
|
3812
1db39c874eb7
cosmetics, remove useless braces, move comments where appropriate, remove whitespaces
bcoudurier
parents:
3811
diff
changeset
|
814 int64_t byte_position= url_ftell(pb); |
| 3749 | 815 |
| 816 if (!url_is_streamed(s->pb)) { | |
| 817 mxf_write_partition(s, byte_position, 0, footer_partition_key); | |
| 818 put_flush_packet(pb); | |
| 819 mxf_update_header_partition(s, byte_position); | |
| 820 } | |
| 821 mxf_free(s); | |
| 3740 | 822 return 0; |
| 823 } | |
| 3749 | 824 |
| 3721 | 825 AVOutputFormat mxf_muxer = { |
| 826 "mxf", | |
| 827 NULL_IF_CONFIG_SMALL("Material eXchange Format"), | |
| 828 NULL, | |
| 829 "mxf", | |
| 830 sizeof(MXFContext), | |
| 831 CODEC_ID_PCM_S16LE, | |
| 832 CODEC_ID_MPEG2VIDEO, | |
| 833 mux_write_header, | |
| 834 mux_write_packet, | |
| 835 mux_write_footer, | |
| 836 }; | |
| 3749 | 837 |
| 838 |
