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.

479 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,
  109. "unknown header 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X\n",
  110. buf[0], buf[1], buf[2], buf[3], buf[4]);
  111. return AVERROR_INVALIDDATA;
  112. }
  113. if (buf[5] & 2) { /* interlaced */
  114. ctx->cur_field = buf[5] & 1;
  115. frame->interlaced_frame = 1;
  116. frame->top_field_first = first_field ^ ctx->cur_field;
  117. av_log(ctx->avctx, AV_LOG_DEBUG,
  118. "interlaced %d, cur field %d\n", buf[5] & 3, ctx->cur_field);
  119. }
  120. ctx->height = AV_RB16(buf + 0x18);
  121. ctx->width = AV_RB16(buf + 0x1a);
  122. ff_dlog(ctx->avctx, "width %d, height %d\n", ctx->width, ctx->height);
  123. if (buf[0x21] == 0x58) { /* 10 bit */
  124. ctx->bit_depth = ctx->avctx->bits_per_raw_sample = 10;
  125. if (buf[0x4] == 0x2) {
  126. ctx->decode_dct_block = dnxhd_decode_dct_block_10_444;
  127. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV444P10;
  128. ctx->is_444 = 1;
  129. } else {
  130. ctx->decode_dct_block = dnxhd_decode_dct_block_10;
  131. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  132. }
  133. } else if (buf[0x21] == 0x38) { /* 8 bit */
  134. ctx->bit_depth = ctx->avctx->bits_per_raw_sample = 8;
  135. ctx->avctx->pix_fmt = AV_PIX_FMT_YUV422P;
  136. ctx->decode_dct_block = dnxhd_decode_dct_block_8;
  137. } else {
  138. av_log(ctx->avctx, AV_LOG_ERROR, "invalid bit depth value (%d).\n",
  139. buf[0x21]);
  140. return AVERROR_INVALIDDATA;
  141. }
  142. if (ctx->bit_depth != old_bit_depth) {
  143. ff_blockdsp_init(&ctx->bdsp, ctx->avctx);
  144. ff_idctdsp_init(&ctx->idsp, ctx->avctx);
  145. }
  146. cid = AV_RB32(buf + 0x28);
  147. ff_dlog(ctx->avctx, "compression id %d\n", cid);
  148. if ((ret = dnxhd_init_vlc(ctx, cid)) < 0)
  149. return ret;
  150. // make sure profile size constraints are respected
  151. // DNx100 allows 1920->1440 and 1280->960 subsampling
  152. if (ctx->width != ctx->cid_table->width) {
  153. av_reduce(&ctx->avctx->sample_aspect_ratio.num,
  154. &ctx->avctx->sample_aspect_ratio.den,
  155. ctx->width, ctx->cid_table->width, 255);
  156. ctx->width = ctx->cid_table->width;
  157. }
  158. if (buf_size < ctx->cid_table->coding_unit_size) {
  159. av_log(ctx->avctx, AV_LOG_ERROR, "incorrect frame size (%d < %d).\n",
  160. buf_size, ctx->cid_table->coding_unit_size);
  161. return AVERROR_INVALIDDATA;
  162. }
  163. ctx->mb_width = ctx->width >> 4;
  164. ctx->mb_height = buf[0x16d];
  165. ff_dlog(ctx->avctx,
  166. "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height);
  167. if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
  168. ctx->height <<= 1;
  169. if (ctx->mb_height > 68 ||
  170. (ctx->mb_height << frame->interlaced_frame) > (ctx->height + 15) >> 4) {
  171. av_log(ctx->avctx, AV_LOG_ERROR,
  172. "mb height too big: %d\n", ctx->mb_height);
  173. return AVERROR_INVALIDDATA;
  174. }
  175. for (i = 0; i < ctx->mb_height; i++) {
  176. ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i << 2));
  177. ff_dlog(ctx->avctx, "mb scan index %d\n", ctx->mb_scan_index[i]);
  178. if (buf_size < ctx->mb_scan_index[i] + 0x280) {
  179. av_log(ctx->avctx, AV_LOG_ERROR,
  180. "invalid mb scan index (%d < %d).\n",
  181. buf_size, ctx->mb_scan_index[i] + 0x280);
  182. return AVERROR_INVALIDDATA;
  183. }
  184. }
  185. return 0;
  186. }
  187. static av_always_inline void dnxhd_decode_dct_block(DNXHDContext *ctx,
  188. int16_t *block, int n,
  189. int qscale,
  190. int index_bits,
  191. int level_bias,
  192. int level_shift)
  193. {
  194. int i, j, index1, index2, len;
  195. int level, component, sign;
  196. const uint8_t *weight_matrix;
  197. OPEN_READER(bs, &ctx->gb);
  198. if (!ctx->is_444) {
  199. if (n & 2) {
  200. component = 1 + (n & 1);
  201. weight_matrix = ctx->cid_table->chroma_weight;
  202. } else {
  203. component = 0;
  204. weight_matrix = ctx->cid_table->luma_weight;
  205. }
  206. } else {
  207. component = (n >> 1) % 3;
  208. if (component) {
  209. weight_matrix = ctx->cid_table->chroma_weight;
  210. } else {
  211. weight_matrix = ctx->cid_table->luma_weight;
  212. }
  213. }
  214. UPDATE_CACHE(bs, &ctx->gb);
  215. GET_VLC(len, bs, &ctx->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1);
  216. if (len) {
  217. level = GET_CACHE(bs, &ctx->gb);
  218. LAST_SKIP_BITS(bs, &ctx->gb, len);
  219. sign = ~level >> 31;
  220. level = (NEG_USR32(sign ^ level, len) ^ sign) - sign;
  221. ctx->last_dc[component] += level;
  222. }
  223. block[0] = ctx->last_dc[component];
  224. for (i = 1; ; i++) {
  225. UPDATE_CACHE(bs, &ctx->gb);
  226. GET_VLC(index1, bs, &ctx->gb, ctx->ac_vlc.table,
  227. DNXHD_VLC_BITS, 2);
  228. level = ctx->cid_table->ac_level[index1];
  229. if (!level) /* EOB */
  230. break;
  231. sign = SHOW_SBITS(bs, &ctx->gb, 1);
  232. SKIP_BITS(bs, &ctx->gb, 1);
  233. if (ctx->cid_table->ac_index_flag[index1]) {
  234. level += SHOW_UBITS(bs, &ctx->gb, index_bits) << 6;
  235. SKIP_BITS(bs, &ctx->gb, index_bits);
  236. }
  237. if (ctx->cid_table->ac_run_flag[index1]) {
  238. UPDATE_CACHE(bs, &ctx->gb);
  239. GET_VLC(index2, bs, &ctx->gb, ctx->run_vlc.table,
  240. DNXHD_VLC_BITS, 2);
  241. i += ctx->cid_table->run[index2];
  242. }
  243. if (i > 63) {
  244. av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i);
  245. break;
  246. }
  247. j = ctx->scantable.permutated[i];
  248. level = (2 * level + 1) * qscale * weight_matrix[i];
  249. if (level_bias < 32 || weight_matrix[i] != level_bias)
  250. level += level_bias;
  251. level >>= level_shift;
  252. block[j] = (level ^ sign) - sign;
  253. }
  254. CLOSE_READER(bs, &ctx->gb);
  255. }
  256. static void dnxhd_decode_dct_block_8(DNXHDContext *ctx, int16_t *block,
  257. int n, int qscale)
  258. {
  259. dnxhd_decode_dct_block(ctx, block, n, qscale, 4, 32, 6);
  260. }
  261. static void dnxhd_decode_dct_block_10(DNXHDContext *ctx, int16_t *block,
  262. int n, int qscale)
  263. {
  264. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 8, 4);
  265. }
  266. static void dnxhd_decode_dct_block_10_444(DNXHDContext *ctx, int16_t *block,
  267. int n, int qscale)
  268. {
  269. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 32, 6);
  270. }
  271. static int dnxhd_decode_macroblock(DNXHDContext *ctx, AVFrame *frame,
  272. int x, int y)
  273. {
  274. int shift1 = ctx->bit_depth == 10;
  275. int dct_linesize_luma = frame->linesize[0];
  276. int dct_linesize_chroma = frame->linesize[1];
  277. uint8_t *dest_y, *dest_u, *dest_v;
  278. int dct_y_offset, dct_x_offset;
  279. int qscale, i;
  280. qscale = get_bits(&ctx->gb, 11);
  281. skip_bits1(&ctx->gb);
  282. for (i = 0; i < 8; i++) {
  283. ctx->bdsp.clear_block(ctx->blocks[i]);
  284. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  285. }
  286. if (ctx->is_444) {
  287. for (; i < 12; i++) {
  288. ctx->bdsp.clear_block(ctx->blocks[i]);
  289. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  290. }
  291. }
  292. if (frame->interlaced_frame) {
  293. dct_linesize_luma <<= 1;
  294. dct_linesize_chroma <<= 1;
  295. }
  296. dest_y = frame->data[0] + ((y * dct_linesize_luma) << 4) + (x << (4 + shift1));
  297. dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  298. dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  299. if (ctx->cur_field) {
  300. dest_y += frame->linesize[0];
  301. dest_u += frame->linesize[1];
  302. dest_v += frame->linesize[2];
  303. }
  304. dct_y_offset = dct_linesize_luma << 3;
  305. dct_x_offset = 8 << shift1;
  306. if (!ctx->is_444) {
  307. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  308. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  309. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[4]);
  310. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[5]);
  311. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  312. dct_y_offset = dct_linesize_chroma << 3;
  313. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  314. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[3]);
  315. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[6]);
  316. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[7]);
  317. }
  318. } else {
  319. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  320. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  321. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[6]);
  322. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[7]);
  323. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  324. dct_y_offset = dct_linesize_chroma << 3;
  325. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  326. ctx->idsp.idct_put(dest_u + dct_x_offset, dct_linesize_chroma, ctx->blocks[3]);
  327. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[8]);
  328. ctx->idsp.idct_put(dest_u + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[9]);
  329. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[4]);
  330. ctx->idsp.idct_put(dest_v + dct_x_offset, dct_linesize_chroma, ctx->blocks[5]);
  331. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[10]);
  332. ctx->idsp.idct_put(dest_v + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[11]);
  333. }
  334. }
  335. return 0;
  336. }
  337. static int dnxhd_decode_macroblocks(DNXHDContext *ctx, AVFrame *frame,
  338. const uint8_t *buf, int buf_size)
  339. {
  340. int x, y;
  341. for (y = 0; y < ctx->mb_height; y++) {
  342. ctx->last_dc[0] =
  343. ctx->last_dc[1] =
  344. ctx->last_dc[2] = 1 << (ctx->bit_depth + 2); // for levels +2^(bitdepth-1)
  345. init_get_bits(&ctx->gb, buf + ctx->mb_scan_index[y], (buf_size - ctx->mb_scan_index[y]) << 3);
  346. for (x = 0; x < ctx->mb_width; x++) {
  347. //START_TIMER;
  348. dnxhd_decode_macroblock(ctx, frame, x, y);
  349. //STOP_TIMER("decode macroblock");
  350. }
  351. }
  352. return 0;
  353. }
  354. static int dnxhd_decode_frame(AVCodecContext *avctx, void *data,
  355. int *got_frame, AVPacket *avpkt)
  356. {
  357. const uint8_t *buf = avpkt->data;
  358. int buf_size = avpkt->size;
  359. DNXHDContext *ctx = avctx->priv_data;
  360. AVFrame *picture = data;
  361. int first_field = 1;
  362. int ret;
  363. ff_dlog(avctx, "frame size %d\n", buf_size);
  364. decode_coding_unit:
  365. if ((ret = dnxhd_decode_header(ctx, picture, buf, buf_size, first_field)) < 0)
  366. return ret;
  367. if ((avctx->width || avctx->height) &&
  368. (ctx->width != avctx->width || ctx->height != avctx->height)) {
  369. av_log(avctx, AV_LOG_WARNING, "frame size changed: %dx%d -> %dx%d\n",
  370. avctx->width, avctx->height, ctx->width, ctx->height);
  371. first_field = 1;
  372. }
  373. ret = ff_set_dimensions(avctx, ctx->width, ctx->height);
  374. if (ret < 0)
  375. return ret;
  376. if (first_field) {
  377. if ((ret = ff_get_buffer(avctx, picture, 0)) < 0) {
  378. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  379. return ret;
  380. }
  381. picture->pict_type = AV_PICTURE_TYPE_I;
  382. picture->key_frame = 1;
  383. }
  384. dnxhd_decode_macroblocks(ctx, picture, buf + 0x280, buf_size - 0x280);
  385. if (first_field && picture->interlaced_frame) {
  386. buf += ctx->cid_table->coding_unit_size;
  387. buf_size -= ctx->cid_table->coding_unit_size;
  388. first_field = 0;
  389. goto decode_coding_unit;
  390. }
  391. *got_frame = 1;
  392. return buf_size;
  393. }
  394. static av_cold int dnxhd_decode_close(AVCodecContext *avctx)
  395. {
  396. DNXHDContext *ctx = avctx->priv_data;
  397. ff_free_vlc(&ctx->ac_vlc);
  398. ff_free_vlc(&ctx->dc_vlc);
  399. ff_free_vlc(&ctx->run_vlc);
  400. return 0;
  401. }
  402. AVCodec ff_dnxhd_decoder = {
  403. .name = "dnxhd",
  404. .long_name = NULL_IF_CONFIG_SMALL("VC3/DNxHD"),
  405. .type = AVMEDIA_TYPE_VIDEO,
  406. .id = AV_CODEC_ID_DNXHD,
  407. .priv_data_size = sizeof(DNXHDContext),
  408. .init = dnxhd_decode_init,
  409. .close = dnxhd_decode_close,
  410. .decode = dnxhd_decode_frame,
  411. .capabilities = CODEC_CAP_DR1,
  412. };