imf bugs
[asdcplib.git] / src / AS_DCP.h
1 /*
2 Copyright (c) 2003-2014, John Hurst
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8 1. Redistributions of source code must retain the above copyright
9    notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11    notice, this list of conditions and the following disclaimer in the
12    documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14    derived from this software without specific prior written permission.
15
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 /*! \file    AS_DCP.h
28     \version $Id$
29     \brief   AS-DCP library, public interface
30
31 The asdcplib library is a set of file access objects that offer simplified
32 access to files conforming to the standards published by the SMPTE
33 D-Cinema Technology Committee 21DC. The file format, labeled AS-DCP,
34 is described in a series of documents which includes but may not
35 be be limited to:
36
37  o SMPTE ST 429-2:2011 DCP Operational Constraints
38  o SMPTE ST 429-3:2006 Sound and Picture Track File
39  o SMPTE ST 429-4:2006 MXF JPEG 2000 Application
40  o SMPTE ST 429-5:2009 Timed Text Track File
41  o SMPTE ST 429-6:2006 MXF Track File Essence Encryption
42  o SMPTE ST 429-10:2008 Stereoscopic Picture Track File
43  o SMPTE ST 429-14:2008 Aux Data Track File
44  o SMPTE ST 330:2004 - UMID
45  o SMPTE ST 336:2001 - KLV
46  o SMPTE ST 377:2004 - MXF (old version, required)
47  o SMPTE ST 377-1:2011 - MXF
48  o SMPTE ST 377-4:2012 - MXF Multichannel Audio Labeling Framework
49  o SMPTE ST 390:2011 - MXF OP-Atom
50  o SMPTE ST 379-1:2009 - MXF Generic Container (GC)
51  o SMPTE ST 381-1:2005 - MPEG2 picture in GC
52  o SMPTE ST 422:2006 - JPEG 2000 picture in GC
53  o SMPTE ST 382:2007 - WAV/PCM sound in GC
54  o IETF RFC 2104 - HMAC/SHA1
55  o NIST FIPS 197 - AES (Rijndael) (via OpenSSL)
56
57  o MXF Interop Track File Specification
58  o MXF Interop Track File Essence Encryption Specification
59  o MXF Interop Operational Constraints Specification
60  - Note: the MXF Interop documents are not formally published.
61    Contact the asdcplib support address to get copies.
62
63 The following use cases are supported by the library:
64
65  o Write essence to a plaintext or ciphertext AS-DCP file:
66  o Read essence from a plaintext or ciphertext AS-DCP file:
67      MPEG2 Video Elementary Stream
68      JPEG 2000 codestreams
69      JPEG 2000 stereoscopic codestream pairs
70      PCM audio streams
71      SMPTE 429-7 Timed Text XML with font and image resources
72      Aux Data (frame-wrapped synchronous blob)
73      Proposed Dolby (TM) Atmos track file
74
75  o Read header metadata from an AS-DCP file
76
77 This project depends upon the following libraries:
78  - OpenSSL http://www.openssl.org/
79  - Expat http://expat.sourceforge.net/  or
80      Xerces-C http://xerces.apache.org/xerces-c/
81    An XML library is not needed if you don't need support for SMPTE ST 429-5:2009.
82 */
83
84 #ifndef _AS_DCP_H_
85 #define _AS_DCP_H_
86
87 #include <KM_error.h>
88 #include <KM_fileio.h>
89 #include <stdio.h>
90 #include <stdarg.h>
91 #include <math.h>
92 #include <iosfwd>
93 #include <string>
94 #include <cstring>
95 #include <list>
96
97 //--------------------------------------------------------------------------------
98 // common integer types
99 // supply your own by defining ASDCP_NO_BASE_TYPES
100
101 #ifndef ASDCP_NO_BASE_TYPES
102 typedef unsigned char  byte_t;
103 typedef char           i8_t;
104 typedef unsigned char  ui8_t;
105 typedef short          i16_t;
106 typedef unsigned short ui16_t;
107 typedef int            i32_t;
108 typedef unsigned int   ui32_t;
109 #endif
110
111
112 //--------------------------------------------------------------------------------
113 // convenience macros
114
115 // Convenience macros for managing return values in predicates
116 #define ASDCP_SUCCESS(v) (((v) < 0) ? 0 : 1)
117 #define ASDCP_FAILURE(v) (((v) < 0) ? 1 : 0)
118
119
120 // Returns RESULT_PTR if the given argument is NULL.
121 // See Result_t below for an explanation of RESULT_* symbols.
122 #define ASDCP_TEST_NULL(p) \
123   if ( (p) == 0  ) { \
124     return ASDCP::RESULT_PTR; \
125   }
126
127 // Returns RESULT_PTR if the given argument is NULL. See Result_t
128 // below for an explanation of RESULT_* symbols. It then assumes
129 // that the argument is a pointer to a string and returns
130 // RESULT_NULL_STR if the first character is '\0'.
131 //
132 #define ASDCP_TEST_NULL_STR(p) \
133   ASDCP_TEST_NULL(p); \
134   if ( (p)[0] == '\0' ) { \
135     return ASDCP::RESULT_NULL_STR; \
136   }
137
138 // Produces copy constructor boilerplate. Allows convenient private
139 // declatarion of copy constructors to prevent the compiler from
140 // silently manufacturing default methods.
141 #define ASDCP_NO_COPY_CONSTRUCT(T)   \
142           T(const T&); \
143           T& operator=(const T&)
144
145 //--------------------------------------------------------------------------------
146 // All library components are defined in the namespace ASDCP
147 //
148 namespace ASDCP {
149   //
150   // The version number declaration and explanation have moved to ../configure.ac
151   const char* Version();
152
153   // UUIDs are passed around as strings of UUIDlen bytes
154   const ui32_t UUIDlen = 16;
155
156   // Encryption keys are passed around as strings of KeyLen bytes
157   const ui32_t KeyLen = 16;
158
159   //---------------------------------------------------------------------------------
160   // return values
161
162   using Kumu::Result_t;
163
164   using Kumu::RESULT_FALSE;
165   using Kumu::RESULT_OK;
166   using Kumu::RESULT_FAIL;
167   using Kumu::RESULT_PTR;
168   using Kumu::RESULT_NULL_STR;
169   using Kumu::RESULT_ALLOC;
170   using Kumu::RESULT_PARAM;
171   using Kumu::RESULT_SMALLBUF;
172   using Kumu::RESULT_INIT;
173   using Kumu::RESULT_NOT_FOUND;
174   using Kumu::RESULT_NO_PERM;
175   using Kumu::RESULT_FILEOPEN;
176   using Kumu::RESULT_BADSEEK;
177   using Kumu::RESULT_READFAIL;
178   using Kumu::RESULT_WRITEFAIL;
179   using Kumu::RESULT_STATE;
180   using Kumu::RESULT_ENDOFFILE;
181   using Kumu::RESULT_CONFIG;
182
183   KM_DECLARE_RESULT(FORMAT,     -101, "The file format is not proper OP-Atom/AS-DCP.");
184   KM_DECLARE_RESULT(RAW_ESS,    -102, "Unknown raw essence file type.");
185   KM_DECLARE_RESULT(RAW_FORMAT, -103, "Raw essence format invalid.");
186   KM_DECLARE_RESULT(RANGE,      -104, "Frame number out of range.");
187   KM_DECLARE_RESULT(CRYPT_CTX,  -105, "AESEncContext required when writing to encrypted file.");
188   KM_DECLARE_RESULT(LARGE_PTO,  -106, "Plaintext offset exceeds frame buffer size.");
189   KM_DECLARE_RESULT(CAPEXTMEM,  -107, "Cannot resize externally allocated memory.");
190   KM_DECLARE_RESULT(CHECKFAIL,  -108, "The check value did not decrypt correctly.");
191   KM_DECLARE_RESULT(HMACFAIL,   -109, "HMAC authentication failure.");
192   KM_DECLARE_RESULT(HMAC_CTX,   -110, "HMAC context required.");
193   KM_DECLARE_RESULT(CRYPT_INIT, -111, "Error initializing block cipher context.");
194   KM_DECLARE_RESULT(EMPTY_FB,   -112, "Empty frame buffer.");
195   KM_DECLARE_RESULT(KLV_CODING, -113, "KLV coding error.");
196   KM_DECLARE_RESULT(SPHASE,     -114, "Stereoscopic phase mismatch.");
197   KM_DECLARE_RESULT(SFORMAT,    -115, "Rate mismatch, file may contain stereoscopic essence.");
198
199   //---------------------------------------------------------------------------------
200   // file identification
201
202   // The file accessors in this library implement a bounded set of essence types.
203   // This list will be expanded when support for new types is added to the library.
204   enum EssenceType_t {
205     ESS_UNKNOWN,              // the file is not a supported AS-DCP of AS-02 essence container
206
207     // 
208     ESS_MPEG2_VES,            // the file contains an MPEG-2 video elementary stream
209
210     // d-cinema essence types
211     ESS_JPEG_2000,            // the file contains one or more JPEG 2000 codestreams
212     ESS_PCM_24b_48k,          // the file contains one or more PCM audio pairs
213     ESS_PCM_24b_96k,          // the file contains one or more PCM audio pairs
214     ESS_TIMED_TEXT,           // the file contains an XML timed text document and one or more resources
215     ESS_JPEG_2000_S,          // the file contains one or more JPEG 2000 codestream pairs (stereoscopic)
216     ESS_DCDATA_UNKNOWN,       // the file contains one or more D-Cinema Data bytestreams
217     ESS_DCDATA_DOLBY_ATMOS,   // the file contains one or more DolbyATMOS bytestreams
218
219     // IMF essence types
220     ESS_AS02_JPEG_2000,       // the file contains one or more JPEG 2000 codestreams
221     ESS_AS02_PCM_24b_48k,     // the file contains one or more PCM audio pairs, clip wrapped
222     ESS_AS02_PCM_24b_96k,     // the file contains one or more PCM audio pairs, clip wrapped
223     ESS_AS02_TIMED_TEXT,      // the file contains a TTML document and zero or more resources
224
225     ESS_MAX
226   };
227
228   // Determine the type of essence contained in the given MXF file. RESULT_OK
229   // is returned if the file is successfully opened and contains a valid MXF
230   // stream. If there is an error, the result code will indicate the reason.
231   Result_t EssenceType(const std::string& filename, EssenceType_t& type);
232
233   // Determine the type of essence contained in the given raw file. RESULT_OK
234   // is returned if the file is successfully opened and contains a known
235   // stream type. If there is an error, the result code will indicate the reason.
236   Result_t RawEssenceType(const std::string& filename, EssenceType_t& type);
237
238
239   //---------------------------------------------------------------------------------
240   // base types
241
242   // A simple container for rational numbers.
243   class Rational
244   {
245   public:
246     i32_t Numerator;
247     i32_t Denominator;
248
249     Rational() : Numerator(0), Denominator(0) {}
250     Rational(i32_t n, i32_t d) : Numerator(n), Denominator(d) {}
251
252     inline double Quotient() const {
253       return (double)Numerator / (double)Denominator;
254     }
255
256     inline bool operator==(const Rational& rhs) const {
257       return ( rhs.Numerator == Numerator && rhs.Denominator == Denominator );
258     }
259
260     inline bool operator!=(const Rational& rhs) const {
261       return ( rhs.Numerator != Numerator || rhs.Denominator != Denominator );
262     }
263
264     inline bool operator<(const Rational& rhs) {
265       if ( Numerator < rhs.Numerator )     return true;
266       if ( Numerator == rhs.Numerator && Denominator < rhs.Denominator )    return true;
267       return false;
268     }
269
270     inline bool operator>(const Rational& rhs) {
271       if ( Numerator > rhs.Numerator )     return true;
272       if ( Numerator == rhs.Numerator && Denominator > rhs.Denominator )     return true;
273       return false;
274     }
275   };
276
277   // Encodes a rational number as a string having a single delimiter character between
278   // numerator and denominator.  Retuns the buffer pointer to allow convenient in-line use.
279   const char* EncodeRational(const Rational&, char* str_buf, ui32_t buf_len, char delimiter = ' ');
280
281   // Decodes a rational number havng a single non-digit delimiter character between
282   // the numerator and denominator.  Returns false if the string does not contain
283   // the expected syntax.
284   bool DecodeRational(const char* str_rat, Rational&);
285
286
287   // common edit rates, use these instead of hard coded constants
288   const Rational EditRate_24 = Rational(24,1);
289   const Rational EditRate_23_98 = Rational(24000,1001); // Not a DCI-compliant value!
290   const Rational EditRate_48 = Rational(48,1);
291   const Rational SampleRate_48k = Rational(48000,1);
292   const Rational SampleRate_96k = Rational(96000,1);
293
294   // Additional frame rates, see ST 428-11, ST 429-13
295   // These rates are new and not supported by all systems. Do not assume that
296   // a package made using one of these rates will work just anywhere!
297   const Rational EditRate_25 = Rational(25,1);
298   const Rational EditRate_30 = Rational(30,1);
299   const Rational EditRate_50 = Rational(50,1);
300   const Rational EditRate_60 = Rational(60,1);
301   const Rational EditRate_96 = Rational(96,1);
302   const Rational EditRate_100 = Rational(100,1);
303   const Rational EditRate_120 = Rational(120,1);
304
305   // Archival frame rates, see ST 428-21
306   // These rates are new and not supported by all systems. Do not assume that
307   // a package made using one of these rates will work just anywhere!
308   const Rational EditRate_16 = Rational(16,1);
309   const Rational EditRate_18 = Rational(200,11); // 18.182
310   const Rational EditRate_20 = Rational(20,1);
311   const Rational EditRate_22 = Rational(240,11); // 21.818
312
313
314   // Non-reference counting container for internal member objects.
315   // Please do not use this class for any other purpose.
316   template <class T>
317     class mem_ptr
318     {
319       T* m_p; // the thing we point to
320       mem_ptr(T&);
321
322     public:
323       mem_ptr() : m_p(0) {}
324       mem_ptr(T* p) : m_p(p) {}
325       ~mem_ptr() { delete m_p; }
326
327       inline T&   operator*()  const { return *m_p; }
328       inline T*   operator->() const { return m_p; }
329       inline      operator T*()const { return m_p; }
330       inline const mem_ptr<T>& operator=(T* p) { set(p); return *this; }
331       inline T*   set(T* p)          { delete m_p; m_p = p; return m_p; }
332       inline T*   get()        const { return m_p; }
333       inline void release()          { m_p = 0; }
334       inline bool empty()      const { return m_p == 0; }
335     };
336
337
338   //---------------------------------------------------------------------------------
339   // WriterInfo class - encapsulates writer identification details used for
340   // OpenWrite() calls.  Replace these values at runtime to identify your product.
341   //
342   // MXF files use SMPTE Universal Labels to identify data items. The set of Labels
343   // in a file is determined by the MXF Operational Pattern and any constraining
344   // documentation. There are currently two flavors of AS-DCP file in use: MXF Interop
345   // (AKA JPEG Interop) and SMPTE. The two differ in the values of three labels:
346   //
347   //   OPAtom
348   //      Interop : 06 0e 2b 34 04 01 01 01  0d 01 02 01 10 00 00 00
349   //      SMPTE   : 06 0e 2b 34 04 01 01 02  0d 01 02 01 10 00 00 00
350   //
351   //   EKLV Packet:
352   //      Interop : 06 0e 2b 34 02 04 01 07  0d 01 03 01 02 7e 01 00
353   //      SMPTE   : 06 0e 2b 34 02 04 01 01  0d 01 03 01 02 7e 01 00
354   //
355   //   GenericDescriptor/SubDescriptors:
356   //      Interop : 06 0e 2b 34 01 01 01 02  06 01 01 04 06 10 00 00
357   //      SMPTE   : 06 0e 2b 34 01 01 01 09  06 01 01 04 06 10 00 00
358   //
359   // asdcplib will read any (otherwise valid) file which has any combination of the
360   // above values. When writing files, MXF Interop labels are used by default. To
361   // write a file containing SMPTE labels, replace the default label set value in
362   // the WriterInfo before calling OpenWrite()
363   //
364   //
365   enum LabelSet_t
366   {
367     LS_MXF_UNKNOWN,
368     LS_MXF_INTEROP,
369     LS_MXF_SMPTE,
370     LS_MAX
371   };
372
373   //
374   struct WriterInfo
375   {
376     byte_t      ProductUUID[UUIDlen];
377     byte_t      AssetUUID[UUIDlen];
378     byte_t      ContextID[UUIDlen];
379     byte_t      CryptographicKeyID[UUIDlen];
380     bool        EncryptedEssence; // true if essence data is (or is going to be) encrypted
381     bool        UsesHMAC;         // true if HMAC exists or is to be calculated
382     std::string ProductVersion;
383     std::string CompanyName;
384     std::string ProductName;
385     LabelSet_t  LabelSetType;
386
387     WriterInfo() : EncryptedEssence(false), UsesHMAC(false), LabelSetType(LS_MXF_INTEROP)
388     {
389       static byte_t default_ProductUUID_Data[UUIDlen] = {
390         0x43, 0x05, 0x9a, 0x1d, 0x04, 0x32, 0x41, 0x01,
391         0xb8, 0x3f, 0x73, 0x68, 0x15, 0xac, 0xf3, 0x1d };
392
393       memcpy(ProductUUID, default_ProductUUID_Data, UUIDlen);
394       memset(AssetUUID, 0, UUIDlen);
395       memset(ContextID, 0, UUIDlen);
396       memset(CryptographicKeyID, 0, UUIDlen);
397
398       ProductVersion = "Unreleased ";
399       ProductVersion += Version();
400       CompanyName = "DCI";
401       ProductName = "asdcplib";
402     }
403   };
404
405   // Print WriterInfo to std::ostream
406   std::ostream& operator << (std::ostream& strm, const WriterInfo& winfo);
407   // Print WriterInfo to stream, stderr by default.
408   void WriterInfoDump(const WriterInfo&, FILE* = 0);
409
410   //---------------------------------------------------------------------------------
411   // cryptographic support
412
413   // The following classes define interfaces to Rijndael contexts having the following properties:
414   //  o 16 byte key
415   //  o CBC mode with 16 byte block size
416   const ui32_t CBC_KEY_SIZE = 16;
417   const ui32_t CBC_BLOCK_SIZE = 16;
418   const ui32_t HMAC_SIZE = 20;
419
420   //
421   class AESEncContext
422     {
423       class h__AESContext;
424       mem_ptr<h__AESContext> m_Context;
425       ASDCP_NO_COPY_CONSTRUCT(AESEncContext);
426
427     public:
428       AESEncContext();
429       ~AESEncContext();
430
431       // Initializes Rijndael CBC encryption context.
432       // Returns error if the key argument is NULL.
433       Result_t InitKey(const byte_t* key);
434
435       // Initializes 16 byte CBC Initialization Vector. This operation may be performed
436       // any number of times for a given key.
437       // Returns error if the i_vec argument is NULL.
438       Result_t SetIVec(const byte_t* i_vec);
439       Result_t GetIVec(byte_t* i_vec) const;
440
441       // Encrypt a block of data. The block size must be a multiple of CBC_BLOCK_SIZE.
442       // Returns error if either argument is NULL.
443       Result_t EncryptBlock(const byte_t* pt_buf, byte_t* ct_buf, ui32_t block_size);
444     };
445
446   //
447   class AESDecContext
448     {
449       class h__AESContext;
450       mem_ptr<h__AESContext> m_Context;
451       ASDCP_NO_COPY_CONSTRUCT(AESDecContext);
452
453     public:
454       AESDecContext();
455       ~AESDecContext();
456
457       // Initializes Rijndael CBC decryption context.
458       // Returns error if the key argument is NULL.
459       Result_t InitKey(const byte_t* key);
460
461       // Initializes 16 byte CBC Initialization Vector. This operation may be performed
462       // any number of times for a given key.
463       // Returns error if the i_vec argument is NULL.
464       Result_t SetIVec(const byte_t* i_vec);
465
466       // Decrypt a block of data. The block size must be a multiple of CBC_BLOCK_SIZE.
467       // Returns error if either argument is NULL.
468       Result_t DecryptBlock(const byte_t* ct_buf, byte_t* pt_buf, ui32_t block_size);
469     };
470
471   //
472   class HMACContext
473     {
474       class h__HMACContext;
475       mem_ptr<h__HMACContext> m_Context;
476       ASDCP_NO_COPY_CONSTRUCT(HMACContext);
477
478     public:
479       HMACContext();
480       ~HMACContext();
481
482       // Initializes HMAC context. The key argument must point to a binary
483       // key that is CBC_KEY_SIZE bytes in length. Returns error if the key
484       // argument is NULL.
485       Result_t InitKey(const byte_t* key, LabelSet_t);
486
487       // Reset internal state, allows repeated cycles of Update -> Finalize
488       void Reset();
489
490       // Add data to the digest. Returns error if the key argument is NULL or
491       // if the digest has been finalized.
492       Result_t Update(const byte_t* buf, ui32_t buf_len);
493
494       // Finalize digest.  Returns error if the digest has already been finalized.
495       Result_t Finalize();
496
497       // Writes HMAC value to given buffer. buf must point to a writable area of
498       // memory that is at least HMAC_SIZE bytes in length. Returns error if the
499       // buf argument is NULL or if the digest has not been finalized.
500       Result_t GetHMACValue(byte_t* buf) const;
501
502       // Tests the given value against the finalized value in the object. buf must
503       // point to a readable area of memory that is at least HMAC_SIZE bytes in length.
504       // Returns error if the buf argument is NULL or if the values do ot match.
505       Result_t TestHMACValue(const byte_t* buf) const;
506     };
507
508   //---------------------------------------------------------------------------------
509   // frame buffer base class
510   //
511   // The supported essence types are stored using per-frame KLV packetization. The
512   // following class implements essence-neutral functionality for managing a buffer
513   // containing a frame of essence.
514
515   class FrameBuffer
516     {
517       ASDCP_NO_COPY_CONSTRUCT(FrameBuffer);
518
519     protected:
520       byte_t* m_Data;          // pointer to memory area containing frame data
521       ui32_t  m_Capacity;      // size of memory area pointed to by m_Data
522       bool    m_OwnMem;        // if false, m_Data points to externally allocated memory
523       ui32_t  m_Size;          // size of frame data in memory area pointed to by m_Data
524       ui32_t  m_FrameNumber;   // delivery-order frame number
525
526       // It is possible to read raw ciphertext from an encrypted AS-DCP file.
527       // After reading an encrypted AS-DCP file in raw mode, the frame buffer will
528       // contain the encrypted source value portion of the Encrypted Triplet, followed
529       // by the integrity pack, if it exists.
530       // The buffer will begin with the IV and CheckValue, followed by encrypted essence
531       // and optional integrity pack
532       // The SourceLength and PlaintextOffset values from the packet will be held in the
533       // following variables:
534       ui32_t  m_SourceLength;       // plaintext length (delivered plaintext+decrypted ciphertext)
535       ui32_t  m_PlaintextOffset;    // offset to first byte of ciphertext
536
537      public:
538       FrameBuffer();
539       virtual ~FrameBuffer();
540
541       // Instructs the object to use an externally allocated buffer. The external
542       // buffer will not be cleaned up by the frame buffer when it exits.
543       // Call with (0,0) to revert to internally allocated buffer.
544       // Returns error if the buf_addr argument is NULL and buf_size is non-zero.
545       Result_t SetData(byte_t* buf_addr, ui32_t buf_size);
546
547       // Sets the size of the internally allocate buffer. Returns RESULT_CAPEXTMEM
548       // if the object is using an externally allocated buffer via SetData();
549       // Resets content size to zero.
550       Result_t Capacity(ui32_t cap);
551
552       // returns the size of the buffer
553       inline ui32_t  Capacity() const { return m_Capacity; }
554
555       // returns a const pointer to the essence data
556       inline const byte_t* RoData() const { return m_Data; }
557
558       // returns a non-const pointer to the essence data
559       inline byte_t* Data() { return m_Data; }
560
561       // set the size of the buffer's contents
562       inline ui32_t  Size(ui32_t size) { return m_Size = size; }
563
564       // returns the size of the buffer's contents
565       inline ui32_t  Size() const { return m_Size; }
566
567       // Sets the absolute frame number of this frame in the file in delivery order.
568       inline void    FrameNumber(ui32_t num) { m_FrameNumber = num; }
569
570       // Returns the absolute frame number of this frame in the file in delivery order.
571       inline ui32_t  FrameNumber() const { return m_FrameNumber; }
572
573       // Sets the length of the plaintext essence data
574       inline void    SourceLength(ui32_t len) { m_SourceLength = len; }
575
576       // When this value is 0 (zero), the buffer contains only plaintext. When it is
577       // non-zero, the buffer contains raw ciphertext and the return value is the length
578       // of the original plaintext.
579       inline ui32_t  SourceLength() const { return m_SourceLength; }
580
581       // Sets the offset into the buffer at which encrypted data begins
582       inline void    PlaintextOffset(ui32_t ofst) { m_PlaintextOffset = ofst; }
583
584       // Returns offset into buffer of first byte of ciphertext.
585       inline ui32_t  PlaintextOffset() const { return m_PlaintextOffset; }
586     };
587
588   //---------------------------------------------------------------------------------
589   // Accessors in the MXFReader and MXFWriter classes below return these types to
590   // provide direct access to MXF metadata structures declared in MXF.h and Metadata.h
591
592   namespace MXF {
593     // #include<Metadata.h> to use these
594     class OP1aHeader;
595     class OPAtomIndexFooter;
596     class RIP;
597   };
598
599   //---------------------------------------------------------------------------------
600   // MPEG2 video elementary stream support
601
602   //
603   namespace MPEG2
604     {
605       // MPEG picture coding type
606       enum FrameType_t {
607         FRAME_U = 0x00, // Unknown
608         FRAME_I = 0x01, // I-Frame
609         FRAME_P = 0x02, // P-Frame
610         FRAME_B = 0x03  // B-Frame
611       };
612
613       // convert FrameType_t to char
614       inline char FrameTypeChar(FrameType_t type)
615         {
616           switch ( type )
617             {
618             case FRAME_I: return 'I';
619             case FRAME_B: return 'B';
620             case FRAME_P: return 'P';
621             default: return 'U';
622             }
623         }
624
625       // Structure represents the metadata elements in the file header's
626       // MPEG2VideoDescriptor object.
627       struct VideoDescriptor
628         {
629           Rational EditRate;                //
630           ui32_t   FrameRate;               //
631           Rational SampleRate;              //
632           ui8_t    FrameLayout;             //
633           ui32_t   StoredWidth;             //
634           ui32_t   StoredHeight;            //
635           Rational AspectRatio;             //
636           ui32_t   ComponentDepth;          //
637           ui32_t   HorizontalSubsampling;   //
638           ui32_t   VerticalSubsampling;     //
639           ui8_t    ColorSiting;             //
640           ui8_t    CodedContentType;        //
641           bool     LowDelay;                //
642           ui32_t   BitRate;                 //
643           ui8_t    ProfileAndLevel;         //
644           ui32_t   ContainerDuration;       //
645       };
646
647       // Print VideoDescriptor to std::ostream
648       std::ostream& operator << (std::ostream& strm, const VideoDescriptor& vdesc);
649       // Print VideoDescriptor to stream, stderr by default.
650       void VideoDescriptorDump(const VideoDescriptor&, FILE* = 0);
651
652       // A container for MPEG frame data.
653       class FrameBuffer : public ASDCP::FrameBuffer
654         {
655           ASDCP_NO_COPY_CONSTRUCT(FrameBuffer); // TODO: should have copy construct
656
657         protected:
658           FrameType_t m_FrameType;
659           ui8_t       m_TemporalOffset;
660           bool        m_ClosedGOP;
661           bool        m_GOPStart;
662
663         public:
664           FrameBuffer() :
665             m_FrameType(FRAME_U), m_TemporalOffset(0),
666             m_ClosedGOP(false), m_GOPStart(false) {}
667
668           FrameBuffer(ui32_t size) :
669             m_FrameType(FRAME_U), m_TemporalOffset(0),
670             m_ClosedGOP(false), m_GOPStart(false)
671             {
672               Capacity(size);
673             }
674
675           virtual ~FrameBuffer() {}
676
677           // Sets the MPEG frame type of the picture data in the frame buffer.
678           inline void FrameType(FrameType_t type) { m_FrameType = type; }
679
680           // Returns the MPEG frame type of the picture data in the frame buffer.
681           inline FrameType_t FrameType() const { return m_FrameType; }
682
683           // Sets the MPEG temporal offset of the picture data in the frame buffer.
684           inline void TemporalOffset(ui8_t offset) { m_TemporalOffset = offset; }
685
686           // Returns the MPEG temporal offset of the picture data in the frame buffer.
687           inline ui8_t TemporalOffset() const { return m_TemporalOffset; }
688
689           // Sets the MPEG GOP 'start' attribute for the frame buffer.
690           inline void GOPStart(bool start) { m_GOPStart = start; }
691
692           // True if the frame in the buffer is the first in the GOP (in transport order)
693           inline bool GOPStart() const { return m_GOPStart; }
694
695           // Sets the MPEG GOP 'closed' attribute for the frame buffer.
696           inline void ClosedGOP(bool closed) { m_ClosedGOP = closed; }
697
698           // Returns true if the frame in the buffer is from a closed GOP, false if
699           // the frame is from an open GOP.  Always returns false unless GOPStart()
700           // returns true.
701           inline bool ClosedGOP() const { return m_ClosedGOP; }
702
703           // Print object state to stream, include n bytes of frame data if indicated.
704           // Default stream is stderr.
705           void    Dump(FILE* = 0, ui32_t dump_len = 0) const;
706         };
707
708
709       // An object which opens and reads an MPEG2 Video Elementary Stream file.  The call to
710       // OpenRead() reads metadata from the file and populates an internal VideoDescriptor object.
711       // Each subsequent call to ReadFrame() reads exactly one frame from the stream into the
712       // given FrameBuffer object.
713       class Parser
714         {
715           class h__Parser;
716           mem_ptr<h__Parser> m_Parser;
717           ASDCP_NO_COPY_CONSTRUCT(Parser);
718
719         public:
720           Parser();
721           virtual ~Parser();
722
723           // Opens the stream for reading, parses enough data to provide a complete
724           // set of stream metadata for the MXFWriter below.
725           Result_t OpenRead(const std::string& filename) const;
726
727           // Fill a VideoDescriptor struct with the values from the file's header.
728           // Returns RESULT_INIT if the file is not open.
729           Result_t FillVideoDescriptor(VideoDescriptor&) const;
730
731           // Rewind the stream to the beginning.
732           Result_t Reset() const;
733
734           // Reads the next sequential frame in the input file and places it in the
735           // frame buffer. Fails if the buffer is too small or the stream is empty.
736           // The frame buffer's PlaintextOffset parameter will be set to the first
737           // data byte of the first slice. Set this value to zero if you want
738           // encrypted headers.
739           Result_t ReadFrame(FrameBuffer&) const;
740         };
741
742       // A class which creates and writes MPEG frame data to an AS-DCP format MXF file.
743       // Not yet implemented
744       class MXFWriter
745         {
746           class h__Writer;
747           mem_ptr<h__Writer> m_Writer;
748           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
749
750         public:
751           MXFWriter();
752           virtual ~MXFWriter();
753
754           // Warning: direct manipulation of MXF structures can interfere
755           // with the normal operation of the wrapper.  Caveat emptor!
756           virtual MXF::OP1aHeader& OP1aHeader();
757           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
758           virtual MXF::RIP& RIP();
759
760           // Open the file for writing. The file must not exist. Returns error if
761           // the operation cannot be completed or if nonsensical data is discovered
762           // in the essence descriptor.
763           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
764                              const VideoDescriptor&, ui32_t HeaderSize = 16384);
765
766           // Writes a frame of essence to the MXF file. If the optional AESEncContext
767           // argument is present, the essence is encrypted prior to writing.
768           // Fails if the file is not open, is finalized, or an operating system
769           // error occurs.
770           Result_t WriteFrame(const FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
771
772           // Closes the MXF file, writing the index and revised header.
773           Result_t Finalize();
774         };
775
776       // A class which reads MPEG frame data from an AS-DCP format MXF file.
777       class MXFReader
778         {
779           class h__Reader;
780           mem_ptr<h__Reader> m_Reader;
781           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
782
783         public:
784           MXFReader();
785           virtual ~MXFReader();
786
787           // Warning: direct manipulation of MXF structures can interfere
788           // with the normal operation of the wrapper.  Caveat emptor!
789           virtual MXF::OP1aHeader& OP1aHeader();
790           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
791           virtual MXF::RIP& RIP();
792
793           // Open the file for reading. The file must exist. Returns error if the
794           // operation cannot be completed.
795           Result_t OpenRead(const std::string& filename) const;
796
797           // Returns RESULT_INIT if the file is not open.
798           Result_t Close() const;
799
800           // Fill a VideoDescriptor struct with the values from the file's header.
801           // Returns RESULT_INIT if the file is not open.
802           Result_t FillVideoDescriptor(VideoDescriptor&) const;
803
804           // Fill a WriterInfo struct with the values from the file's header.
805           // Returns RESULT_INIT if the file is not open.
806           Result_t FillWriterInfo(WriterInfo&) const;
807
808           // Reads a frame of essence from the MXF file. If the optional AESEncContext
809           // argument is present, the essence is decrypted after reading. If the MXF
810           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
811           // will contain the ciphertext frame data. If the HMACContext argument is
812           // not NULL, the HMAC will be calculated (if the file supports it).
813           // Returns RESULT_INIT if the file is not open, failure if the frame number is
814           // out of range, or if optional decrypt or HAMC operations fail.
815           Result_t ReadFrame(ui32_t frame_number, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
816
817           // Using the index table read from the footer partition, lookup the frame number
818           // and return the offset into the file at which to read that frame of essence.
819           // Returns RESULT_INIT if the file is not open, and RESULT_RANGE if the frame number is
820           // out of range.
821           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
822
823           // Calculates the first frame in transport order of the GOP in which the requested
824           // frame is located.  Calls ReadFrame() to fetch the frame at the calculated position.
825           // Returns RESULT_INIT if the file is not open.
826           Result_t ReadFrameGOPStart(ui32_t frame_number, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
827
828           // Calculates the first frame in transport order of the GOP in which the requested
829           // frame is located.  Sets key_frame_number to the number of the frame at the calculated position.
830           // Returns RESULT_INIT if the file is not open.
831           Result_t FindFrameGOPStart(ui32_t frame_number, ui32_t& key_frame_number) const;
832
833           // Returns the type of the frame at the given position.
834           // Returns RESULT_INIT if the file is not open or RESULT_RANGE if the index is out of range.
835           Result_t FrameType(ui32_t frame_number, FrameType_t&) const;
836
837           // Print debugging information to stream
838           void     DumpHeaderMetadata(FILE* = 0) const;
839           void     DumpIndex(FILE* = 0) const;
840         };
841     } // namespace MPEG2
842
843   //---------------------------------------------------------------------------------
844   //
845
846
847
848   namespace PCM
849     {
850       // The default value of the ChannelFormat element of the AudioDescriptor struct
851       // is CF_NONE. If the value is set to one of the other ChannelFormat_t enum
852       // values, the file's Wave Audio Descriptor will contain a Channel Assignment
853       // element.
854       //
855       // The channel format should be one of (CF_CFG_1, CF_CFG_2, or CF_CFG_3) for
856       // SMPTE 429-2 files. It should normally be CF_NONE for JPEG Interop files, but
857       // the 429-2 may also be used.
858       //
859       enum ChannelFormat_t {
860         CF_NONE,
861         CF_CFG_1, // 5.1 with optional HI/VI
862         CF_CFG_2, // 6.1 (5.1 + center surround) with optional HI/VI
863         CF_CFG_3, // 7.1 (SDDS) with optional HI/VI
864         CF_CFG_4, // Wild Track Format
865         CF_CFG_5, // 7.1 DS with optional HI/VI
866         CF_CFG_6, // ST 377-4 (MCA) labels (see also ASDCP::MXF::decode_mca_string)
867         CF_MAXIMUM
868       };
869
870       struct AudioDescriptor
871         {
872           Rational EditRate;         // rate of frame wrapping
873           Rational AudioSamplingRate;  // rate of audio sample
874           ui32_t   Locked;             //
875           ui32_t   ChannelCount;       // number of channels
876           ui32_t   QuantizationBits;   // number of bits per single-channel sample
877           ui32_t   BlockAlign;         // number of bytes ber sample, all channels
878           ui32_t   AvgBps;             //
879           ui32_t   LinkedTrackID;      //
880           ui32_t   ContainerDuration;  // number of frames
881           ChannelFormat_t ChannelFormat; // audio channel arrangement
882       };
883
884       // Print AudioDescriptor to std::ostream
885       std::ostream& operator << (std::ostream& strm, const AudioDescriptor& adesc);
886       // Print debugging information to stream (stderr default)
887       void   AudioDescriptorDump(const AudioDescriptor&, FILE* = 0);
888
889       // Returns size in bytes of a single sample of data described by ADesc
890       inline ui32_t CalcSampleSize(const AudioDescriptor& ADesc)
891         {
892           return (ADesc.QuantizationBits / 8) * ADesc.ChannelCount;
893         }
894
895       // Returns number of samples per frame of data described by ADesc
896       inline ui32_t CalcSamplesPerFrame(const AudioDescriptor& ADesc)
897         {
898           double tmpd = ADesc.AudioSamplingRate.Quotient() / ADesc.EditRate.Quotient();
899           return (ui32_t)ceil(tmpd);
900         }
901
902       // Returns the size in bytes of a frame of data described by ADesc
903       inline ui32_t CalcFrameBufferSize(const AudioDescriptor& ADesc)
904         {
905           return CalcSampleSize(ADesc) * CalcSamplesPerFrame(ADesc);
906         }
907
908       //
909       class FrameBuffer : public ASDCP::FrameBuffer
910         {
911         public:
912           FrameBuffer() {}
913           FrameBuffer(ui32_t size) { Capacity(size); }
914           virtual ~FrameBuffer() {}
915
916           // Print debugging information to stream (stderr default)
917           void Dump(FILE* = 0, ui32_t dump_bytes = 0) const;
918         };
919
920       // An object which opens and reads a WAV file.  The call to OpenRead() reads metadata from
921       // the file and populates an internal AudioDescriptor object. Each subsequent call to
922       // ReadFrame() reads exactly one frame from the stream into the given FrameBuffer object.
923       // A "frame" is either 2000 or 2002 samples, depending upon the value of PictureRate.
924       class WAVParser
925         {
926           class h__WAVParser;
927           mem_ptr<h__WAVParser> m_Parser;
928           ASDCP_NO_COPY_CONSTRUCT(WAVParser);
929
930         public:
931           WAVParser();
932           virtual ~WAVParser();
933
934           // Opens the stream for reading, parses enough data to provide a complete
935           // set of stream metadata for the MXFWriter below. PictureRate controls
936           // ther frame rate for the MXF frame wrapping option.
937           Result_t OpenRead(const std::string& filename, const Rational& PictureRate) const;
938
939           // Fill an AudioDescriptor struct with the values from the file's header.
940           // Returns RESULT_INIT if the file is not open.
941           Result_t FillAudioDescriptor(AudioDescriptor&) const;
942
943           // Rewind the stream to the beginning.
944           Result_t Reset() const;
945
946           // Reads the next sequential frame in the input file and places it in the
947           // frame buffer. Fails if the buffer is too small or the stream is empty.
948           Result_t ReadFrame(FrameBuffer&) const;
949         };
950
951
952       //
953       class MXFWriter
954         {
955           class h__Writer;
956           mem_ptr<h__Writer> m_Writer;
957           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
958
959         public:
960           MXFWriter();
961           virtual ~MXFWriter();
962
963           // Warning: direct manipulation of MXF structures can interfere
964           // with the normal operation of the wrapper.  Caveat emptor!
965           virtual MXF::OP1aHeader& OP1aHeader();
966           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
967           virtual MXF::RIP& RIP();
968
969           // Open the file for writing. The file must not exist. Returns error if
970           // the operation cannot be completed or if nonsensical data is discovered
971           // in the essence descriptor.
972           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
973                              const AudioDescriptor&, ui32_t HeaderSize = 16384);
974
975           // Writes a frame of essence to the MXF file. If the optional AESEncContext
976           // argument is present, the essence is encrypted prior to writing.
977           // Fails if the file is not open, is finalized, or an operating system
978           // error occurs.
979           Result_t WriteFrame(const FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
980
981           // Closes the MXF file, writing the index and revised header.
982           Result_t Finalize();
983         };
984
985       //
986       class MXFReader
987         {
988           class h__Reader;
989           mem_ptr<h__Reader> m_Reader;
990           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
991
992         public:
993           MXFReader();
994           virtual ~MXFReader();
995
996           // Warning: direct manipulation of MXF structures can interfere
997           // with the normal operation of the wrapper.  Caveat emptor!
998           virtual MXF::OP1aHeader& OP1aHeader();
999           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1000           virtual MXF::RIP& RIP();
1001
1002           // Open the file for reading. The file must exist. Returns error if the
1003           // operation cannot be completed.
1004           Result_t OpenRead(const std::string& filename) const;
1005
1006           // Returns RESULT_INIT if the file is not open.
1007           Result_t Close() const;
1008
1009           // Fill an AudioDescriptor struct with the values from the file's header.
1010           // Returns RESULT_INIT if the file is not open.
1011           Result_t FillAudioDescriptor(AudioDescriptor&) const;
1012
1013           // Fill a WriterInfo struct with the values from the file's header.
1014           // Returns RESULT_INIT if the file is not open.
1015           Result_t FillWriterInfo(WriterInfo&) const;
1016
1017           // Reads a frame of essence from the MXF file. If the optional AESEncContext
1018           // argument is present, the essence is decrypted after reading. If the MXF
1019           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1020           // will contain the ciphertext frame data. If the HMACContext argument is
1021           // not NULL, the HMAC will be calculated (if the file supports it).
1022           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1023           // out of range, or if optional decrypt or HAMC operations fail.
1024           Result_t ReadFrame(ui32_t frame_number, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1025
1026           // Using the index table read from the footer partition, lookup the frame number
1027           // and return the offset into the file at which to read that frame of essence.
1028           // Returns RESULT_INIT if the file is not open, and RESULT_RANGE if the frame number is
1029           // out of range.
1030           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
1031
1032           // Print debugging information to stream
1033           void     DumpHeaderMetadata(FILE* = 0) const;
1034           void     DumpIndex(FILE* = 0) const;
1035         };
1036     } // namespace PCM
1037
1038   //---------------------------------------------------------------------------------
1039   //
1040   namespace JP2K
1041     {
1042       const ui32_t MaxComponents = 3;
1043       const ui32_t MaxPrecincts = 32; // ISO 15444-1 Annex A.6.1
1044       const ui32_t MaxDefaults = 256; // made up
1045
1046 #pragma pack(1)
1047       struct ImageComponent_t  // ISO 15444-1 Annex A.5.1
1048       {
1049         ui8_t Ssize;
1050         ui8_t XRsize;
1051         ui8_t YRsize;
1052       };
1053
1054       struct CodingStyleDefault_t // ISO 15444-1 Annex A.6.1
1055       {
1056         ui8_t   Scod;
1057
1058         struct
1059         {
1060           ui8_t  ProgressionOrder;
1061           ui8_t  NumberOfLayers[sizeof(ui16_t)];
1062           ui8_t  MultiCompTransform;
1063         } SGcod;
1064
1065         struct
1066         {
1067           ui8_t  DecompositionLevels;
1068           ui8_t  CodeblockWidth;
1069           ui8_t  CodeblockHeight;
1070           ui8_t  CodeblockStyle;
1071           ui8_t  Transformation;
1072           ui8_t  PrecinctSize[MaxPrecincts];
1073         } SPcod;
1074       };
1075
1076       struct QuantizationDefault_t // ISO 15444-1 Annex A.6.4
1077       {
1078         ui8_t  Sqcd;
1079         ui8_t  SPqcd[MaxDefaults];
1080         ui8_t  SPqcdLength;
1081       };
1082 #pragma pack()
1083
1084       struct PictureDescriptor
1085       {
1086         Rational       EditRate;
1087         ui32_t         ContainerDuration;
1088         Rational       SampleRate;
1089         ui32_t         StoredWidth;
1090         ui32_t         StoredHeight;
1091         Rational       AspectRatio;
1092         ui16_t         Rsize;
1093         ui32_t         Xsize;
1094         ui32_t         Ysize;
1095         ui32_t         XOsize;
1096         ui32_t         YOsize;
1097         ui32_t         XTsize;
1098         ui32_t         YTsize;
1099         ui32_t         XTOsize;
1100         ui32_t         YTOsize;
1101         ui16_t         Csize;
1102         ImageComponent_t      ImageComponents[MaxComponents];
1103         CodingStyleDefault_t  CodingStyleDefault;
1104         QuantizationDefault_t QuantizationDefault;
1105       };
1106
1107       // Print debugging information to std::ostream
1108       std::ostream& operator << (std::ostream& strm, const PictureDescriptor& pdesc);
1109       // Print debugging information to stream (stderr default)
1110       void   PictureDescriptorDump(const PictureDescriptor&, FILE* = 0);
1111
1112       //
1113       class FrameBuffer : public ASDCP::FrameBuffer
1114         {
1115         public:
1116           FrameBuffer() {}
1117           FrameBuffer(ui32_t size) { Capacity(size); }
1118           virtual ~FrameBuffer() {}
1119
1120           // Print debugging information to stream (stderr default)
1121           void Dump(FILE* = 0, ui32_t dump_bytes = 0) const;
1122         };
1123
1124
1125       // An object which opens and reads a JPEG 2000 codestream file.  The file is expected
1126       // to contain exactly one complete frame of picture essence as an unwrapped (raw)
1127       // ISO/IEC 15444 codestream.
1128       class CodestreamParser
1129         {
1130           class h__CodestreamParser;
1131           mem_ptr<h__CodestreamParser> m_Parser;
1132           ASDCP_NO_COPY_CONSTRUCT(CodestreamParser);
1133
1134         public:
1135           CodestreamParser();
1136           virtual ~CodestreamParser();
1137
1138           // Opens a file for reading, parses enough data to provide a complete
1139           // set of stream metadata for the MXFWriter below.
1140           // The frame buffer's PlaintextOffset parameter will be set to the first
1141           // byte of the data segment. Set this value to zero if you want
1142           // encrypted headers.
1143           Result_t OpenReadFrame(const std::string& filename, FrameBuffer&) const;
1144
1145           // Fill a PictureDescriptor struct with the values from the file's codestream.
1146           // Returns RESULT_INIT if the file is not open.
1147           Result_t FillPictureDescriptor(PictureDescriptor&) const;
1148         };
1149
1150       // Parses the data in the frame buffer to fill in the picture descriptor. Copies
1151       // the offset of the image data into start_of_data. Returns error if the parser fails.
1152       Result_t ParseMetadataIntoDesc(const FrameBuffer&, PictureDescriptor&, byte_t* start_of_data = 0);
1153
1154       // An object which reads a sequence of files containing JPEG 2000 pictures.
1155       class SequenceParser
1156         {
1157           class h__SequenceParser;
1158           mem_ptr<h__SequenceParser> m_Parser;
1159           ASDCP_NO_COPY_CONSTRUCT(SequenceParser);
1160
1161         public:
1162           SequenceParser();
1163           virtual ~SequenceParser();
1164
1165           // Opens a directory for reading.  The directory is expected to contain one or
1166           // more files, each containing the codestream for exactly one picture. The
1167           // files must be named such that the frames are in temporal order when sorted
1168           // alphabetically by filename. The parser will automatically parse enough data
1169           // from the first file to provide a complete set of stream metadata for the
1170           // MXFWriter below.  If the "pedantic" parameter is given and is true, the
1171           // parser will check the metadata for each codestream and fail if a
1172           // mismatch is detected.
1173           Result_t OpenRead(const std::string& filename, bool pedantic = false) const;
1174
1175           // Opens a file sequence for reading.  The sequence is expected to contain one or
1176           // more filenames, each naming a file containing the codestream for exactly one
1177           // picture. The parser will automatically parse enough data
1178           // from the first file to provide a complete set of stream metadata for the
1179           // MXFWriter below.  If the "pedantic" parameter is given and is true, the
1180           // parser will check the metadata for each codestream and fail if a
1181           // mismatch is detected.
1182           Result_t OpenRead(const std::list<std::string>& file_list, bool pedantic = false) const;
1183
1184           // Fill a PictureDescriptor struct with the values from the first file's codestream.
1185           // Returns RESULT_INIT if the directory is not open.
1186           Result_t FillPictureDescriptor(PictureDescriptor&) const;
1187
1188           // Rewind the directory to the beginning.
1189           Result_t Reset() const;
1190
1191           // Reads the next sequential frame in the directory and places it in the
1192           // frame buffer. Fails if the buffer is too small or the direcdtory
1193           // contains no more files.
1194           // The frame buffer's PlaintextOffset parameter will be set to the first
1195           // byte of the data segment. Set this value to zero if you want
1196           // encrypted headers.
1197           Result_t ReadFrame(FrameBuffer&) const;
1198         };
1199
1200
1201       //
1202       class MXFWriter
1203         {
1204           class h__Writer;
1205           mem_ptr<h__Writer> m_Writer;
1206           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
1207
1208         public:
1209           MXFWriter();
1210           virtual ~MXFWriter();
1211
1212           // Warning: direct manipulation of MXF structures can interfere
1213           // with the normal operation of the wrapper.  Caveat emptor!
1214           virtual MXF::OP1aHeader& OP1aHeader();
1215           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1216           virtual MXF::RIP& RIP();
1217
1218           // Open the file for writing. The file must not exist. Returns error if
1219           // the operation cannot be completed or if nonsensical data is discovered
1220           // in the essence descriptor.
1221           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
1222                              const PictureDescriptor&, ui32_t HeaderSize = 16384);
1223
1224           // Writes a frame of essence to the MXF file. If the optional AESEncContext
1225           // argument is present, the essence is encrypted prior to writing.
1226           // Fails if the file is not open, is finalized, or an operating system
1227           // error occurs.
1228           Result_t WriteFrame(const FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
1229
1230           // Closes the MXF file, writing the index and revised header.
1231           Result_t Finalize();
1232         };
1233
1234       //
1235       class MXFReader
1236         {
1237           class h__Reader;
1238           mem_ptr<h__Reader> m_Reader;
1239           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
1240
1241         public:
1242           MXFReader();
1243           virtual ~MXFReader();
1244
1245           // Warning: direct manipulation of MXF structures can interfere
1246           // with the normal operation of the wrapper.  Caveat emptor!
1247           virtual MXF::OP1aHeader& OP1aHeader();
1248           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1249           virtual MXF::RIP& RIP();
1250
1251           // Open the file for reading. The file must exist. Returns error if the
1252           // operation cannot be completed.
1253           Result_t OpenRead(const std::string& filename) const;
1254
1255           // Returns RESULT_INIT if the file is not open.
1256           Result_t Close() const;
1257
1258           // Fill an AudioDescriptor struct with the values from the file's header.
1259           // Returns RESULT_INIT if the file is not open.
1260           Result_t FillPictureDescriptor(PictureDescriptor&) const;
1261
1262           // Fill a WriterInfo struct with the values from the file's header.
1263           // Returns RESULT_INIT if the file is not open.
1264           Result_t FillWriterInfo(WriterInfo&) const;
1265
1266           // Reads a frame of essence from the MXF file. If the optional AESEncContext
1267           // argument is present, the essence is decrypted after reading. If the MXF
1268           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1269           // will contain the ciphertext frame data. If the HMACContext argument is
1270           // not NULL, the HMAC will be calculated (if the file supports it).
1271           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1272           // out of range, or if optional decrypt or HAMC operations fail.
1273           Result_t ReadFrame(ui32_t frame_number, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1274
1275           // Using the index table read from the footer partition, lookup the frame number
1276           // and return the offset into the file at which to read that frame of essence.
1277           // Returns RESULT_INIT if the file is not open, and RESULT_FRAME if the frame number is
1278           // out of range.
1279           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
1280
1281           // Print debugging information to stream
1282           void     DumpHeaderMetadata(FILE* = 0) const;
1283           void     DumpIndex(FILE* = 0) const;
1284         };
1285
1286
1287       // Stereoscopic Image support
1288       //
1289
1290       enum StereoscopicPhase_t
1291       {
1292         SP_LEFT,
1293         SP_RIGHT
1294       };
1295
1296       struct SFrameBuffer
1297       {
1298         JP2K::FrameBuffer Left;
1299         JP2K::FrameBuffer Right;
1300
1301         SFrameBuffer(ui32_t size) {
1302           Left.Capacity(size);
1303           Right.Capacity(size);
1304         }
1305       };
1306
1307       class MXFSWriter
1308       {
1309           class h__SWriter;
1310           mem_ptr<h__SWriter> m_Writer;
1311           ASDCP_NO_COPY_CONSTRUCT(MXFSWriter);
1312
1313         public:
1314           MXFSWriter();
1315           virtual ~MXFSWriter();
1316
1317           // Warning: direct manipulation of MXF structures can interfere
1318           // with the normal operation of the wrapper.  Caveat emptor!
1319           virtual MXF::OP1aHeader& OP1aHeader();
1320           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1321           virtual MXF::RIP& RIP();
1322
1323           // Open the file for writing. The file must not exist. Returns error if
1324           // the operation cannot be completed or if nonsensical data is discovered
1325           // in the essence descriptor.
1326           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
1327                              const PictureDescriptor&, ui32_t HeaderSize = 16384);
1328
1329           // Writes a pair of frames of essence to the MXF file. If the optional AESEncContext
1330           // argument is present, the essence is encrypted prior to writing.
1331           // Fails if the file is not open, is finalized, or an operating system
1332           // error occurs.
1333           Result_t WriteFrame(const SFrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
1334
1335           // Writes a frame of essence to the MXF file. If the optional AESEncContext
1336           // argument is present, the essence is encrypted prior to writing.
1337           // Fails if the file is not open, is finalized, or an operating system
1338           // error occurs. Frames must be written in the proper phase (L-R-L-R),
1339           // RESULT_SPHASE will be returned if phase is reversed. The first frame
1340           // written must be left eye.
1341           Result_t WriteFrame(const FrameBuffer&, StereoscopicPhase_t phase,
1342                               AESEncContext* = 0, HMACContext* = 0);
1343
1344           // Closes the MXF file, writing the index and revised header.  Returns
1345           // RESULT_SPHASE if WriteFrame was called an odd number of times.
1346           Result_t Finalize();
1347         };
1348
1349       //
1350       class MXFSReader
1351         {
1352           class h__SReader;
1353           mem_ptr<h__SReader> m_Reader;
1354           ASDCP_NO_COPY_CONSTRUCT(MXFSReader);
1355
1356         public:
1357           MXFSReader();
1358           virtual ~MXFSReader();
1359
1360           // Warning: direct manipulation of MXF structures can interfere
1361           // with the normal operation of the wrapper.  Caveat emptor!
1362           virtual MXF::OP1aHeader& OP1aHeader();
1363           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1364           virtual MXF::RIP& RIP();
1365
1366           // Open the file for reading. The file must exist. Returns error if the
1367           // operation cannot be completed.
1368           Result_t OpenRead(const std::string& filename) const;
1369
1370           // Returns RESULT_INIT if the file is not open.
1371           Result_t Close() const;
1372
1373           // Fill an AudioDescriptor struct with the values from the file's header.
1374           // Returns RESULT_INIT if the file is not open.
1375           Result_t FillPictureDescriptor(PictureDescriptor&) const;
1376
1377           // Fill a WriterInfo struct with the values from the file's header.
1378           // Returns RESULT_INIT if the file is not open.
1379           Result_t FillWriterInfo(WriterInfo&) const;
1380
1381           // Reads a pair of frames of essence from the MXF file. If the optional AESEncContext
1382           // argument is present, the essence is decrypted after reading. If the MXF
1383           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1384           // will contain the ciphertext frame data. If the HMACContext argument is
1385           // not NULL, the HMAC will be calculated (if the file supports it).
1386           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1387           // out of range, or if optional decrypt or HAMC operations fail.
1388           Result_t ReadFrame(ui32_t frame_number, SFrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1389
1390           // Reads a frame of essence from the MXF file. If the optional AESEncContext
1391           // argument is present, the essence is decrypted after reading. If the MXF
1392           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1393           // will contain the ciphertext frame data. If the HMACContext argument is
1394           // not NULL, the HMAC will be calculated (if the file supports it).
1395           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1396           // out of range, or if optional decrypt or HAMC operations fail.
1397           Result_t ReadFrame(ui32_t frame_number, StereoscopicPhase_t phase,
1398                              FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1399
1400           // Using the index table read from the footer partition, lookup the frame number
1401           // and return the offset into the file at which to read that frame of essence.
1402           // Returns RESULT_INIT if the file is not open, and RESULT_FRAME if the frame number is
1403           // out of range.
1404           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
1405
1406           // Print debugging information to stream
1407           void     DumpHeaderMetadata(FILE* = 0) const;
1408           void     DumpIndex(FILE* = 0) const;
1409         };
1410     } // namespace JP2K
1411
1412   //---------------------------------------------------------------------------------
1413   //
1414   namespace TimedText
1415     {
1416       enum MIMEType_t { MT_BIN, MT_PNG, MT_OPENTYPE };
1417
1418       struct TimedTextResourceDescriptor
1419       {
1420         byte_t      ResourceID[UUIDlen];
1421           MIMEType_t  Type;
1422
1423         TimedTextResourceDescriptor() : Type(MT_BIN) {}
1424       };
1425
1426       typedef std::list<TimedTextResourceDescriptor> ResourceList_t;
1427
1428       struct TimedTextDescriptor
1429       {
1430         Rational       EditRate;                //
1431         ui32_t         ContainerDuration;
1432         byte_t         AssetID[UUIDlen];
1433         std::string    NamespaceName;
1434         std::string    EncodingName;
1435         ResourceList_t ResourceList;
1436
1437       TimedTextDescriptor() : ContainerDuration(0), EncodingName("UTF-8") {} // D-Cinema format is always UTF-8
1438       };
1439
1440       // Print debugging information to std::ostream
1441       std::ostream& operator << (std::ostream& strm, const TimedTextDescriptor& tinfo);
1442       // Print debugging information to stream (stderr default)
1443       void   DescriptorDump(const TimedTextDescriptor&, FILE* = 0);
1444
1445       //
1446       class FrameBuffer : public ASDCP::FrameBuffer
1447       {
1448         ASDCP_NO_COPY_CONSTRUCT(FrameBuffer); // TODO: should have copy construct
1449
1450       protected:
1451         byte_t      m_AssetID[UUIDlen];
1452         std::string m_MIMEType;
1453
1454       public:
1455         FrameBuffer() { memset(m_AssetID, 0, UUIDlen); }
1456         FrameBuffer(ui32_t size) { Capacity(size); memset(m_AssetID, 0, UUIDlen); }
1457         virtual ~FrameBuffer() {}
1458
1459         inline const byte_t* AssetID() const { return m_AssetID; }
1460         inline void          AssetID(const byte_t* buf) { memcpy(m_AssetID, buf, UUIDlen); }
1461         inline const char*   MIMEType() const { return m_MIMEType.c_str(); }
1462         inline void          MIMEType(const std::string& s) { m_MIMEType = s; }
1463
1464         // Print debugging information to stream (stderr default)
1465         void Dump(FILE* = 0, ui32_t dump_bytes = 0) const;
1466       };
1467
1468       // An abstract base for a lookup service that returns the resource data
1469       // identified by the given ancillary resource id.
1470       //
1471       class IResourceResolver
1472       {
1473       public:
1474         virtual ~IResourceResolver() {}
1475         virtual Result_t ResolveRID(const byte_t* uuid, FrameBuffer&) const = 0; // return data for RID
1476       };
1477
1478       // Resolves resource references by testing the named directory for file names containing
1479       // the respective UUID.
1480       //
1481       class LocalFilenameResolver : public ASDCP::TimedText::IResourceResolver
1482         {
1483           std::string m_Dirname;
1484           ASDCP_NO_COPY_CONSTRUCT(LocalFilenameResolver);
1485
1486         public:
1487           LocalFilenameResolver();
1488           Result_t OpenRead(const std::string& dirname);
1489           Result_t ResolveRID(const byte_t* uuid, FrameBuffer& FrameBuf) const;
1490         };
1491
1492       //
1493       class DCSubtitleParser
1494         {
1495           class h__SubtitleParser;
1496           mem_ptr<h__SubtitleParser> m_Parser;
1497           ASDCP_NO_COPY_CONSTRUCT(DCSubtitleParser);
1498
1499         public:
1500           DCSubtitleParser();
1501           virtual ~DCSubtitleParser();
1502
1503           // Opens an XML file for reading, parses data to provide a complete
1504           // set of stream metadata for the MXFWriter below.
1505           Result_t OpenRead(const std::string& filename) const;
1506
1507           // Parses an XML document to provide a complete set of stream metadata
1508           // for the MXFWriter below. The optional filename argument is used to
1509           // initialize the default resource resolver (see ReadAncillaryResource).
1510           Result_t OpenRead(const std::string& xml_doc, const std::string& filename) const;
1511
1512           // Fill a TimedTextDescriptor struct with the values from the file's contents.
1513           // Returns RESULT_INIT if the file is not open.
1514           Result_t FillTimedTextDescriptor(TimedTextDescriptor&) const;
1515
1516           // Reads the complete Timed Text Resource into the given string.
1517           Result_t ReadTimedTextResource(std::string&) const;
1518
1519           // Reads the Ancillary Resource having the given ID. Fails if the buffer
1520           // is too small or the resource does not exist. The optional Resolver
1521           // argument can be provided which will be used to retrieve the resource
1522           // having a particulat UUID. If a Resolver is not supplied, the default
1523           // internal resolver will return the contents of the file having the UUID
1524           // as the filename. The filename must exist in the same directory as the
1525           // XML file opened with OpenRead().
1526           Result_t ReadAncillaryResource(const byte_t* uuid, FrameBuffer&,
1527                                          const IResourceResolver* Resolver = 0) const;
1528         };
1529
1530       //
1531       class MXFWriter
1532         {
1533           class h__Writer;
1534           mem_ptr<h__Writer> m_Writer;
1535           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
1536
1537         public:
1538           MXFWriter();
1539           virtual ~MXFWriter();
1540
1541           // Warning: direct manipulation of MXF structures can interfere
1542           // with the normal operation of the wrapper.  Caveat emptor!
1543           virtual MXF::OP1aHeader& OP1aHeader();
1544           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1545           virtual MXF::RIP& RIP();
1546
1547           // Open the file for writing. The file must not exist. Returns error if
1548           // the operation cannot be completed or if nonsensical data is discovered
1549           // in the essence descriptor.
1550           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
1551                              const TimedTextDescriptor&, ui32_t HeaderSize = 16384);
1552
1553           // Writes the Timed-Text Resource to the MXF file. The file must be UTF-8
1554           // encoded. If the optional AESEncContext argument is present, the essence
1555           // is encrypted prior to writing. Fails if the file is not open, is finalized,
1556           // or an operating system error occurs.
1557           // This method may only be called once, and it must be called before any
1558           // call to WriteAncillaryResource(). RESULT_STATE will be returned if these
1559           // conditions are not met.
1560           Result_t WriteTimedTextResource(const std::string& XMLDoc, AESEncContext* = 0, HMACContext* = 0);
1561
1562           // Writes an Ancillary Resource to the MXF file. If the optional AESEncContext
1563           // argument is present, the essence is encrypted prior to writing.
1564           // Fails if the file is not open, is finalized, or an operating system
1565           // error occurs. RESULT_STATE will be returned if the method is called before
1566           // WriteTimedTextResource()
1567           Result_t WriteAncillaryResource(const FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
1568
1569           // Closes the MXF file, writing the index and revised header.
1570           Result_t Finalize();
1571         };
1572
1573       //
1574       class MXFReader
1575         {
1576           class h__Reader;
1577           mem_ptr<h__Reader> m_Reader;
1578           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
1579
1580         public:
1581           MXFReader();
1582           virtual ~MXFReader();
1583
1584           // Warning: direct manipulation of MXF structures can interfere
1585           // with the normal operation of the wrapper.  Caveat emptor!
1586           virtual MXF::OP1aHeader& OP1aHeader();
1587           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1588           virtual MXF::RIP& RIP();
1589
1590           // Open the file for reading. The file must exist. Returns error if the
1591           // operation cannot be completed.
1592           Result_t OpenRead(const std::string& filename) const;
1593
1594           // Returns RESULT_INIT if the file is not open.
1595           Result_t Close() const;
1596
1597           // Fill a TimedTextDescriptor struct with the values from the file's header.
1598           // Returns RESULT_INIT if the file is not open.
1599           Result_t FillTimedTextDescriptor(TimedTextDescriptor&) const;
1600
1601           // Fill a WriterInfo struct with the values from the file's header.
1602           // Returns RESULT_INIT if the file is not open.
1603           Result_t FillWriterInfo(WriterInfo&) const;
1604
1605           // Reads the complete Timed Text Resource into the given string. Fails if the resource
1606           // is encrypted and AESDecContext is NULL (use the following method to retrieve the
1607           // raw ciphertet block).
1608           Result_t ReadTimedTextResource(std::string&, AESDecContext* = 0, HMACContext* = 0) const;
1609
1610           // Reads the complete Timed Text Resource from the MXF file. If the optional AESEncContext
1611           // argument is present, the resource is decrypted after reading. If the MXF
1612           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1613           // will contain the ciphertext frame data. If the HMACContext argument is
1614           // not NULL, the HMAC will be calculated (if the file supports it).
1615           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1616           // out of range, or if optional decrypt or HAMC operations fail.
1617           Result_t ReadTimedTextResource(FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1618
1619           // Reads the timed-text resource having the given UUID from the MXF file. If the
1620           // optional AESEncContext argument is present, the resource is decrypted after
1621           // reading. If the MXF file is encrypted and the AESDecContext argument is NULL,
1622           // the frame buffer will contain the ciphertext frame data. If the HMACContext
1623           // argument is not NULL, the HMAC will be calculated (if the file supports it).
1624           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1625           // out of range, or if optional decrypt or HAMC operations fail.
1626           Result_t ReadAncillaryResource(const byte_t* uuid, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1627
1628           // Print debugging information to stream
1629           void     DumpHeaderMetadata(FILE* = 0) const;
1630           void     DumpIndex(FILE* = 0) const;
1631         };
1632     } // namespace TimedText
1633
1634   //---------------------------------------------------------------------------------
1635   //
1636   namespace DCData
1637   {
1638     struct DCDataDescriptor
1639     {
1640       Rational EditRate;                 // Sample rate
1641       ui32_t   ContainerDuration;          // number of frames
1642       byte_t   AssetID[UUIDlen];           // The UUID for the DCData track
1643       byte_t   DataEssenceCoding[UUIDlen]; // The coding for the data carried
1644     };
1645
1646     // Print DCDataDescriptor to std::ostream
1647     std::ostream& operator << (std::ostream& strm, const DCDataDescriptor& ddesc);
1648     // Print debugging information to stream (stderr default)
1649     void DCDataDescriptorDump(const DCDataDescriptor&, FILE* = 0);
1650
1651     //
1652     class FrameBuffer : public ASDCP::FrameBuffer
1653         {
1654      public:
1655           FrameBuffer() {}
1656           FrameBuffer(ui32_t size) { Capacity(size); }
1657           virtual ~FrameBuffer() {}
1658
1659           // Print debugging information to stream (stderr default)
1660           void Dump(FILE* = 0, ui32_t dump_bytes = 0) const;
1661         };
1662
1663     // An object which opens and reads a DC Data file.  The file is expected
1664     // to contain exactly one complete frame of DC data essence as an unwrapped (raw)
1665     // byte stream.
1666     class BytestreamParser
1667         {
1668           class h__BytestreamParser;
1669           mem_ptr<h__BytestreamParser> m_Parser;
1670           ASDCP_NO_COPY_CONSTRUCT(BytestreamParser);
1671
1672      public:
1673           BytestreamParser();
1674           virtual ~BytestreamParser();
1675
1676           // Opens a file for reading, parses enough data to provide a complete
1677       // set of stream metadata for the MXFWriter below.
1678           // The frame buffer's PlaintextOffset parameter will be set to the first
1679           // byte of the data segment. Set this value to zero if you want
1680           // encrypted headers.
1681           Result_t OpenReadFrame(const std::string& filename, FrameBuffer&) const;
1682
1683           // Fill a DCDataDescriptor struct with the values from the file's bytestream.
1684           // Returns RESULT_INIT if the file is not open.
1685           Result_t FillDCDataDescriptor(DCDataDescriptor&) const;
1686         };
1687
1688     // An object which reads a sequence of files containing DC Data.
1689     class SequenceParser
1690         {
1691           class h__SequenceParser;
1692           mem_ptr<h__SequenceParser> m_Parser;
1693           ASDCP_NO_COPY_CONSTRUCT(SequenceParser);
1694
1695      public:
1696           SequenceParser();
1697           virtual ~SequenceParser();
1698
1699           // Opens a directory for reading.  The directory is expected to contain one or
1700           // more files, each containing the bytestream for exactly one frame. The files
1701       // must be named such that the frames are in temporal order when sorted
1702           // alphabetically by filename.
1703           Result_t OpenRead(const std::string& filename) const;
1704
1705           // Opens a file sequence for reading.  The sequence is expected to contain one or
1706           // more filenames, each naming a file containing the bytestream for exactly one
1707           // frame.
1708           Result_t OpenRead(const std::list<std::string>& file_list) const;
1709
1710           // Fill a DCDataDescriptor struct with default values.
1711           // Returns RESULT_INIT if the directory is not open.
1712           Result_t FillDCDataDescriptor(DCDataDescriptor&) const;
1713
1714           // Rewind the directory to the beginning.
1715           Result_t Reset() const;
1716
1717           // Reads the next sequential frame in the directory and places it in the
1718           // frame buffer. Fails if the buffer is too small or the direcdtory
1719           // contains no more files.
1720           // The frame buffer's PlaintextOffset parameter will be set to the first
1721           // byte of the data segment. Set this value to zero if you want
1722           // encrypted headers.
1723           Result_t ReadFrame(FrameBuffer&) const;
1724         };
1725
1726     //
1727     class MXFWriter
1728         {
1729           class h__Writer;
1730           mem_ptr<h__Writer> m_Writer;
1731           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
1732
1733      public:
1734           MXFWriter();
1735           virtual ~MXFWriter();
1736
1737           // Warning: direct manipulation of MXF structures can interfere
1738           // with the normal operation of the wrapper.  Caveat emptor!
1739           virtual MXF::OP1aHeader& OP1aHeader();
1740           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1741           virtual MXF::RIP& RIP();
1742
1743           // Open the file for writing. The file must not exist. Returns error if
1744           // the operation cannot be completed or if nonsensical data is discovered
1745           // in the essence descriptor.
1746           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
1747                              const DCDataDescriptor&, ui32_t HeaderSize = 16384);
1748
1749           // Writes a frame of essence to the MXF file. If the optional AESEncContext
1750           // argument is present, the essence is encrypted prior to writing.
1751           // Fails if the file is not open, is finalized, or an operating system
1752           // error occurs.
1753           Result_t WriteFrame(const FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
1754
1755           // Closes the MXF file, writing the index and revised header.
1756           Result_t Finalize();
1757         };
1758
1759     //
1760     class MXFReader
1761         {
1762           class h__Reader;
1763           mem_ptr<h__Reader> m_Reader;
1764           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
1765
1766      public:
1767           MXFReader();
1768           virtual ~MXFReader();
1769
1770           // Warning: direct manipulation of MXF structures can interfere
1771           // with the normal operation of the wrapper.  Caveat emptor!
1772           virtual MXF::OP1aHeader& OP1aHeader();
1773           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1774           virtual MXF::RIP& RIP();
1775
1776           // Open the file for reading. The file must exist. Returns error if the
1777           // operation cannot be completed.
1778           Result_t OpenRead(const std::string& filename) const;
1779
1780           // Returns RESULT_INIT if the file is not open.
1781           Result_t Close() const;
1782
1783           // Fill a DCDataDescriptor struct with the values from the file's header.
1784           // Returns RESULT_INIT if the file is not open.
1785           Result_t FillDCDataDescriptor(DCDataDescriptor&) const;
1786
1787           // Fill a WriterInfo struct with the values from the file's header.
1788           // Returns RESULT_INIT if the file is not open.
1789           Result_t FillWriterInfo(WriterInfo&) const;
1790
1791           // Reads a frame of essence from the MXF file. If the optional AESEncContext
1792           // argument is present, the essence is decrypted after reading. If the MXF
1793           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1794           // will contain the ciphertext frame data. If the HMACContext argument is
1795           // not NULL, the HMAC will be calculated (if the file supports it).
1796           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1797           // out of range, or if optional decrypt or HAMC operations fail.
1798           Result_t ReadFrame(ui32_t frame_number, FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1799
1800           // Using the index table read from the footer partition, lookup the frame number
1801           // and return the offset into the file at which to read that frame of essence.
1802           // Returns RESULT_INIT if the file is not open, and RESULT_RANGE if the frame number is
1803           // out of range.
1804           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
1805
1806           // Print debugging information to stream
1807           void     DumpHeaderMetadata(FILE* = 0) const;
1808           void     DumpIndex(FILE* = 0) const;
1809         };
1810
1811   } // namespace DCData
1812
1813   //---------------------------------------------------------------------------------
1814   //
1815   namespace ATMOS
1816   {
1817     struct AtmosDescriptor : public DCData::DCDataDescriptor
1818     {
1819       ui32_t FirstFrame;       // Frame number of the frame to align with the FFOA of the picture track
1820       ui16_t MaxChannelCount;  // Max number of channels in bitstream
1821       ui16_t MaxObjectCount;   // Max number of objects in bitstream
1822       byte_t AtmosID[UUIDlen]; // UUID of Atmos Project
1823       ui8_t  AtmosVersion;     // ATMOS Coder Version used to create bitstream
1824     };
1825
1826     // Print AtmosDescriptor to std::ostream
1827     std::ostream& operator << (std::ostream& strm, const AtmosDescriptor& adesc);
1828     // Print debugging information to stream (stderr default)
1829     void AtmosDescriptorDump(const AtmosDescriptor&, FILE* = 0);
1830     // Determine if a file is a raw atmos file
1831     bool IsDolbyAtmos(const std::string& filename);
1832
1833     //
1834     class MXFWriter
1835         {
1836
1837       class h__Writer;
1838           mem_ptr<h__Writer> m_Writer;
1839           ASDCP_NO_COPY_CONSTRUCT(MXFWriter);
1840
1841      public:
1842           MXFWriter();
1843           virtual ~MXFWriter();
1844
1845           // Warning: direct manipulation of MXF structures can interfere
1846           // with the normal operation of the wrapper.  Caveat emptor!
1847           virtual MXF::OP1aHeader& OP1aHeader();
1848           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1849           virtual MXF::RIP& RIP();
1850
1851           // Open the file for writing. The file must not exist. Returns error if
1852           // the operation cannot be completed or if nonsensical data is discovered
1853           // in the essence descriptor.
1854           Result_t OpenWrite(const std::string& filename, const WriterInfo&,
1855                              const AtmosDescriptor&, ui32_t HeaderSize = 16384);
1856
1857           // Writes a frame of essence to the MXF file. If the optional AESEncContext
1858           // argument is present, the essence is encrypted prior to writing.
1859           // Fails if the file is not open, is finalized, or an operating system
1860           // error occurs.
1861       Result_t WriteFrame(const DCData::FrameBuffer&, AESEncContext* = 0, HMACContext* = 0);
1862
1863           // Closes the MXF file, writing the index and revised header.
1864           Result_t Finalize();
1865         };
1866
1867     //
1868     class MXFReader
1869         {
1870       class h__Reader;
1871           mem_ptr<h__Reader> m_Reader;
1872           ASDCP_NO_COPY_CONSTRUCT(MXFReader);
1873
1874      public:
1875           MXFReader();
1876           virtual ~MXFReader();
1877
1878           // Warning: direct manipulation of MXF structures can interfere
1879           // with the normal operation of the wrapper.  Caveat emptor!
1880           virtual MXF::OP1aHeader& OP1aHeader();
1881           virtual MXF::OPAtomIndexFooter& OPAtomIndexFooter();
1882           virtual MXF::RIP& RIP();
1883
1884           // Open the file for reading. The file must exist. Returns error if the
1885           // operation cannot be completed.
1886           Result_t OpenRead(const std::string& filename) const;
1887
1888           // Returns RESULT_INIT if the file is not open.
1889           Result_t Close() const;
1890
1891           // Fill an AtmosDescriptor struct with the values from the file's header.
1892           // Returns RESULT_INIT if the file is not open.
1893           Result_t FillAtmosDescriptor(AtmosDescriptor&) const;
1894
1895           // Fill a WriterInfo struct with the values from the file's header.
1896           // Returns RESULT_INIT if the file is not open.
1897           Result_t FillWriterInfo(WriterInfo&) const;
1898
1899           // Reads a frame of essence from the MXF file. If the optional AESEncContext
1900           // argument is present, the essence is decrypted after reading. If the MXF
1901           // file is encrypted and the AESDecContext argument is NULL, the frame buffer
1902           // will contain the ciphertext frame data. If the HMACContext argument is
1903           // not NULL, the HMAC will be calculated (if the file supports it).
1904           // Returns RESULT_INIT if the file is not open, failure if the frame number is
1905           // out of range, or if optional decrypt or HAMC operations fail.
1906           Result_t ReadFrame(ui32_t frame_number, DCData::FrameBuffer&, AESDecContext* = 0, HMACContext* = 0) const;
1907
1908           // Using the index table read from the footer partition, lookup the frame number
1909           // and return the offset into the file at which to read that frame of essence.
1910           // Returns RESULT_INIT if the file is not open, and RESULT_RANGE if the frame number is
1911           // out of range.
1912           Result_t LocateFrame(ui32_t FrameNum, Kumu::fpos_t& streamOffset, i8_t& temporalOffset, i8_t& keyFrameOffset) const;
1913
1914           // Print debugging information to stream
1915           void     DumpHeaderMetadata(FILE* = 0) const;
1916           void     DumpIndex(FILE* = 0) const;
1917         };
1918
1919   } // namespace ATMOS
1920
1921
1922
1923 } // namespace ASDCP
1924
1925
1926 #endif // _AS_DCP_H_
1927
1928 //
1929 // end AS_DCP.h
1930 //