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.

502 lines
18KB

  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 FFmpeg.
  9. *
  10. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. #include "thread.h"
  33. typedef struct DNXHDContext {
  34. AVCodecContext *avctx;
  35. GetBitContext gb;
  36. BlockDSPContext bdsp;
  37. int64_t cid; ///< compression id
  38. unsigned int width, height;
  39. enum AVPixelFormat pix_fmt;
  40. unsigned int mb_width, mb_height;
  41. uint32_t mb_scan_index[68]; /* max for 1080p */
  42. int cur_field; ///< current interlaced field
  43. VLC ac_vlc, dc_vlc, run_vlc;
  44. int last_dc[3];
  45. IDCTDSPContext idsp;
  46. DECLARE_ALIGNED(16, int16_t, blocks)[12][64];
  47. ScanTable scantable;
  48. const CIDEntry *cid_table;
  49. int bit_depth; // 8, 10 or 0 if not initialized at all.
  50. int is_444;
  51. void (*decode_dct_block)(struct DNXHDContext *ctx, int16_t *block,
  52. int n, int qscale);
  53. int last_qscale;
  54. int luma_scale[64];
  55. int chroma_scale[64];
  56. } DNXHDContext;
  57. #define DNXHD_VLC_BITS 9
  58. #define DNXHD_DC_VLC_BITS 7
  59. static void dnxhd_decode_dct_block_8(DNXHDContext *ctx, int16_t *block,
  60. int n, int qscale);
  61. static void dnxhd_decode_dct_block_10(DNXHDContext *ctx, int16_t *block,
  62. int n, int qscale);
  63. static void dnxhd_decode_dct_block_10_444(DNXHDContext *ctx, int16_t *block,
  64. int n, int qscale);
  65. static av_cold int dnxhd_decode_init(AVCodecContext *avctx)
  66. {
  67. DNXHDContext *ctx = avctx->priv_data;
  68. ctx->avctx = avctx;
  69. ctx->cid = -1;
  70. return 0;
  71. }
  72. static int dnxhd_init_vlc(DNXHDContext *ctx, uint32_t cid)
  73. {
  74. if (cid != ctx->cid) {
  75. int index;
  76. if ((index = ff_dnxhd_get_cid_table(cid)) < 0) {
  77. av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %d\n", cid);
  78. return AVERROR(ENOSYS);
  79. }
  80. if (ff_dnxhd_cid_table[index].bit_depth != ctx->bit_depth) {
  81. av_log(ctx->avctx, AV_LOG_ERROR, "bit depth mismatches %d %d\n", ff_dnxhd_cid_table[index].bit_depth, ctx->bit_depth);
  82. return AVERROR_INVALIDDATA;
  83. }
  84. ctx->cid_table = &ff_dnxhd_cid_table[index];
  85. ff_free_vlc(&ctx->ac_vlc);
  86. ff_free_vlc(&ctx->dc_vlc);
  87. ff_free_vlc(&ctx->run_vlc);
  88. init_vlc(&ctx->ac_vlc, DNXHD_VLC_BITS, 257,
  89. ctx->cid_table->ac_bits, 1, 1,
  90. ctx->cid_table->ac_codes, 2, 2, 0);
  91. init_vlc(&ctx->dc_vlc, DNXHD_DC_VLC_BITS, ctx->bit_depth + 4,
  92. ctx->cid_table->dc_bits, 1, 1,
  93. ctx->cid_table->dc_codes, 1, 1, 0);
  94. init_vlc(&ctx->run_vlc, DNXHD_VLC_BITS, 62,
  95. ctx->cid_table->run_bits, 1, 1,
  96. ctx->cid_table->run_codes, 2, 2, 0);
  97. ff_init_scantable(ctx->idsp.idct_permutation, &ctx->scantable,
  98. ff_zigzag_direct);
  99. ctx->cid = cid;
  100. }
  101. return 0;
  102. }
  103. static int dnxhd_decode_header(DNXHDContext *ctx, AVFrame *frame,
  104. const uint8_t *buf, int buf_size,
  105. int first_field)
  106. {
  107. static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 };
  108. static const uint8_t header_prefix444[] = { 0x00, 0x00, 0x02, 0x80, 0x02 };
  109. int i, cid, ret;
  110. if (buf_size < 0x280)
  111. return AVERROR_INVALIDDATA;
  112. if (memcmp(buf, header_prefix, 5) && memcmp(buf, header_prefix444, 5)) {
  113. av_log(ctx->avctx, AV_LOG_ERROR, "error in header\n");
  114. return AVERROR_INVALIDDATA;
  115. }
  116. if (buf[5] & 2) { /* interlaced */
  117. ctx->cur_field = buf[5] & 1;
  118. frame->interlaced_frame = 1;
  119. frame->top_field_first = first_field ^ ctx->cur_field;
  120. av_log(ctx->avctx, AV_LOG_DEBUG,
  121. "interlaced %d, cur field %d\n", buf[5] & 3, ctx->cur_field);
  122. }
  123. ctx->height = AV_RB16(buf + 0x18);
  124. ctx->width = AV_RB16(buf + 0x1a);
  125. av_dlog(ctx->avctx, "width %d, height %d\n", ctx->width, ctx->height);
  126. ctx->is_444 = 0;
  127. if (buf[0x4] == 0x2) {
  128. ctx->pix_fmt = AV_PIX_FMT_YUV444P10;
  129. ctx->avctx->bits_per_raw_sample = 10;
  130. if (ctx->bit_depth != 10) {
  131. ff_blockdsp_init(&ctx->bdsp, ctx->avctx);
  132. ff_idctdsp_init(&ctx->idsp, ctx->avctx);
  133. ctx->bit_depth = 10;
  134. ctx->decode_dct_block = dnxhd_decode_dct_block_10_444;
  135. }
  136. ctx->is_444 = 1;
  137. } else if (buf[0x21] & 0x40) {
  138. ctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  139. ctx->avctx->bits_per_raw_sample = 10;
  140. if (ctx->bit_depth != 10) {
  141. ff_blockdsp_init(&ctx->bdsp, ctx->avctx);
  142. ff_idctdsp_init(&ctx->idsp, ctx->avctx);
  143. ctx->bit_depth = 10;
  144. ctx->decode_dct_block = dnxhd_decode_dct_block_10;
  145. }
  146. } else {
  147. ctx->pix_fmt = AV_PIX_FMT_YUV422P;
  148. ctx->avctx->bits_per_raw_sample = 8;
  149. if (ctx->bit_depth != 8) {
  150. ff_blockdsp_init(&ctx->bdsp, ctx->avctx);
  151. ff_idctdsp_init(&ctx->idsp, ctx->avctx);
  152. ctx->bit_depth = 8;
  153. ctx->decode_dct_block = dnxhd_decode_dct_block_8;
  154. }
  155. }
  156. cid = AV_RB32(buf + 0x28);
  157. av_dlog(ctx->avctx, "compression id %d\n", cid);
  158. if ((ret = dnxhd_init_vlc(ctx, cid)) < 0)
  159. return ret;
  160. if (buf_size < ctx->cid_table->coding_unit_size) {
  161. av_log(ctx->avctx, AV_LOG_ERROR, "incorrect frame size\n");
  162. return AVERROR_INVALIDDATA;
  163. }
  164. ctx->mb_width = ctx->width >> 4;
  165. ctx->mb_height = buf[0x16d];
  166. av_dlog(ctx->avctx,
  167. "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height);
  168. if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
  169. ctx->height <<= 1;
  170. if (ctx->mb_height > 68 ||
  171. (ctx->mb_height << frame->interlaced_frame) > (ctx->height + 15) >> 4) {
  172. av_log(ctx->avctx, AV_LOG_ERROR,
  173. "mb height too big: %d\n", ctx->mb_height);
  174. return AVERROR_INVALIDDATA;
  175. }
  176. for (i = 0; i < ctx->mb_height; i++) {
  177. ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i << 2));
  178. av_dlog(ctx->avctx, "mb scan index %d\n", ctx->mb_scan_index[i]);
  179. if (buf_size < ctx->mb_scan_index[i] + 0x280LL) {
  180. av_log(ctx->avctx, AV_LOG_ERROR, "invalid mb scan index\n");
  181. return AVERROR_INVALIDDATA;
  182. }
  183. }
  184. return 0;
  185. }
  186. static av_always_inline void dnxhd_decode_dct_block(DNXHDContext *ctx,
  187. int16_t *block, int n,
  188. int qscale,
  189. int index_bits,
  190. int level_bias,
  191. int level_shift)
  192. {
  193. int i, j, index1, index2, len, flags;
  194. int level, component, sign;
  195. const int *scale;
  196. const uint8_t *weight_matrix;
  197. const uint8_t *ac_level = ctx->cid_table->ac_level;
  198. const uint8_t *ac_flags = ctx->cid_table->ac_flags;
  199. const int eob_index = ctx->cid_table->eob_index;
  200. OPEN_READER(bs, &ctx->gb);
  201. if (!ctx->is_444) {
  202. if (n & 2) {
  203. component = 1 + (n & 1);
  204. scale = ctx->chroma_scale;
  205. weight_matrix = ctx->cid_table->chroma_weight;
  206. } else {
  207. component = 0;
  208. scale = ctx->luma_scale;
  209. weight_matrix = ctx->cid_table->luma_weight;
  210. }
  211. } else {
  212. component = (n >> 1) % 3;
  213. if (component) {
  214. scale = ctx->chroma_scale;
  215. weight_matrix = ctx->cid_table->chroma_weight;
  216. } else {
  217. scale = ctx->luma_scale;
  218. weight_matrix = ctx->cid_table->luma_weight;
  219. }
  220. }
  221. UPDATE_CACHE(bs, &ctx->gb);
  222. GET_VLC(len, bs, &ctx->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1);
  223. if (len) {
  224. level = GET_CACHE(bs, &ctx->gb);
  225. LAST_SKIP_BITS(bs, &ctx->gb, len);
  226. sign = ~level >> 31;
  227. level = (NEG_USR32(sign ^ level, len) ^ sign) - sign;
  228. ctx->last_dc[component] += level;
  229. }
  230. block[0] = ctx->last_dc[component];
  231. i = 0;
  232. UPDATE_CACHE(bs, &ctx->gb);
  233. GET_VLC(index1, bs, &ctx->gb, ctx->ac_vlc.table,
  234. DNXHD_VLC_BITS, 2);
  235. while (index1 != eob_index) {
  236. level = ac_level[index1];
  237. flags = ac_flags[index1];
  238. sign = SHOW_SBITS(bs, &ctx->gb, 1);
  239. SKIP_BITS(bs, &ctx->gb, 1);
  240. if (flags & 1) {
  241. level += SHOW_UBITS(bs, &ctx->gb, index_bits) << 7;
  242. SKIP_BITS(bs, &ctx->gb, index_bits);
  243. }
  244. if (flags & 2) {
  245. UPDATE_CACHE(bs, &ctx->gb);
  246. GET_VLC(index2, bs, &ctx->gb, ctx->run_vlc.table,
  247. DNXHD_VLC_BITS, 2);
  248. i += ctx->cid_table->run[index2];
  249. }
  250. if (++i > 63) {
  251. av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i);
  252. break;
  253. }
  254. j = ctx->scantable.permutated[i];
  255. level *= scale[i];
  256. if (level_bias < 32 || weight_matrix[i] != level_bias)
  257. level += level_bias;
  258. level >>= level_shift;
  259. block[j] = (level ^ sign) - sign;
  260. UPDATE_CACHE(bs, &ctx->gb);
  261. GET_VLC(index1, bs, &ctx->gb, ctx->ac_vlc.table,
  262. DNXHD_VLC_BITS, 2);
  263. }
  264. CLOSE_READER(bs, &ctx->gb);
  265. }
  266. static void dnxhd_decode_dct_block_8(DNXHDContext *ctx, int16_t *block,
  267. int n, int qscale)
  268. {
  269. dnxhd_decode_dct_block(ctx, block, n, qscale, 4, 32, 6);
  270. }
  271. static void dnxhd_decode_dct_block_10(DNXHDContext *ctx, int16_t *block,
  272. int n, int qscale)
  273. {
  274. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 8, 4);
  275. }
  276. static void dnxhd_decode_dct_block_10_444(DNXHDContext *ctx, int16_t *block,
  277. int n, int qscale)
  278. {
  279. dnxhd_decode_dct_block(ctx, block, n, qscale, 6, 32, 6);
  280. }
  281. static int dnxhd_decode_macroblock(DNXHDContext *ctx, AVFrame *frame,
  282. int x, int y)
  283. {
  284. int shift1 = ctx->bit_depth == 10;
  285. int dct_linesize_luma = frame->linesize[0];
  286. int dct_linesize_chroma = frame->linesize[1];
  287. uint8_t *dest_y, *dest_u, *dest_v;
  288. int dct_y_offset, dct_x_offset;
  289. int qscale, i;
  290. qscale = get_bits(&ctx->gb, 11);
  291. skip_bits1(&ctx->gb);
  292. if (qscale != ctx->last_qscale) {
  293. for (i = 0; i < 64; i++) {
  294. ctx->luma_scale[i] = qscale * ctx->cid_table->luma_weight[i];
  295. ctx->chroma_scale[i] = qscale * ctx->cid_table->chroma_weight[i];
  296. }
  297. ctx->last_qscale = qscale;
  298. }
  299. for (i = 0; i < 8; i++) {
  300. ctx->bdsp.clear_block(ctx->blocks[i]);
  301. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  302. }
  303. if (ctx->is_444) {
  304. for (; i < 12; i++) {
  305. ctx->bdsp.clear_block(ctx->blocks[i]);
  306. ctx->decode_dct_block(ctx, ctx->blocks[i], i, qscale);
  307. }
  308. }
  309. if (frame->interlaced_frame) {
  310. dct_linesize_luma <<= 1;
  311. dct_linesize_chroma <<= 1;
  312. }
  313. dest_y = frame->data[0] + ((y * dct_linesize_luma) << 4) + (x << (4 + shift1));
  314. dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  315. dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  316. if (ctx->cur_field) {
  317. dest_y += frame->linesize[0];
  318. dest_u += frame->linesize[1];
  319. dest_v += frame->linesize[2];
  320. }
  321. dct_y_offset = dct_linesize_luma << 3;
  322. dct_x_offset = 8 << shift1;
  323. if (!ctx->is_444) {
  324. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  325. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  326. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[4]);
  327. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[5]);
  328. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  329. dct_y_offset = dct_linesize_chroma << 3;
  330. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  331. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[3]);
  332. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[6]);
  333. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[7]);
  334. }
  335. } else {
  336. ctx->idsp.idct_put(dest_y, dct_linesize_luma, ctx->blocks[0]);
  337. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, ctx->blocks[1]);
  338. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, ctx->blocks[6]);
  339. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, ctx->blocks[7]);
  340. if (!(ctx->avctx->flags & CODEC_FLAG_GRAY)) {
  341. dct_y_offset = dct_linesize_chroma << 3;
  342. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, ctx->blocks[2]);
  343. ctx->idsp.idct_put(dest_u + dct_x_offset, dct_linesize_chroma, ctx->blocks[3]);
  344. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, ctx->blocks[8]);
  345. ctx->idsp.idct_put(dest_u + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[9]);
  346. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, ctx->blocks[4]);
  347. ctx->idsp.idct_put(dest_v + dct_x_offset, dct_linesize_chroma, ctx->blocks[5]);
  348. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, ctx->blocks[10]);
  349. ctx->idsp.idct_put(dest_v + dct_y_offset + dct_x_offset, dct_linesize_chroma, ctx->blocks[11]);
  350. }
  351. }
  352. return 0;
  353. }
  354. static int dnxhd_decode_macroblocks(DNXHDContext *ctx, AVFrame *frame,
  355. const uint8_t *buf, int buf_size)
  356. {
  357. int x, y;
  358. for (y = 0; y < ctx->mb_height; y++) {
  359. ctx->last_dc[0] =
  360. ctx->last_dc[1] =
  361. ctx->last_dc[2] = 1 << (ctx->bit_depth + 2); // for levels +2^(bitdepth-1)
  362. init_get_bits(&ctx->gb, buf + ctx->mb_scan_index[y], (buf_size - ctx->mb_scan_index[y]) << 3);
  363. for (x = 0; x < ctx->mb_width; x++) {
  364. //START_TIMER;
  365. dnxhd_decode_macroblock(ctx, frame, x, y);
  366. //STOP_TIMER("decode macroblock");
  367. }
  368. }
  369. return 0;
  370. }
  371. static int dnxhd_decode_frame(AVCodecContext *avctx, void *data,
  372. int *got_frame, AVPacket *avpkt)
  373. {
  374. const uint8_t *buf = avpkt->data;
  375. int buf_size = avpkt->size;
  376. DNXHDContext *ctx = avctx->priv_data;
  377. ThreadFrame frame = { .f = data };
  378. AVFrame *picture = data;
  379. int first_field = 1;
  380. int ret;
  381. av_dlog(avctx, "frame size %d\n", buf_size);
  382. decode_coding_unit:
  383. if ((ret = dnxhd_decode_header(ctx, picture, buf, buf_size, first_field)) < 0)
  384. return ret;
  385. if ((avctx->width || avctx->height) &&
  386. (ctx->width != avctx->width || ctx->height != avctx->height)) {
  387. av_log(avctx, AV_LOG_WARNING, "frame size changed: %dx%d -> %dx%d\n",
  388. avctx->width, avctx->height, ctx->width, ctx->height);
  389. first_field = 1;
  390. }
  391. if (avctx->pix_fmt != AV_PIX_FMT_NONE && avctx->pix_fmt != ctx->pix_fmt) {
  392. av_log(avctx, AV_LOG_WARNING, "pix_fmt changed: %s -> %s\n",
  393. av_get_pix_fmt_name(avctx->pix_fmt), av_get_pix_fmt_name(ctx->pix_fmt));
  394. first_field = 1;
  395. }
  396. avctx->pix_fmt = ctx->pix_fmt;
  397. ret = ff_set_dimensions(avctx, ctx->width, ctx->height);
  398. if (ret < 0)
  399. return ret;
  400. if (first_field) {
  401. if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
  402. return ret;
  403. picture->pict_type = AV_PICTURE_TYPE_I;
  404. picture->key_frame = 1;
  405. }
  406. dnxhd_decode_macroblocks(ctx, picture, buf + 0x280, buf_size - 0x280);
  407. if (first_field && picture->interlaced_frame) {
  408. buf += ctx->cid_table->coding_unit_size;
  409. buf_size -= ctx->cid_table->coding_unit_size;
  410. first_field = 0;
  411. goto decode_coding_unit;
  412. }
  413. *got_frame = 1;
  414. return avpkt->size;
  415. }
  416. static av_cold int dnxhd_decode_close(AVCodecContext *avctx)
  417. {
  418. DNXHDContext *ctx = avctx->priv_data;
  419. ff_free_vlc(&ctx->ac_vlc);
  420. ff_free_vlc(&ctx->dc_vlc);
  421. ff_free_vlc(&ctx->run_vlc);
  422. return 0;
  423. }
  424. AVCodec ff_dnxhd_decoder = {
  425. .name = "dnxhd",
  426. .long_name = NULL_IF_CONFIG_SMALL("VC3/DNxHD"),
  427. .type = AVMEDIA_TYPE_VIDEO,
  428. .id = AV_CODEC_ID_DNXHD,
  429. .priv_data_size = sizeof(DNXHDContext),
  430. .init = dnxhd_decode_init,
  431. .close = dnxhd_decode_close,
  432. .decode = dnxhd_decode_frame,
  433. .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
  434. };