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.

591 lines
21KB

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