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.

329 lines
12KB

  1. /*
  2. * Copyright (C) 2007 Marco Gerards <marco@gnu.org>
  3. * Copyright (C) 2009 David Conrad
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Dirac Decoder
  24. * @author Marco Gerards <marco@gnu.org>
  25. */
  26. #include "libavutil/imgutils.h"
  27. #include "dirac.h"
  28. #include "avcodec.h"
  29. #include "golomb.h"
  30. #include "mpeg12data.h"
  31. // defaults for source parameters
  32. static const dirac_source_params dirac_source_parameters_defaults[] = {
  33. { 640, 480, 2, 0, 0, 1, 1, 640, 480, 0, 0, 1, 0 },
  34. { 176, 120, 2, 0, 0, 9, 2, 176, 120, 0, 0, 1, 1 },
  35. { 176, 144, 2, 0, 1, 10, 3, 176, 144, 0, 0, 1, 2 },
  36. { 352, 240, 2, 0, 0, 9, 2, 352, 240, 0, 0, 1, 1 },
  37. { 352, 288, 2, 0, 1, 10, 3, 352, 288, 0, 0, 1, 2 },
  38. { 704, 480, 2, 0, 0, 9, 2, 704, 480, 0, 0, 1, 1 },
  39. { 704, 576, 2, 0, 1, 10, 3, 704, 576, 0, 0, 1, 2 },
  40. { 720, 480, 1, 1, 0, 4, 2, 704, 480, 8, 0, 3, 1 },
  41. { 720, 576, 1, 1, 1, 3, 3, 704, 576, 8, 0, 3, 2 },
  42. { 1280, 720, 1, 0, 1, 7, 1, 1280, 720, 0, 0, 3, 3 },
  43. { 1280, 720, 1, 0, 1, 6, 1, 1280, 720, 0, 0, 3, 3 },
  44. { 1920, 1080, 1, 1, 1, 4, 1, 1920, 1080, 0, 0, 3, 3 },
  45. { 1920, 1080, 1, 1, 1, 3, 1, 1920, 1080, 0, 0, 3, 3 },
  46. { 1920, 1080, 1, 0, 1, 7, 1, 1920, 1080, 0, 0, 3, 3 },
  47. { 1920, 1080, 1, 0, 1, 6, 1, 1920, 1080, 0, 0, 3, 3 },
  48. { 2048, 1080, 0, 0, 1, 2, 1, 2048, 1080, 0, 0, 4, 4 },
  49. { 4096, 2160, 0, 0, 1, 2, 1, 4096, 2160, 0, 0, 4, 4 },
  50. { 3840, 2160, 1, 0, 1, 7, 1, 3840, 2160, 0, 0, 3, 3 },
  51. { 3840, 2160, 1, 0, 1, 6, 1, 3840, 2160, 0, 0, 3, 3 },
  52. { 7680, 4320, 1, 0, 1, 7, 1, 3840, 2160, 0, 0, 3, 3 },
  53. { 7680, 4320, 1, 0, 1, 6, 1, 3840, 2160, 0, 0, 3, 3 },
  54. };
  55. /* [DIRAC_STD] Table 10.4 - Available preset pixel aspect ratio values */
  56. static const AVRational dirac_preset_aspect_ratios[] = {
  57. {1, 1},
  58. {10, 11},
  59. {12, 11},
  60. {40, 33},
  61. {16, 11},
  62. {4, 3},
  63. };
  64. /* [DIRAC_STD] Values 9,10 of 10.3.5 Frame Rate.
  65. * Table 10.3 Available preset frame rate values
  66. */
  67. static const AVRational dirac_frame_rate[] = {
  68. {15000, 1001},
  69. {25, 2},
  70. };
  71. /* [DIRAC_STD] This should be equivalent to Table 10.5 Available signal
  72. * range presets */
  73. static const struct {
  74. uint8_t bitdepth;
  75. enum AVColorRange color_range;
  76. } pixel_range_presets[] = {
  77. {8, AVCOL_RANGE_JPEG},
  78. {8, AVCOL_RANGE_MPEG},
  79. {10, AVCOL_RANGE_MPEG},
  80. {12, AVCOL_RANGE_MPEG},
  81. };
  82. static const enum AVColorPrimaries dirac_primaries[] = {
  83. AVCOL_PRI_BT709,
  84. AVCOL_PRI_SMPTE170M,
  85. AVCOL_PRI_BT470BG,
  86. };
  87. static const struct {
  88. enum AVColorPrimaries color_primaries;
  89. enum AVColorSpace colorspace;
  90. enum AVColorTransferCharacteristic color_trc;
  91. } dirac_color_presets[] = {
  92. { AVCOL_PRI_BT709, AVCOL_SPC_BT709, AVCOL_TRC_BT709 },
  93. { AVCOL_PRI_SMPTE170M, AVCOL_SPC_BT470BG, AVCOL_TRC_BT709 },
  94. { AVCOL_PRI_BT470BG, AVCOL_SPC_BT470BG, AVCOL_TRC_BT709 },
  95. { AVCOL_PRI_BT709, AVCOL_SPC_BT709, AVCOL_TRC_BT709 },
  96. { AVCOL_PRI_BT709, AVCOL_SPC_BT709, AVCOL_TRC_UNSPECIFIED /* DCinema */ },
  97. };
  98. /* [DIRAC_STD] Table 10.2 Supported chroma sampling formats + luma Offset */
  99. static const enum AVPixelFormat dirac_pix_fmt[2][3] = {
  100. { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P },
  101. { AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P },
  102. };
  103. /* [DIRAC_STD] 10.3 Parse Source Parameters.
  104. * source_parameters(base_video_format) */
  105. static int parse_source_parameters(AVCodecContext *avctx, GetBitContext *gb,
  106. dirac_source_params *source)
  107. {
  108. AVRational frame_rate = {0,0};
  109. unsigned luma_depth = 8, luma_offset = 16;
  110. int idx;
  111. /* [DIRAC_STD] 10.3.2 Frame size. frame_size(video_params) */
  112. /* [DIRAC_STD] custom_dimensions_flag */
  113. if (get_bits1(gb)) {
  114. source->width = svq3_get_ue_golomb(gb); /* [DIRAC_STD] FRAME_WIDTH */
  115. source->height = svq3_get_ue_golomb(gb); /* [DIRAC_STD] FRAME_HEIGHT */
  116. }
  117. /* [DIRAC_STD] 10.3.3 Chroma Sampling Format.
  118. * chroma_sampling_format(video_params) */
  119. /* [DIRAC_STD] custom_chroma_format_flag */
  120. if (get_bits1(gb))
  121. /* [DIRAC_STD] CHROMA_FORMAT_INDEX */
  122. source->chroma_format = svq3_get_ue_golomb(gb);
  123. if (source->chroma_format > 2) {
  124. av_log(avctx, AV_LOG_ERROR, "Unknown chroma format %d\n",
  125. source->chroma_format);
  126. return AVERROR_INVALIDDATA;
  127. }
  128. /* [DIRAC_STD] 10.3.4 Scan Format. scan_format(video_params) */
  129. /* [DIRAC_STD] custom_scan_format_flag */
  130. if (get_bits1(gb))
  131. /* [DIRAC_STD] SOURCE_SAMPLING */
  132. source->interlaced = svq3_get_ue_golomb(gb);
  133. if (source->interlaced > 1)
  134. return AVERROR_INVALIDDATA;
  135. /* [DIRAC_STD] 10.3.5 Frame Rate. frame_rate(video_params) */
  136. if (get_bits1(gb)) { /* [DIRAC_STD] custom_frame_rate_flag */
  137. source->frame_rate_index = svq3_get_ue_golomb(gb);
  138. if (source->frame_rate_index > 10)
  139. return AVERROR_INVALIDDATA;
  140. if (!source->frame_rate_index) {
  141. /* [DIRAC_STD] FRAME_RATE_NUMER */
  142. frame_rate.num = svq3_get_ue_golomb(gb);
  143. /* [DIRAC_STD] FRAME_RATE_DENOM */
  144. frame_rate.den = svq3_get_ue_golomb(gb);
  145. }
  146. }
  147. /* [DIRAC_STD] preset_frame_rate(video_params, index) */
  148. if (source->frame_rate_index > 0) {
  149. if (source->frame_rate_index <= 8)
  150. frame_rate = ff_mpeg12_frame_rate_tab[source->frame_rate_index];
  151. else
  152. /* [DIRAC_STD] Table 10.3 values 9-10 */
  153. frame_rate = dirac_frame_rate[source->frame_rate_index-9];
  154. }
  155. av_reduce(&avctx->time_base.num, &avctx->time_base.den,
  156. frame_rate.den, frame_rate.num, 1<<30);
  157. /* [DIRAC_STD] 10.3.6 Pixel Aspect Ratio.
  158. * pixel_aspect_ratio(video_params) */
  159. if (get_bits1(gb)) { /* [DIRAC_STD] custom_pixel_aspect_ratio_flag */
  160. /* [DIRAC_STD] index */
  161. source->aspect_ratio_index = svq3_get_ue_golomb(gb);
  162. if (source->aspect_ratio_index > 6)
  163. return AVERROR_INVALIDDATA;
  164. if (!source->aspect_ratio_index) {
  165. avctx->sample_aspect_ratio.num = svq3_get_ue_golomb(gb);
  166. avctx->sample_aspect_ratio.den = svq3_get_ue_golomb(gb);
  167. }
  168. }
  169. /* [DIRAC_STD] Take value from Table 10.4 Available preset pixel
  170. * aspect ratio values */
  171. if (source->aspect_ratio_index > 0)
  172. avctx->sample_aspect_ratio =
  173. dirac_preset_aspect_ratios[source->aspect_ratio_index-1];
  174. /* [DIRAC_STD] 10.3.7 Clean area. clean_area(video_params) */
  175. if (get_bits1(gb)) { /* [DIRAC_STD] custom_clean_area_flag */
  176. /* [DIRAC_STD] CLEAN_WIDTH */
  177. source->clean_width = svq3_get_ue_golomb(gb);
  178. /* [DIRAC_STD] CLEAN_HEIGHT */
  179. source->clean_height = svq3_get_ue_golomb(gb);
  180. /* [DIRAC_STD] CLEAN_LEFT_OFFSET */
  181. source->clean_left_offset = svq3_get_ue_golomb(gb);
  182. /* [DIRAC_STD] CLEAN_RIGHT_OFFSET */
  183. source->clean_right_offset = svq3_get_ue_golomb(gb);
  184. }
  185. /* [DIRAC_STD] 10.3.8 Signal range. signal_range(video_params)
  186. * WARNING: Some adaptation seems to be done using the
  187. * AVCOL_RANGE_MPEG/JPEG values */
  188. if (get_bits1(gb)) { /* [DIRAC_STD] custom_signal_range_flag */
  189. /* [DIRAC_STD] index */
  190. source->pixel_range_index = svq3_get_ue_golomb(gb);
  191. if (source->pixel_range_index > 4)
  192. return AVERROR_INVALIDDATA;
  193. // This assumes either fullrange or MPEG levels only
  194. if (!source->pixel_range_index) {
  195. luma_offset = svq3_get_ue_golomb(gb);
  196. luma_depth = av_log2(svq3_get_ue_golomb(gb))+1;
  197. svq3_get_ue_golomb(gb); /* chroma offset */
  198. svq3_get_ue_golomb(gb); /* chroma excursion */
  199. avctx->color_range = luma_offset ? AVCOL_RANGE_MPEG : AVCOL_RANGE_JPEG;
  200. }
  201. }
  202. /* [DIRAC_STD] Table 10.5
  203. * Available signal range presets <--> pixel_range_presets */
  204. if (source->pixel_range_index > 0) {
  205. idx = source->pixel_range_index-1;
  206. luma_depth = pixel_range_presets[idx].bitdepth;
  207. avctx->color_range = pixel_range_presets[idx].color_range;
  208. }
  209. if (luma_depth > 8)
  210. av_log(avctx, AV_LOG_WARNING, "Bitdepth greater than 8");
  211. avctx->pix_fmt = dirac_pix_fmt[!luma_offset][source->chroma_format];
  212. /* [DIRAC_STD] 10.3.9 Colour specification. colour_spec(video_params) */
  213. if (get_bits1(gb)) { /* [DIRAC_STD] custom_colour_spec_flag */
  214. /* [DIRAC_STD] index */
  215. idx = source->color_spec_index = svq3_get_ue_golomb(gb);
  216. if (source->color_spec_index > 4)
  217. return AVERROR_INVALIDDATA;
  218. avctx->color_primaries = dirac_color_presets[idx].color_primaries;
  219. avctx->colorspace = dirac_color_presets[idx].colorspace;
  220. avctx->color_trc = dirac_color_presets[idx].color_trc;
  221. if (!source->color_spec_index) {
  222. /* [DIRAC_STD] 10.3.9.1 Colour primaries */
  223. if (get_bits1(gb)) {
  224. idx = svq3_get_ue_golomb(gb);
  225. if (idx < 3)
  226. avctx->color_primaries = dirac_primaries[idx];
  227. }
  228. /* [DIRAC_STD] 10.3.9.2 Colour matrix */
  229. if (get_bits1(gb)) {
  230. idx = svq3_get_ue_golomb(gb);
  231. if (!idx)
  232. avctx->colorspace = AVCOL_SPC_BT709;
  233. else if (idx == 1)
  234. avctx->colorspace = AVCOL_SPC_BT470BG;
  235. }
  236. /* [DIRAC_STD] 10.3.9.3 Transfer function */
  237. if (get_bits1(gb) && !svq3_get_ue_golomb(gb))
  238. avctx->color_trc = AVCOL_TRC_BT709;
  239. }
  240. } else {
  241. idx = source->color_spec_index;
  242. avctx->color_primaries = dirac_color_presets[idx].color_primaries;
  243. avctx->colorspace = dirac_color_presets[idx].colorspace;
  244. avctx->color_trc = dirac_color_presets[idx].color_trc;
  245. }
  246. return 0;
  247. }
  248. /* [DIRAC_STD] 10. Sequence Header. sequence_header() */
  249. int avpriv_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb,
  250. dirac_source_params *source)
  251. {
  252. unsigned version_major;
  253. unsigned video_format, picture_coding_mode;
  254. int ret;
  255. /* [DIRAC_SPEC] 10.1 Parse Parameters. parse_parameters() */
  256. version_major = svq3_get_ue_golomb(gb);
  257. svq3_get_ue_golomb(gb); /* version_minor */
  258. avctx->profile = svq3_get_ue_golomb(gb);
  259. avctx->level = svq3_get_ue_golomb(gb);
  260. /* [DIRAC_SPEC] sequence_header() -> base_video_format as defined in
  261. * 10.2 Base Video Format, table 10.1 Dirac predefined video formats */
  262. video_format = svq3_get_ue_golomb(gb);
  263. if (version_major < 2)
  264. av_log(avctx, AV_LOG_WARNING, "Stream is old and may not work\n");
  265. else if (version_major > 2)
  266. av_log(avctx, AV_LOG_WARNING, "Stream may have unhandled features\n");
  267. if (video_format > 20)
  268. return AVERROR_INVALIDDATA;
  269. // Fill in defaults for the source parameters.
  270. *source = dirac_source_parameters_defaults[video_format];
  271. /* [DIRAC_STD] 10.3 Source Parameters
  272. * Override the defaults. */
  273. if (ret = parse_source_parameters(avctx, gb, source))
  274. return ret;
  275. if (ret = av_image_check_size(source->width, source->height, 0, avctx))
  276. return ret;
  277. avcodec_set_dimensions(avctx, source->width, source->height);
  278. /* [DIRAC_STD] picture_coding_mode shall be 0 for fields and 1 for frames
  279. * currently only used to signal field coding */
  280. picture_coding_mode = svq3_get_ue_golomb(gb);
  281. if (picture_coding_mode != 0) {
  282. av_log(avctx, AV_LOG_ERROR, "Unsupported picture coding mode %d",
  283. picture_coding_mode);
  284. return AVERROR_INVALIDDATA;
  285. }
  286. return 0;
  287. }