dirac.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright (C) 2007 Marco Gerards <marco@gnu.org>
  3. * Copyright (C) 2009 David Conrad
  4. * Copyright (C) 2011 Jordi Ortiz
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_DIRAC_H
  23. #define AVCODEC_DIRAC_H
  24. /**
  25. * @file
  26. * Interface to Dirac Decoder/Encoder
  27. * @author Marco Gerards <marco@gnu.org>
  28. * @author David Conrad
  29. * @author Jordi Ortiz
  30. */
  31. #include <stddef.h>
  32. #include <stdint.h>
  33. #include "libavutil/pixfmt.h"
  34. #include "libavutil/rational.h"
  35. /**
  36. * The spec limits the number of wavelet decompositions to 4 for both
  37. * level 1 (VC-2) and 128 (long-gop default).
  38. * 5 decompositions is the maximum before >16-bit buffers are needed.
  39. * Schroedinger allows this for DD 9,7 and 13,7 wavelets only, limiting
  40. * the others to 4 decompositions (or 3 for the fidelity filter).
  41. *
  42. * We use this instead of MAX_DECOMPOSITIONS to save some memory.
  43. */
  44. #define MAX_DWT_LEVELS 5
  45. /**
  46. * Parse code values:
  47. *
  48. * Dirac Specification ->
  49. * 9.6.1 Table 9.1
  50. *
  51. * VC-2 Specification ->
  52. * 10.4.1 Table 10.1
  53. */
  54. enum DiracParseCodes {
  55. DIRAC_PCODE_SEQ_HEADER = 0x00,
  56. DIRAC_PCODE_END_SEQ = 0x10,
  57. DIRAC_PCODE_AUX = 0x20,
  58. DIRAC_PCODE_PAD = 0x30,
  59. DIRAC_PCODE_PICTURE_CODED = 0x08,
  60. DIRAC_PCODE_PICTURE_RAW = 0x48,
  61. DIRAC_PCODE_PICTURE_LOW_DEL = 0xC8,
  62. DIRAC_PCODE_PICTURE_HQ = 0xE8,
  63. DIRAC_PCODE_INTER_NOREF_CO1 = 0x0A,
  64. DIRAC_PCODE_INTER_NOREF_CO2 = 0x09,
  65. DIRAC_PCODE_INTER_REF_CO1 = 0x0D,
  66. DIRAC_PCODE_INTER_REF_CO2 = 0x0E,
  67. DIRAC_PCODE_INTRA_REF_CO = 0x0C,
  68. DIRAC_PCODE_INTRA_REF_RAW = 0x4C,
  69. DIRAC_PCODE_INTRA_REF_PICT = 0xCC,
  70. DIRAC_PCODE_MAGIC = 0x42424344,
  71. };
  72. typedef struct DiracVersionInfo {
  73. int major;
  74. int minor;
  75. } DiracVersionInfo;
  76. typedef struct AVDiracSeqHeader {
  77. unsigned width;
  78. unsigned height;
  79. uint8_t chroma_format; ///< 0: 444 1: 422 2: 420
  80. uint8_t interlaced;
  81. uint8_t top_field_first;
  82. uint8_t frame_rate_index; ///< index into dirac_frame_rate[]
  83. uint8_t aspect_ratio_index; ///< index into dirac_aspect_ratio[]
  84. uint16_t clean_width;
  85. uint16_t clean_height;
  86. uint16_t clean_left_offset;
  87. uint16_t clean_right_offset;
  88. uint8_t pixel_range_index; ///< index into dirac_pixel_range_presets[]
  89. uint8_t color_spec_index; ///< index into dirac_color_spec_presets[]
  90. int profile;
  91. int level;
  92. AVRational framerate;
  93. AVRational sample_aspect_ratio;
  94. enum AVPixelFormat pix_fmt;
  95. enum AVColorRange color_range;
  96. enum AVColorPrimaries color_primaries;
  97. enum AVColorTransferCharacteristic color_trc;
  98. enum AVColorSpace colorspace;
  99. DiracVersionInfo version;
  100. int bit_depth;
  101. } AVDiracSeqHeader;
  102. /**
  103. * Parse a Dirac sequence header.
  104. *
  105. * @param dsh this function will allocate and fill an AVDiracSeqHeader struct
  106. * and write it into this pointer. The caller must free it with
  107. * av_free().
  108. * @param buf the data buffer
  109. * @param buf_size the size of the data buffer in bytes
  110. * @param log_ctx if non-NULL, this function will log errors here
  111. * @return 0 on success, a negative AVERROR code on failure
  112. */
  113. int av_dirac_parse_sequence_header(AVDiracSeqHeader **dsh,
  114. const uint8_t *buf, size_t buf_size,
  115. void *log_ctx);
  116. #endif /* AVCODEC_DIRAC_H */