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