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