Mercurial > libavformat.hg
annotate mxfenc.c @ 3778:85d3aca03313 libavformat
Import more MXF muxer code from the SoC tree
| author | vitor |
|---|---|
| date | Mon, 25 Aug 2008 20:28:12 +0000 |
| parents | fde28855a81e |
| children | 261cd3e672e5 |
| 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; | |
| 43 } MXFStreamContext; | |
| 44 | |
| 45 typedef struct MXFContext { | |
| 46 int64_t header_byte_count; | |
| 47 int64_t header_byte_count_offset; | |
| 48 int64_t header_footer_partition_offset; | |
| 49 int essence_container_count; | |
| 50 } MXFContext; | |
| 3743 | 51 |
| 52 typedef struct { | |
| 53 const UID key; | |
| 3749 | 54 void (*write)(); |
| 3743 | 55 enum CodecType type; |
| 56 } MXFDescriptorWriteTableEntry; | |
| 57 | |
| 3735 | 58 static const uint8_t uuid_base[] = { 0xAD,0xAB,0x44,0x24,0x2f,0x25,0x4d,0xc7,0x92,0xff,0x29,0xbd }; |
| 59 static const uint8_t umid_base[] = { 0x06,0x0A,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x00,0x13,0x00,0x00,0x00 }; | |
| 60 | |
| 61 /** | |
| 62 * complete key for operation pattern, partitions, and primer pack | |
| 63 */ | |
| 64 static const uint8_t op1a_ul[] = { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x01,0x01,0x00 }; | |
| 65 static const uint8_t header_partition_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x02,0x04,0x00 }; // ClosedComplete | |
| 66 static const uint8_t footer_partition_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x04,0x04,0x00 }; // ClosedComplete | |
| 67 static const uint8_t primer_pack_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x05,0x01,0x00 }; | |
| 68 | |
| 3743 | 69 /** |
| 70 * partial key for header metadata | |
| 71 */ | |
| 72 static const uint8_t header_metadata_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0D,0x01,0x01,0x01,0x01 }; | |
| 73 | |
| 74 static const MXFCodecUL mxf_essence_element_key[] = { | |
| 75 { { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x15,0x01,0x05,0x00 }, 14, CODEC_ID_MPEG2VIDEO}, | |
| 76 { { 0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x16,0x01,0x01,0x00 }, 14, CODEC_ID_PCM_S16LE}, | |
| 77 { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, CODEC_ID_NONE}, | |
| 78 }; | |
| 79 | |
| 80 static const uint8_t multiple_desc_ul[] = { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x0D,0x01,0x03,0x01,0x02,0x7F,0x01,0x00 }; | |
| 81 | |
| 3749 | 82 /** |
| 83 * SMPTE RP210 http://www.smpte-ra.org/mdd/index.html | |
| 84 */ | |
| 85 static const MXFLocalTagPair mxf_local_tag_batch[] = { | |
| 86 // preface set | |
| 87 { 0x3C0A, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x02,0x00,0x00,0x00,0x00}}, /* Instance UID */ | |
| 88 { 0x3B02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x04,0x00,0x00}}, /* Last Modified Date */ | |
| 89 { 0x3B05, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x03,0x01,0x02,0x01,0x05,0x00,0x00,0x00}}, /* Version */ | |
| 90 { 0x3B06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x04,0x00,0x00}}, /* Identifications reference */ | |
| 91 { 0x3B03, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x01,0x00,0x00}}, /* Content Storage reference */ | |
| 92 { 0x3B09, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x03,0x00,0x00,0x00,0x00}}, /* Operational Pattern UL */ | |
| 93 { 0x3B0A, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x10,0x02,0x01,0x00,0x00}}, /* Essence Containers UL batch */ | |
| 94 { 0x3B0B, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x01,0x02,0x02,0x10,0x02,0x02,0x00,0x00}}, /* DM Schemes UL batch */ | |
| 95 // Identification | |
| 96 { 0x3C09, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x01,0x00,0x00,0x00}}, /* This Generation UID */ | |
| 97 { 0x3C01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x02,0x01,0x00,0x00}}, /* Company Name */ | |
| 98 { 0x3C02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x03,0x01,0x00,0x00}}, /* Product Name */ | |
| 99 { 0x3C04, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x04,0x00,0x00,0x00}}, /* Version String */ | |
| 100 { 0x3C05, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x20,0x07,0x01,0x07,0x00,0x00,0x00}}, /* Product ID */ | |
| 101 { 0x3C06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x03,0x00,0x00}}, /* Modification Date */ | |
| 102 // Content Storage | |
| 103 { 0x1901, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x05,0x01,0x00,0x00}}, /* Package strong reference batch */ | |
| 104 // Essence Container Data | |
| 105 { 0x2701, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x06,0x01,0x00,0x00,0x00}}, /* Linked Package UID */ | |
| 106 { 0x3F07, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x01,0x03,0x04,0x04,0x00,0x00,0x00,0x00}}, /* BodySID */ | |
| 107 // Package | |
| 108 { 0x4401, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x10,0x00,0x00,0x00,0x00}}, /* Package UID */ | |
| 109 { 0x4405, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x01,0x03,0x00,0x00}}, /* Package Creation Date */ | |
| 110 { 0x4404, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x10,0x02,0x05,0x00,0x00}}, /* Package Modified Date */ | |
| 111 { 0x4403, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x05,0x00,0x00}}, /* Tracks Strong reference array */ | |
| 112 { 0x4701, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x03,0x00,0x00}}, /* Descriptor */ | |
| 113 // Track | |
| 114 { 0x4801, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x01,0x07,0x01,0x01,0x00,0x00,0x00,0x00}}, /* Track ID */ | |
| 115 { 0x4804, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x01,0x03,0x00,0x00}}, /* Track Numberr */ | |
| 116 { 0x4B01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x05,0x30,0x04,0x05,0x00,0x00,0x00,0x00}}, /* Edit Rate */ | |
| 117 { 0x4B02, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x01,0x03,0x01,0x03,0x00,0x00}}, /* Origin */ | |
| 118 { 0x4803, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x02,0x04,0x00,0x00}}, /* Sequence reference */ | |
| 119 // Sequence | |
| 120 { 0x0201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x07,0x01,0x00,0x00,0x00,0x00,0x00}}, /* Data Definition UL */ | |
| 121 { 0x0202, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x07,0x02,0x02,0x01,0x01,0x03,0x00,0x00}}, /* Duration */ | |
| 122 { 0x1001, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x06,0x09,0x00,0x00}}, /* Structural Components reference array */ | |
| 123 // Source Clip | |
| 124 { 0x1201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x07,0x02,0x01,0x03,0x01,0x0A,0x00,0x00}}, /* Start position */ | |
| 125 { 0x1101, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x03,0x01,0x00,0x00,0x00}}, /* SourcePackageID */ | |
| 126 { 0x1102, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x03,0x02,0x00,0x00,0x00}}, /* SourceTrackID */ | |
| 127 // file descriptor | |
| 128 { 0x3F01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x06,0x01,0x01,0x04,0x06,0x0B,0x00,0x00}}, /* sub descriptor uid*/ | |
| 129 { 0x3006, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x06,0x01,0x01,0x03,0x05,0x00,0x00,0x00}}, /* Linked Track ID */ | |
| 130 { 0x3001, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x06,0x01,0x01,0x00,0x00,0x00,0x00}}, /* SampleRate */ | |
| 131 { 0x3004, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x06,0x01,0x01,0x04,0x01,0x02,0x00,0x00}}, /* essence container ul */ | |
| 132 // generic picture eseence descriptor | |
| 133 { 0x3203, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x05,0x02,0x02,0x00,0x00,0x00}}, /* stored width */ | |
| 134 { 0x3202, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x05,0x02,0x01,0x00,0x00,0x00}}, /* stored heigth */ | |
| 135 { 0x320E, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x01,0x04,0x01,0x01,0x01,0x01,0x00,0x00,0x00}}, /* aspect ratio*/ | |
| 136 { 0x3201, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x01,0x06,0x01,0x00,0x00,0x00,0x00}}, /* picture essence coding*/ | |
| 137 // generic sound essence descriptor | |
| 138 { 0x3D03, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x04,0x02,0x03,0x01,0x01,0x01,0x00,0x00}}, /* audio sampling rate */ | |
| 139 { 0x3D07, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x05,0x04,0x02,0x01,0x01,0x04,0x00,0x00,0x00}}, /* channel count */ | |
| 140 { 0x3D01, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x04,0x04,0x02,0x03,0x03,0x04,0x00,0x00,0x00}}, /* quantization bits */ | |
| 141 { 0x3D06, {0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0x02,0x04,0x01,0x06,0x01,0x00,0x00,0x00,0x00}}, /* sound essence compression */ | |
| 142 }; | |
| 143 | |
| 3735 | 144 static void mxf_write_uuid(ByteIOContext *pb, enum CodecID type, int value) |
| 145 { | |
| 146 put_buffer(pb, uuid_base, 12); | |
| 147 put_be16(pb, type); | |
| 148 put_be16(pb, value); | |
| 149 } | |
| 150 | |
| 3740 | 151 static void mxf_write_umid(ByteIOContext *pb, enum CodecID type, int value) |
| 152 { | |
| 153 put_buffer(pb, umid_base, 16); | |
| 154 mxf_write_uuid(pb, type, value); | |
| 155 } | |
| 3743 | 156 |
| 157 static void mxf_write_refs_count(ByteIOContext *pb, int ref_count) | |
| 158 { | |
| 159 put_be32(pb, ref_count); | |
| 160 put_be32(pb, 16); | |
| 161 } | |
| 162 | |
| 3735 | 163 static int klv_encode_ber_length(ByteIOContext *pb, uint64_t len) |
| 164 { | |
| 165 // Determine the best BER size | |
| 166 int size; | |
| 167 if (len < 128) { | |
| 168 //short form | |
| 169 put_byte(pb, len); | |
| 170 return 1; | |
| 171 } | |
| 172 | |
| 173 size = (av_log2(len) >> 3) + 1; | |
| 174 | |
| 175 // long form | |
| 176 put_byte(pb, 0x80 + size); | |
| 177 while(size) { | |
| 178 size --; | |
| 179 put_byte(pb, len >> 8 * size & 0xff); | |
| 180 } | |
| 181 return 0; | |
| 182 } | |
| 183 | |
| 3721 | 184 static const MXFCodecUL *mxf_get_essence_container_ul(enum CodecID type) |
| 185 { | |
| 3735 | 186 const MXFCodecUL *uls = ff_mxf_essence_container_uls; |
| 3721 | 187 while (uls->id != CODEC_ID_NONE) { |
| 188 if (uls->id == type) | |
| 189 break; | |
| 190 uls++; | |
| 191 } | |
| 192 return uls; | |
| 193 } | |
| 194 | |
| 3749 | 195 static void mxf_write_primer_pack(AVFormatContext *s) |
| 3735 | 196 { |
| 197 ByteIOContext *pb = s->pb; | |
| 198 int local_tag_number, i = 0; | |
| 199 | |
| 200 local_tag_number = sizeof(mxf_local_tag_batch) / sizeof(MXFLocalTagPair); | |
| 201 | |
| 202 put_buffer(pb, primer_pack_key, 16); | |
| 203 klv_encode_ber_length(pb, local_tag_number * 18 + 8); | |
| 204 | |
| 205 put_be32(pb, local_tag_number); // local_tag num | |
| 206 put_be32(pb, 18); // item size, always 18 according to the specs | |
| 207 | |
| 208 for (i = 0; i < local_tag_number; i++) { | |
| 209 put_be16(pb, mxf_local_tag_batch[i].local_tag); | |
| 210 put_buffer(pb, mxf_local_tag_batch[i].uid, 16); | |
| 211 } | |
| 212 } | |
| 213 | |
| 214 static void mxf_write_local_tag(ByteIOContext *pb, int value_size, int tag) | |
| 215 { | |
| 216 put_be16(pb, tag); | |
| 217 put_be16(pb, value_size); | |
| 218 } | |
| 219 | |
| 3740 | 220 static void mxf_write_metadata_key(ByteIOContext *pb, unsigned int value) |
| 221 { | |
| 222 put_buffer(pb, header_metadata_key, 13); | |
| 223 put_be24(pb, value); | |
| 224 } | |
| 225 | |
| 3721 | 226 static void mxf_free(AVFormatContext *s) |
| 227 { | |
| 228 AVStream *st; | |
| 229 int i; | |
| 230 | |
| 231 for (i = 0; i < s->nb_streams; i++) { | |
| 232 st = s->streams[i]; | |
| 233 av_freep(&st->priv_data); | |
| 234 } | |
| 235 } | |
| 236 | |
| 237 static const MXFDataDefinitionUL *mxf_get_data_definition_ul(enum CodecType type) | |
| 238 { | |
| 3735 | 239 const MXFDataDefinitionUL *uls = ff_mxf_data_definition_uls; |
| 3721 | 240 while (uls->type != CODEC_TYPE_DATA) { |
| 241 if (type == uls->type) | |
| 242 break; | |
| 243 uls ++; | |
| 244 } | |
| 245 return uls; | |
| 246 } | |
| 247 | |
| 3749 | 248 static void mxf_write_preface(AVFormatContext *s) |
| 249 { | |
| 250 MXFContext *mxf = s->priv_data; | |
| 251 ByteIOContext *pb = s->pb; | |
| 252 | |
| 253 mxf_write_metadata_key(pb, 0x012f00); | |
| 254 PRINT_KEY(s, "preface key", pb->buf_ptr - 16); | |
| 255 klv_encode_ber_length(pb, 130 + 16 * mxf->essence_container_count); | |
| 256 | |
| 257 // write preface set uid | |
| 258 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 259 mxf_write_uuid(pb, Preface, 0); | |
| 260 PRINT_KEY(s, "preface uid", pb->buf_ptr - 16); | |
| 261 | |
| 262 // write create date as unknown | |
| 263 mxf_write_local_tag(pb, 8, 0x3B02); | |
| 264 put_be64(pb, 0); | |
| 265 | |
| 266 // write version | |
| 267 mxf_write_local_tag(pb, 2, 0x3B05); | |
| 268 put_be16(pb, 1); | |
| 269 | |
| 270 // write identification_refs | |
| 271 mxf_write_local_tag(pb, 16 + 8, 0x3B06); | |
| 272 mxf_write_refs_count(pb, 1); | |
| 273 mxf_write_uuid(pb, Identification, 0); | |
| 274 | |
| 275 // write content_storage_refs | |
| 276 mxf_write_local_tag(pb, 16, 0x3B03); | |
| 277 mxf_write_uuid(pb, ContentStorage, 0); | |
| 278 | |
| 279 mxf_write_local_tag(pb, 16, 0x3B09); | |
| 280 put_buffer(pb, op1a_ul, 16); | |
| 281 | |
| 282 // write essence_container_refs | |
| 283 mxf_write_local_tag(pb, 8 + 16 * mxf->essence_container_count, 0x3B0A); | |
| 284 mxf_write_essence_container_refs(s, 1); | |
| 285 | |
| 286 // write dm_scheme_refs | |
| 287 mxf_write_local_tag(pb, 8, 0x3B0B); | |
| 288 put_be64(pb, 0); | |
| 289 } | |
| 290 | |
| 291 static void mxf_write_identification(AVFormatContext *s) | |
| 292 { | |
| 293 ByteIOContext *pb = s->pb; | |
| 294 int length, company_name_len, product_name_len, version_string_len; | |
| 295 | |
| 296 mxf_write_metadata_key(pb, 0x013000); | |
| 297 PRINT_KEY(s, "identification key", pb->buf_ptr - 16); | |
| 298 company_name_len = sizeof("FFmpeg"); | |
| 299 product_name_len = sizeof("OP1a Muxer"); | |
| 300 | |
| 301 length = 80 + company_name_len + product_name_len; | |
| 302 if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) { | |
| 303 version_string_len = sizeof(LIBAVFORMAT_IDENT); | |
| 304 length += 4 + version_string_len; | |
| 305 } | |
| 306 klv_encode_ber_length(pb, length); | |
| 307 | |
| 308 // write uid | |
| 309 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 310 mxf_write_uuid(pb, Identification, 0); | |
| 311 PRINT_KEY(s, "identification uid", pb->buf_ptr - 16); | |
| 312 // write generation uid | |
| 313 mxf_write_local_tag(pb, 16, 0x3C09); | |
| 314 mxf_write_uuid(pb, Identification, 1); | |
| 315 | |
| 316 mxf_write_local_tag(pb, company_name_len, 0x3C01); | |
| 317 put_buffer(pb, "FFmpeg", company_name_len); | |
| 318 | |
| 319 mxf_write_local_tag(pb, product_name_len, 0x3C02); | |
| 320 put_buffer(pb, "OP1a Muxer", product_name_len); | |
| 321 | |
| 322 if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) { | |
| 323 mxf_write_local_tag(pb, version_string_len, 0x3C04); | |
| 324 put_buffer(pb, LIBAVFORMAT_IDENT, version_string_len); | |
| 325 } | |
| 326 | |
| 327 // write product uid | |
| 328 mxf_write_local_tag(pb, 16, 0x3C05); | |
| 329 mxf_write_uuid(pb, Identification, 2); | |
| 330 | |
| 331 // write modified date | |
| 332 mxf_write_local_tag(pb, 8, 0x3C06); | |
| 333 put_be64(pb, 0); | |
| 334 } | |
| 335 | |
| 336 static void mxf_write_content_storage(AVFormatContext *s) | |
| 337 { | |
| 338 ByteIOContext *pb = s->pb; | |
| 339 | |
| 340 mxf_write_metadata_key(pb, 0x011800); | |
| 341 PRINT_KEY(s, "content storage key", pb->buf_ptr - 16); | |
| 342 klv_encode_ber_length(pb, 64); | |
| 343 | |
| 344 // write uid | |
| 345 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 346 mxf_write_uuid(pb, ContentStorage, 0); | |
| 347 PRINT_KEY(s, "content storage uid", pb->buf_ptr - 16); | |
| 348 // write package reference | |
| 349 mxf_write_local_tag(pb, 16 * 2 + 8, 0x1901); | |
| 350 mxf_write_refs_count(pb, 2); | |
| 351 mxf_write_uuid(pb, MaterialPackage, 0); | |
| 352 mxf_write_uuid(pb, SourcePackage, 0); | |
| 353 } | |
| 354 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
355 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
|
356 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
357 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
358 int i; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
359 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
360 if (type == MaterialPackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
361 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
|
362 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
|
363 klv_encode_ber_length(pb, 92 + 16 * s->nb_streams); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
364 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
365 else { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
366 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
|
367 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
|
368 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
|
369 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
370 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
371 // write uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
372 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
|
373 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
|
374 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
|
375 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
|
376 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
377 // write package umid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
378 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
|
379 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
|
380 PRINT_KEY(s, "package umid second part", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
381 // write create date |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
382 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
|
383 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
384 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
385 // write modified date |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
386 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
|
387 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
388 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
389 // write track refs |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
390 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
|
391 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
|
392 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
|
393 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
|
394 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
395 if (type == SourcePackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
396 // write multiple descriptor reference |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
397 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
|
398 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
|
399 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
400 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
401 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
402 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
|
403 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
404 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
405 AVStream *st; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
406 MXFStreamContext *sc; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
407 const MXFCodecUL *element; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
408 int i = 0; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
409 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
410 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
|
411 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
|
412 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
|
413 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
414 st = s->streams[stream_index]; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
415 sc = st->priv_data; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
416 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
417 // write track uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
418 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
|
419 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
|
420 PRINT_KEY(s, "track uid", pb->buf_ptr - 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
421 // write track id |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
422 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
|
423 put_be32(pb, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
424 |
|
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, 4, 0x4804); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
426 if (type != MaterialPackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
427 for (element = mxf_essence_element_key; element->id != CODEC_ID_NONE; element++) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
428 if (st->codec->codec_id== element->id) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
429 // set essence_element key |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
430 memcpy(sc->track_essence_element_key, element->uid, 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
431 sc->track_essence_element_key[15] += track_number_sign[i]; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
432 // write track number |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
433 put_buffer(pb, sc->track_essence_element_key + 12, 4); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
434 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
435 track_number_sign[i] ++; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
436 break; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
437 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
438 i++; |
|
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 } else { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
441 put_be32(pb, 0); // track number of material package is 0 |
|
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 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
444 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
|
445 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
|
446 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
|
447 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
448 // write origin |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
449 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
|
450 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
451 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
452 // write sequence refs |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
453 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
|
454 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
|
455 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
456 |
| 3743 | 457 static void mxf_write_common_fields( ByteIOContext *pb, AVStream *st) |
| 458 { | |
| 459 const MXFDataDefinitionUL * data_def_ul; | |
| 460 | |
| 461 // find data define uls | |
| 462 data_def_ul = mxf_get_data_definition_ul(st->codec->codec_type); | |
| 463 mxf_write_local_tag(pb, 16, 0x0201); | |
| 464 put_buffer(pb, data_def_ul->uid, 16); | |
| 465 | |
| 466 // write duration | |
| 467 mxf_write_local_tag(pb, 8, 0x0202); | |
| 468 put_be64(pb, st->duration); | |
| 469 } | |
| 470 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
471 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
|
472 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
473 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
474 AVStream *st; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
475 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
476 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
|
477 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
|
478 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
|
479 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
480 st = s->streams[stream_index]; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
481 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
482 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
|
483 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
|
484 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
485 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
|
486 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
|
487 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
488 // write structural component |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
489 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
|
490 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
|
491 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
|
492 } |
|
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 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
|
495 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
496 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
497 AVStream *st; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
498 int i; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
499 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
500 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
|
501 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
|
502 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
|
503 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
504 st = s->streams[stream_index]; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
505 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
506 // write uid |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
507 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
|
508 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
|
509 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
510 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
|
511 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
|
512 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
513 // write start_position |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
514 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
|
515 put_be64(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
516 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
517 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
|
518 if (type == SourcePackage) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
519 // write source package uid, end of the reference |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
520 for (i = 0; i < 4; i++) { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
521 put_be64(pb, 0); |
|
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 } else |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
524 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
|
525 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
526 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
|
527 if (type == SourcePackage) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
528 // write source track id |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
529 put_be32(pb, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
530 else |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
531 put_be32(pb, stream_index); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
532 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
533 |
| 3749 | 534 static void mxf_write_multi_descriptor(AVFormatContext *s) |
| 535 { | |
| 536 ByteIOContext *pb = s->pb; | |
| 537 int i; | |
| 538 | |
| 539 mxf_write_metadata_key(pb, 0x014400); | |
| 540 PRINT_KEY(s, "multiple descriptor key", pb->buf_ptr - 16); | |
| 541 klv_encode_ber_length(pb, 64 + 16 * s->nb_streams); | |
| 542 | |
| 543 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 544 mxf_write_uuid(pb, MultipleDescriptor, 0); | |
| 545 PRINT_KEY(s, "multi_desc uid", pb->buf_ptr - 16); | |
| 546 | |
| 547 // write sample rate | |
| 548 mxf_write_local_tag(pb, 8, 0x3001); | |
| 549 put_be32(pb, s->streams[0]->time_base.den); | |
| 550 put_be32(pb, s->streams[0]->time_base.num); | |
| 551 | |
| 552 // write essence container ul | |
| 553 mxf_write_local_tag(pb, 16, 0x3004); | |
| 554 put_buffer(pb, multiple_desc_ul, 16); | |
| 555 | |
| 556 // write sub descriptor refs | |
| 557 mxf_write_local_tag(pb, s->nb_streams * 16 + 8, 0x3F01); | |
| 558 mxf_write_refs_count(pb, s->nb_streams); | |
| 559 for (i = 0; i < s->nb_streams; i++) { | |
| 560 mxf_write_uuid(pb, SubDescriptor, i); | |
| 561 } | |
| 562 } | |
| 563 | |
| 3743 | 564 static void mxf_write_header_desc(ByteIOContext *pb, const MXFDescriptorWriteTableEntry *desc_tbl, AVStream *st) |
| 565 { | |
| 566 const MXFCodecUL *codec_ul; | |
| 567 | |
| 568 put_buffer(pb, desc_tbl->key, 16); | |
| 3749 | 569 klv_encode_ber_length(pb, 108); |
| 3743 | 570 |
| 571 mxf_write_local_tag(pb, 16, 0x3C0A); | |
| 572 mxf_write_uuid(pb, SubDescriptor, st->index); | |
| 573 | |
| 574 mxf_write_local_tag(pb, 4, 0x3006); | |
| 575 put_be32(pb, st->index); | |
| 576 | |
| 3749 | 577 mxf_write_local_tag(pb, 8, 0x3001); |
| 578 put_be32(pb, st->time_base.den); | |
| 579 put_be32(pb, st->time_base.num); | |
| 580 | |
| 3743 | 581 codec_ul = mxf_get_essence_container_ul(st->codec->codec_id); |
| 582 mxf_write_local_tag(pb, 16, 0x3004); | |
| 583 put_buffer(pb, codec_ul->uid, 16); | |
| 584 } | |
| 585 | |
| 3749 | 586 static void mxf_write_mpeg_video_desc(AVFormatContext *s, const MXFDescriptorWriteTableEntry *desc_tbl, int stream_index) |
| 3743 | 587 { |
| 588 ByteIOContext *pb = s->pb; | |
| 589 AVStream *st; | |
| 590 | |
| 591 st = s->streams[stream_index]; | |
| 592 mxf_write_header_desc(pb, desc_tbl, st); | |
| 593 | |
| 594 mxf_write_local_tag(pb, 4, 0x3203); | |
| 595 put_be32(pb, st->codec->width); | |
| 596 | |
| 597 mxf_write_local_tag(pb, 4, 0x3202); | |
| 598 put_be32(pb, st->codec->height); | |
| 599 | |
| 600 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
|
601 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
|
602 put_be32(pb, st->codec->width * st->sample_aspect_ratio.num); |
| 3743 | 603 |
| 604 // tmp write, will modified later | |
| 605 mxf_write_local_tag(pb, 16, 0x3201); | |
| 606 put_buffer(pb, ff_mxf_codec_uls->uid, 16); | |
| 607 } | |
| 608 | |
| 3749 | 609 static void mxf_write_wav_desc(AVFormatContext *s, const MXFDescriptorWriteTableEntry *desc_tbl, int stream_index) |
| 3743 | 610 { |
| 611 ByteIOContext *pb = s->pb; | |
| 612 AVStream *st; | |
| 613 | |
| 614 st = s->streams[stream_index]; | |
| 615 mxf_write_header_desc(pb, desc_tbl, st); | |
| 616 | |
| 617 // write audio sampling rate | |
| 618 mxf_write_local_tag(pb, 8, 0x3D03); | |
| 619 put_be32(pb, st->codec->sample_rate); | |
| 620 put_be32(pb, 1); | |
| 621 | |
| 622 mxf_write_local_tag(pb, 4, 0x3D07); | |
| 623 put_be32(pb, st->codec->channels); | |
| 624 | |
| 625 mxf_write_local_tag(pb, 4, 0x3D01); | |
| 626 put_be32(pb, st->codec->bits_per_sample); | |
| 627 | |
| 628 // tmp write, will modified later | |
| 629 mxf_write_local_tag(pb, 16, 0x3201); | |
| 630 put_buffer(pb, (ff_mxf_codec_uls + 8) ->uid, 16); | |
| 631 } | |
| 632 | |
| 633 static const MXFDescriptorWriteTableEntry mxf_descriptor_write_table[] = { | |
| 634 { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x51,0x00 }, mxf_write_mpeg_video_desc, CODEC_ID_MPEG2VIDEO}, | |
| 635 { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x48,0x00 }, mxf_write_wav_desc, CODEC_ID_PCM_S16LE}, | |
| 636 { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, CODEC_ID_NONE}, | |
| 637 }; | |
| 638 | |
| 3749 | 639 static void mxf_build_structural_metadata(AVFormatContext *s, enum MXFMetadataSetType type) |
| 3743 | 640 { |
| 641 int i; | |
| 642 const MXFDescriptorWriteTableEntry *desc = NULL; | |
| 643 int track_number_sign[sizeof(mxf_essence_element_key)/sizeof(MXFCodecUL)] = { 0 }; | |
| 644 | |
| 3749 | 645 mxf_write_package(s, type); |
| 646 if (type == SourcePackage) | |
| 647 mxf_write_multi_descriptor(s); | |
| 3743 | 648 |
| 649 for (i = 0;i < s->nb_streams; i++) { | |
| 3749 | 650 mxf_write_track(s, i, type, track_number_sign); |
| 651 mxf_write_sequence(s, i, type); | |
| 652 mxf_write_structural_component(s, i, type); | |
| 3743 | 653 |
| 654 if (type == SourcePackage) { | |
| 655 for (desc = mxf_descriptor_write_table; desc->write; desc++) { | |
| 656 if (s->streams[i]->codec->codec_id == desc->type) { | |
| 3749 | 657 desc->write(s, desc, i); |
| 3743 | 658 break; |
| 659 } | |
| 660 } | |
| 661 } | |
| 662 } | |
| 663 } | |
| 664 | |
| 3740 | 665 static int mxf_write_header_metadata_sets(AVFormatContext *s) |
| 666 { | |
| 667 AVStream *st; | |
| 668 MXFStreamContext *sc = NULL; | |
| 669 int i; | |
| 3749 | 670 mxf_write_preface(s); |
| 3740 | 671 |
| 3749 | 672 mxf_write_identification(s); |
| 3740 | 673 |
| 3749 | 674 mxf_write_content_storage(s); |
| 3740 | 675 |
| 676 for (i = 0; i < s->nb_streams; i++) { | |
| 677 st = s->streams[i]; | |
| 678 sc = av_mallocz(sizeof(MXFStreamContext)); | |
| 679 if (!sc) | |
| 680 return AVERROR(ENOMEM); | |
| 681 st->priv_data = sc; | |
| 682 // set pts information | |
| 683 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { | |
| 684 av_set_pts_info(st, 64, 1, st->codec->time_base.den); | |
| 685 } else if (st->codec->codec_type == CODEC_TYPE_AUDIO) { | |
| 686 av_set_pts_info(st, 64, 1, st->codec->sample_rate); | |
| 687 } | |
| 688 } | |
| 689 | |
| 3749 | 690 mxf_build_structural_metadata(s, MaterialPackage); |
| 691 mxf_build_structural_metadata(s, SourcePackage); | |
| 3740 | 692 return 0; |
| 693 } | |
| 694 | |
|
3760
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
695 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
|
696 { |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
697 MXFContext *mxf = s->priv_data; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
698 ByteIOContext *pb = s->pb; |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
699 // write klv |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
700 put_buffer(pb, key, 16); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
701 if (!mxf->essence_container_count) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
702 mxf->essence_container_count = mxf_write_essence_container_refs(s, 0); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
703 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
|
704 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
705 // write partition value |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
706 put_be16(pb, 1); // majorVersion |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
707 put_be16(pb, 2); // minorVersion |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
708 put_be32(pb, 1); // kagSize |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
709 |
|
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); // thisPartition |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
711 put_be64(pb, 0); // previousPartition |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
712 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
713 // set offset |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
714 if (!byte_position) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
715 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
|
716 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
|
717 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
718 // set offset |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
719 if (!byte_position) |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
720 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
|
721 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
|
722 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
723 // no indexTable |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
724 put_be64(pb, 0); // indexByteCount |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
725 put_be32(pb, 0); // indexSID |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
726 put_be64(pb, 0); // bodyOffset |
|
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 put_be32(pb, bodysid); // bodySID |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
729 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
|
730 |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
731 // essence container |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
732 mxf_write_essence_container_refs(s, 1); |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
733 } |
|
fde28855a81e
Import more ok'ed chunks of the mxf muxer from the soc tree
vitor
parents:
3759
diff
changeset
|
734 |
| 3749 | 735 static int mux_write_header(AVFormatContext *s) |
| 736 { | |
| 737 MXFContext *mxf = s->priv_data; | |
| 738 ByteIOContext *pb = s->pb; | |
| 739 int64_t header_metadata_start, offset_now; | |
| 740 | |
| 741 mxf_write_partition(s, 0, 1, header_partition_key); | |
| 742 | |
| 743 // mark the start of the headermetadata and calculate metadata size | |
| 744 header_metadata_start = url_ftell(s->pb); | |
| 745 mxf_write_primer_pack(s); | |
| 746 if (mxf_write_header_metadata_sets(s) < 0) | |
| 747 goto fail; | |
| 748 offset_now = url_ftell(s->pb); | |
| 749 mxf->header_byte_count = offset_now - header_metadata_start; | |
| 750 // update header_byte_count | |
| 751 url_fseek(pb, mxf->header_byte_count_offset, SEEK_SET); | |
| 752 put_be64(pb, mxf->header_byte_count); | |
| 753 url_fseek(pb, offset_now, SEEK_SET); | |
| 754 | |
| 755 put_flush_packet(pb); | |
| 756 return 0; | |
| 757 fail: | |
| 758 mxf_free(s); | |
| 759 return -1; | |
| 760 } | |
| 761 | |
| 3778 | 762 static int mux_write_packet(AVFormatContext *s, AVPacket *pkt) |
| 763 { | |
| 764 ByteIOContext *pb = s->pb; | |
| 765 AVStream *st = s->streams[pkt->stream_index]; | |
| 766 MXFStreamContext *sc = st->priv_data; | |
| 767 | |
| 768 put_buffer(pb, sc->track_essence_element_key, 16); // write key | |
| 769 klv_encode_ber_length(pb, pkt->size); // write length | |
| 770 put_buffer(pb, pkt->data, pkt->size); // write value | |
| 771 | |
| 772 put_flush_packet(pb); | |
| 773 return 0; | |
| 774 } | |
| 775 | |
| 3749 | 776 static void mxf_update_header_partition(AVFormatContext *s, int64_t footer_partition_offset) |
| 3740 | 777 { |
| 778 MXFContext *mxf = s->priv_data; | |
| 779 ByteIOContext *pb = s->pb; | |
| 780 | |
| 781 url_fseek(pb, mxf->header_footer_partition_offset, SEEK_SET); | |
| 782 put_be64(pb, footer_partition_offset); | |
| 783 put_flush_packet(pb); | |
| 3749 | 784 } |
| 785 | |
| 786 | |
| 787 static int mux_write_footer(AVFormatContext *s) | |
| 788 { | |
| 789 ByteIOContext *pb = s->pb; | |
| 790 | |
| 791 int64_t byte_position= url_ftell(pb); | |
| 792 if (!url_is_streamed(s->pb)) { | |
| 793 mxf_write_partition(s, byte_position, 0, footer_partition_key); | |
| 794 | |
| 795 put_flush_packet(pb); | |
| 796 | |
| 797 mxf_update_header_partition(s, byte_position); | |
| 798 } | |
| 799 mxf_free(s); | |
| 3740 | 800 return 0; |
| 801 } | |
| 3749 | 802 |
| 3721 | 803 AVOutputFormat mxf_muxer = { |
| 804 "mxf", | |
| 805 NULL_IF_CONFIG_SMALL("Material eXchange Format"), | |
| 806 NULL, | |
| 807 "mxf", | |
| 808 sizeof(MXFContext), | |
| 809 CODEC_ID_PCM_S16LE, | |
| 810 CODEC_ID_MPEG2VIDEO, | |
| 811 mux_write_header, | |
| 812 mux_write_packet, | |
| 813 mux_write_footer, | |
| 814 }; | |
| 3749 | 815 |
| 816 |
