You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
3.4KB

  1. /*
  2. * MXF
  3. * Copyright (c) 2006 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog 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. #ifndef AVFORMAT_MXF_H
  22. #define AVFORMAT_MXF_H
  23. #include "avformat.h"
  24. #include "libavcodec/avcodec.h"
  25. #include <stdint.h>
  26. typedef uint8_t UID[16];
  27. enum MXFMetadataSetType {
  28. AnyType,
  29. MaterialPackage,
  30. SourcePackage,
  31. SourceClip,
  32. TimecodeComponent,
  33. Sequence,
  34. MultipleDescriptor,
  35. Descriptor,
  36. Track,
  37. CryptoContext,
  38. Preface,
  39. Identification,
  40. ContentStorage,
  41. SubDescriptor,
  42. IndexTableSegment,
  43. EssenceContainerData,
  44. TypeBottom,// add metadata type before this
  45. };
  46. enum MXFFrameLayout {
  47. FullFrame = 0,
  48. SeparateFields,
  49. OneField,
  50. MixedFields,
  51. SegmentedFrame,
  52. };
  53. typedef struct KLVPacket {
  54. UID key;
  55. int64_t offset;
  56. uint64_t length;
  57. } KLVPacket;
  58. typedef struct MXFCodecUL {
  59. UID uid;
  60. unsigned matching_len;
  61. int id;
  62. } MXFCodecUL;
  63. typedef struct {
  64. struct AVRational time_base;
  65. int samples_per_frame[6];
  66. } MXFSamplesPerFrame;
  67. extern const MXFCodecUL ff_mxf_data_definition_uls[];
  68. extern const MXFCodecUL ff_mxf_codec_uls[];
  69. extern const MXFCodecUL ff_mxf_pixel_format_uls[];
  70. int ff_mxf_decode_pixel_layout(const char pixel_layout[16], enum AVPixelFormat *pix_fmt);
  71. const MXFSamplesPerFrame *ff_mxf_get_samples_per_frame(AVFormatContext *s, AVRational time_base);
  72. #ifdef DEBUG
  73. #define PRINT_KEY(pc, s, x) \
  74. av_log(pc, AV_LOG_VERBOSE, \
  75. "%s " \
  76. "0x%02x,0x%02x,0x%02x,0x%02x," \
  77. "0x%02x,0x%02x,0x%02x,0x%02x," \
  78. "0x%02x,0x%02x,0x%02x,0x%02x," \
  79. "0x%02x,0x%02x,0x%02x,0x%02x ", \
  80. s, \
  81. (x)[0], (x)[1], (x)[2], (x)[3], \
  82. (x)[4], (x)[5], (x)[6], (x)[7], \
  83. (x)[8], (x)[9], (x)[10], (x)[11], \
  84. (x)[12], (x)[13], (x)[14], (x)[15]); \
  85. av_log(pc, AV_LOG_INFO, \
  86. "%s " \
  87. "%02x.%02x.%02x.%02x." \
  88. "%02x.%02x.%02x.%02x." \
  89. "%02x.%02x.%02x.%02x." \
  90. "%02x.%02x.%02x.%02x\n", \
  91. s, \
  92. (x)[0], (x)[1], (x)[2], (x)[3], \
  93. (x)[4], (x)[5], (x)[6], (x)[7], \
  94. (x)[8], (x)[9], (x)[10], (x)[11], \
  95. (x)[12], (x)[13], (x)[14], (x)[15])
  96. #else
  97. #define PRINT_KEY(pc, s, x)
  98. #endif
  99. #endif /* AVFORMAT_MXF_H */