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.

320 lines
12KB

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