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.

477 lines
17KB

  1. /*
  2. * VC3/DNxHD decoder.
  3. * Copyright (c) 2007 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
  4. * Copyright (c) 2011 MirriAd Ltd
  5. *
  6. * 10 bit support added by MirriAd Ltd, Joseph Artsimovich <joseph@mirriad.com>
  7. *
  8. * This file is part of Libav.
  9. *
  10. * Libav is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * Libav is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with Libav; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #include "libavutil/imgutils.h"
  25. #include "libavutil/timer.h"
  26. #include "avcodec.h"
  27. #include "blockdsp.h"
  28. #include "get_bits.h"
  29. #include "dnxhddata.h"
  30. #include "idctdsp.h"
  31. #include "internal.h"
  32. typedef struct DNXHDContext {
  33. AVCodecContext *avctx;
  34. GetBitContext gb;
  35. BlockDSPContext bdsp;
  36. int cid; ///< compression id
  37. unsigned int width, height;
  38. unsigned int mb_width, mb_height;
  39. uint32_t mb_scan_index[68]; /* max for 1080p */
  40. int cur_field; ///< current interlaced field
  41. VLC ac_vlc, dc_vlc, run_vlc;
  42. int last_dc[3];
  43. IDCTDSPContext idsp;
  44. DECLARE_ALIGNED(16, int16_t, blocks)[12][64];
  45. ScanTable scantable;
  46. const CIDEntry *cid_table;
  47. int bit_depth; // 8, 10 or 0 if not initialized at all.
  48. int is_444;
  49. void (*decode_dct_block)(struct DNXHDContext *ctx, int16_t *block,
  50. int n, int qscale);
  51. } DNXHDContext;
  52. #define DNXHD_VLC_BITS 9
  53. #define DNXHD_DC_VLC_BITS 7
  54. static void dnxhd_decode_dct_block_8(DNXHDContext *ctx, int16_t *block,
  55. int n, int qscale);
  56. static void dnxhd_decode_dct_block_10(DNXHDContext *ctx, int16_t *block,
  57. int n, int qscale);
  58. static void dnxhd_decode_dct_block_10_444(DNXHDContext *ctx, int16_t *block,
  59. int n, int qscale);
  60. static av_cold int dnxhd_decode_init(AVCodecContext *avctx)
  61. {
  62. DNXHDContext *ctx = avctx->priv_data;
  63. ctx->avctx = avctx;
  64. return 0;
  65. }
  66. static int dnxhd_init_vlc(DNXHDContext *ctx, int cid)
  67. {
  68. if (cid != ctx->cid) {
  69. int index;
  70. if ((index = ff_dnxhd_get_cid_table(cid)) < 0) {
  71. av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %d\n", cid);
  72. return AVERROR(ENOSYS);
  73. }
  74. ctx->cid_table = &ff_dnxhd_cid_table[index];
  75. av_log(ctx->avctx, AV_LOG_VERBOSE, "Profile cid %d.\n", cid);
  76. ff_free_vlc(&ctx->ac_vlc);
  77. ff_free_vlc(&ctx->dc_vlc);
  78. ff_free_vlc(&ctx->run_vlc);
  79. init_vlc(&ctx->ac_vlc, DNXHD_VLC_BITS, 257,
  80. ctx->cid_table->ac_bits, 1, 1,
  81. ctx->cid_table->ac_codes, 2, 2, 0);
  82. init_vlc(&ctx->dc_vlc, DNXHD_DC_VLC_BITS, ctx->bit_depth + 4,
  83. ctx->cid_table->dc_bits, 1, 1,
  84. ctx->cid_table->dc_codes, 1, 1, 0);
  85. init_vlc(&ctx->run_vlc, DNXHD_VLC_BITS, 62,
  86. ctx->cid_table->run_bits, 1, 1,
  87. ctx->cid_table->run_codes, 2, 2, 0);
  88. ff_init_scantable(ctx->idsp.idct_permutation, &ctx->scantable,
  89. ff_zigzag_direct);
  90. ctx->cid = cid;
  91. }
  92. return 0;
  93. }
  94. static int dnxhd_decode_header(DNXHDContext *ctx, AVFrame *frame,
  95. const uint8_t *buf, int buf_size,
  96. int first_field)
  97. {
  98. static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 };
  99. static const uint8_t header_prefix444[] = { 0x00, 0x00, 0x02, 0x80, 0x02 };
  100. int i, cid, ret;
  101. int old_bit_depth = ctx->bit_depth;
  102. if (buf_size < 0x280) {
  103. av_log(ctx->avctx, AV_LOG_ERROR, "buffer too small (%d < 640).\n",
  104. buf_size);
  105. return AVERROR_INVALIDDATA;
  106. }
  107. if (memcmp(buf, header_prefix, 5) && memcmp(buf, header_prefix444, 5)) {
  108. av_log(ctx->avctx, AV_LOG_ERROR, "error in header\n");
  109. return AVERROR_INVALIDDATA;
  110. }
  111. if (buf[5] & 2) { /* interlaced */
  112. ctx->cur_field = buf[5] & 1;
  113. frame->interlaced_frame = 1;
  114. frame->top_field_first = first_field ^ ctx->cur_field;
  115. av_log(ctx->avctx, AV_LOG_DEBUG,
  116. "interlaced %d, cur field %d\n", buf[5] & 3, ctx->cur_field);
  117. }
  118. ctx->height = AV_RB16(buf + 0x18);
  119. ctx->width = AV_RB16(buf + 0x1a);
  120. ff_dlog(ctx->avctx, "width %d, height %d\n", ctx->width, ctx->height);
  121. if (buf[0x21] == 0x58) { /* 10 bit */
  122. ctx->bit_depth = ctx->avctx->bits_per_raw_sample = 10;
  123. if (buf[0x4] == 0x2) {
  124. ctx->decode_dct_block = dnxhd_decode_dct_block_10_444;
  125. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV444P10;
  126. ctx->is_444 = 1;
  127. } else {
  128. ctx->decode_dct_block = dnxhd_decode_dct_block_10;
  129. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  130. }
  131. } else if (buf[0x21] == 0x38) { /* 8 bit */
  132. ctx->bit_depth = ctx->avctx->bits_per_raw_sample = 8;
  133. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV422P;
  134. ctx->decode_dct_block = dnxhd_decode_dct_block_8;
  135. } else {
  136. av_log(ctx->avctx, AV_LOG_ERROR, "invalid bit depth value (%d).\n",
  137. buf[0x21]);
  138. return AVERROR_INVALIDDATA;
  139. }
  140. if (ctx->bit_depth != old_bit_depth) {
  141. ff_blockdsp_init(&ctx->bdsp, ctx->avctx);
  142. ff_idctdsp_init(&ctx->idsp, ctx->avctx);
  143. }
  144. cid = AV_RB32(buf + 0x28);
  145. ff_dlog(ctx->avctx, "compression id %d\n", cid);
  146. if ((ret = dnxhd_init_vlc(ctx, cid)) < 0)
  147. return ret;
  148. // make sure profile size constraints are respected
  149. // DNx100 allows 1920->1440 and 1280->960 subsampling
  150. if (ctx->width != ctx->cid_table->width) {
  151. av_reduce(&ctx->avctx->sample_aspect_ratio.num,
  152. &ctx->avctx->sample_aspect_ratio.den,
  153. ctx->width, ctx->cid_table->width, 255);
  154. ctx->width = ctx->cid_table->width;
  155. }
  156. if (buf_size < ctx->cid_table->coding_unit_size) {
  157. av_log(ctx->avctx, AV_LOG_ERROR, "incorrect frame size (%d < %d).\n",
  158. buf_size, ctx->cid_table->coding_unit_size);
  159. return AVERROR_INVALIDDATA;
  160. }
  161. ctx->mb_width = ctx->width >> 4;
  162. ctx->mb_height = buf[0x16d];
  163. ff_dlog(ctx->avctx,
  164. "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height);
  165. if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
  166. ctx->height <<= 1;
  167. if (ctx->mb_height > 68 ||
  168. (ctx->mb_height << frame->interlaced_frame) > (ctx->height + 15) >> 4) {
  169. av_log(ctx->avctx, AV_LOG_ERROR,
  170. "mb height too big: %d\n", ctx->mb_height);
  171. return AVERROR_INVALIDDATA;
  172. }
  173. for (i = 0; i < ctx->mb_height; i++) {
  174. ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i << 2));
  175. ff_dlog(ctx->avctx, "mb scan index %d\n", ctx->mb_scan_index[i]);
  176. if (buf_size < ctx->mb_scan_index[i] + 0x280) {
  177. av_log(ctx->avctx, AV_LOG_ERROR,
  178. "invalid mb scan index (%d < %d).\n",
  179. buf_size, ctx->mb_scan_index[i] + 0x280);
  180. return AVERROR_INVALIDDATA;
  181. }
  182. }
  183. return 0;
  184. }
  185. static av_always_inline void dnxhd_decode_dct_block(DNXHDContext *ctx,
  186. int16_t *block, int n,
  187. int qscale,
  188. int index_bits,
  189. int level_bias,
  190. int level_shift)
  191. {
  192. int i, j, index1, index2, len;
  193. int level, component, sign;
  194. const uint8_t *weight_matrix;
  195. OPEN_READER(bs, &ctx->gb);
  196. if (!ctx->is_444) {
  197. if (n & 2) {
  198. component = 1 + (n & 1);
  199. weight_matrix = ctx->cid_table->chroma_weight;
  200. } else {
  201. component = 0;
  202. weight_matrix = ctx->cid_table->luma_weight;
  203. }
  204. } else {
  205. component = (n >> 1) % 3;
  206. if (component) {
  207. weight_matrix = ctx->cid_table->chroma_weight;
  208. } else {
  209. weight_matrix = ctx->cid_table->luma_weight;
  210. }
  211. }
  212. UPDATE_CACHE(bs, &ctx->gb);
  213. GET_VLC(len, bs, &ctx->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1);
  214. if (len) {
  215. level = GET_CACHE(bs, &ctx->gb);
  216. LAST_SKIP_BITS(bs, &ctx->gb, len);
  217. sign = ~level >> 31;
  218. level = (NEG_USR32(sign ^ level, len) ^ sign) - sign;
  219. ctx->last_dc[component] += level;
  220. }
  221. block[0] = ctx->last_dc[component];
  222. for (i = 1; ; i++) {
  223. UPDATE_CACHE(bs, &ctx->gb);
  224. GET_VLC(index1, bs, &ctx->gb, ctx->ac_vlc.table,
  225. DNXHD_VLC_BITS, 2);
  226. level = ctx->cid_table->ac_level[index1];
  227. if (!level) /* EOB */
  228. break;
  229. sign = SHOW_SBITS(bs, &ctx->gb, 1);
  230. SKIP_BITS(bs, &ctx->gb, 1);
  231. if (ctx->cid_table->ac_index_flag[index1]) {
  232. level += SHOW_UBITS(bs, &ctx->gb, index_bits) << 6;
  233. SKIP_BITS(bs, &ctx->gb, index_bits);
  234. }
  235. if (ctx->cid_table->ac_run_flag[index1]) {
  236. UPDATE_CACHE(bs, &ctx->gb);
  237. GET_VLC(index2, bs, &ctx->gb, ctx->run_vlc.table,
  238. DNXHD_VLC_BITS, 2);
  239. i += ctx->cid_table->run[index2];
  240. }
  241. if (i > 63) {
  242. av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i);
  243. break;
  244. }
  245. j = ctx->scantable.permutated[i];
  246. level = (2 * level + 1) * qscale * weight_matrix[i];
  247. if (level_bias < 32 || weight_matrix[i] != level_bias)
  248. level += level_bias;
  249. level >>= level_shift;
  250. block[j] = (level ^ sign) - sign;
  251. }
  252. CLOSE_READER(bs, &ctx->gb);
  253. }
  254. static void dnxhd_decode_dct_block_8(DNXHDContext *ctx, int16_t *block,
  255. int n, int qscale)
  256. {
  257. dnxhd_decode_dct_block(ctx, block, n, qscale, 4, 32, 6);
  258. }
  259. static void dnxhd_decode_dct_block_10(DNXHDContext *ctx, int16_t *block,
  260. int n, int qscale)
  261. {
  262. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 8, 4);
  263. }
  264. static void dnxhd_decode_dct_block_10_444(DNXHDContext *ctx, int16_t *block,
  265. int n, int qscale)
  266. {
  267. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 32, 6);
  268. }
  269. static int dnxhd_decode_macroblock(DNXHDContext *ctx, AVFrame *frame,
  270. int x, int y)
  271. {
  272. int shift1 = ctx->bit_depth == 10;
  273. int dct_linesize_luma = frame->linesize[0];
  274. int dct_linesize_chroma = frame->linesize[1];
  275. uint8_t *dest_y, *dest_u, *dest_v;
  276. int dct_y_offset, dct_x_offset;
  277. int qscale, i;
  278. qscale = get_bits(&ctx->gb, 11);
  279. skip_bits1(&ctx->gb);
  280. for (i = 0; i < 8; i++) {
  281. ctx->bdsp.clear_block(ctx->blocks[i]);
  282. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  283. }
  284. if (ctx->is_444) {
  285. for (; i < 12; i++) {
  286. ctx->bdsp.clear_block(ctx->blocks[i]);
  287. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  288. }
  289. }
  290. if (frame->interlaced_frame) {
  291. dct_linesize_luma <<= 1;
  292. dct_linesize_chroma <<= 1;
  293. }
  294. dest_y = frame->data[0] + ((y * dct_linesize_luma) << 4) + (x << (4 + shift1));
  295. dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  296. dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  297. if (ctx->cur_field) {
  298. dest_y += frame->linesize[0];
  299. dest_u += frame->linesize[1];
  300. dest_v += frame->linesize[2];
  301. }
  302. dct_y_offset = dct_linesize_luma << 3;
  303. dct_x_offset = 8 << shift1;
  304. if (!ctx->is_444) {
  305. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  306. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  307. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[4]);
  308. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[5]);
  309. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  310. dct_y_offset = dct_linesize_chroma << 3;
  311. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  312. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[3]);
  313. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[6]);
  314. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[7]);
  315. }
  316. } else {
  317. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  318. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  319. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[6]);
  320. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[7]);
  321. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  322. dct_y_offset = dct_linesize_chroma << 3;
  323. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  324. ctx->idsp.idct_put(dest_u + dct_x_offset, dct_linesize_chroma, ctx->blocks[3]);
  325. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[8]);
  326. ctx->idsp.idct_put(dest_u + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[9]);
  327. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[4]);
  328. ctx->idsp.idct_put(dest_v + dct_x_offset, dct_linesize_chroma, ctx->blocks[5]);
  329. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[10]);
  330. ctx->idsp.idct_put(dest_v + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[11]);
  331. }
  332. }
  333. return 0;
  334. }
  335. static int dnxhd_decode_macroblocks(DNXHDContext *ctx, AVFrame *frame,
  336. const uint8_t *buf, int buf_size)
  337. {
  338. int x, y;
  339. for (y = 0; y < ctx->mb_height; y++) {
  340. ctx->last_dc[0] =
  341. ctx->last_dc[1] =
  342. ctx->last_dc[2] = 1 << (ctx->bit_depth + 2); // for levels +2^(bitdepth-1)
  343. init_get_bits(&ctx->gb, buf + ctx->mb_scan_index[y], (buf_size - ctx->mb_scan_index[y]) << 3);
  344. for (x = 0; x < ctx->mb_width; x++) {
  345. //START_TIMER;
  346. dnxhd_decode_macroblock(ctx, frame, x, y);
  347. //STOP_TIMER("decode macroblock");
  348. }
  349. }
  350. return 0;
  351. }
  352. static int dnxhd_decode_frame(AVCodecContext *avctx, void *data,
  353. int *got_frame, AVPacket *avpkt)
  354. {
  355. const uint8_t *buf = avpkt->data;
  356. int buf_size = avpkt->size;
  357. DNXHDContext *ctx = avctx->priv_data;
  358. AVFrame *picture = data;
  359. int first_field = 1;
  360. int ret;
  361. ff_dlog(avctx, "frame size %d\n", buf_size);
  362. decode_coding_unit:
  363. if ((ret = dnxhd_decode_header(ctx, picture, buf, buf_size, first_field)) < 0)
  364. return ret;
  365. if ((avctx->width || avctx->height) &&
  366. (ctx->width != avctx->width || ctx->height != avctx->height)) {
  367. av_log(avctx, AV_LOG_WARNING, "frame size changed: %dx%d -> %dx%d\n",
  368. avctx->width, avctx->height, ctx->width, ctx->height);
  369. first_field = 1;
  370. }
  371. ret = ff_set_dimensions(avctx, ctx->width, ctx->height);
  372. if (ret < 0)
  373. return ret;
  374. if (first_field) {
  375. if ((ret = ff_get_buffer(avctx, picture, 0)) < 0) {
  376. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  377. return ret;
  378. }
  379. picture->pict_type = AV_PICTURE_TYPE_I;
  380. picture->key_frame = 1;
  381. }
  382. dnxhd_decode_macroblocks(ctx, picture, buf + 0x280, buf_size - 0x280);
  383. if (first_field && picture->interlaced_frame) {
  384. buf += ctx->cid_table->coding_unit_size;
  385. buf_size -= ctx->cid_table->coding_unit_size;
  386. first_field = 0;
  387. goto decode_coding_unit;
  388. }
  389. *got_frame = 1;
  390. return buf_size;
  391. }
  392. static av_cold int dnxhd_decode_close(AVCodecContext *avctx)
  393. {
  394. DNXHDContext *ctx = avctx->priv_data;
  395. ff_free_vlc(&ctx->ac_vlc);
  396. ff_free_vlc(&ctx->dc_vlc);
  397. ff_free_vlc(&ctx->run_vlc);
  398. return 0;
  399. }
  400. AVCodec ff_dnxhd_decoder = {
  401. .name = "dnxhd",
  402. .long_name = NULL_IF_CONFIG_SMALL("VC3/DNxHD"),
  403. .type = AVMEDIA_TYPE_VIDEO,
  404. .id = AV_CODEC_ID_DNXHD,
  405. .priv_data_size = sizeof(DNXHDContext),
  406. .init = dnxhd_decode_init,
  407. .close = dnxhd_decode_close,
  408. .decode = dnxhd_decode_frame,
  409. .capabilities = CODEC_CAP_DR1,
  410. };