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.

608 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. * Copyright (c) 2015 Christophe Gisquet
  6. *
  7. * 10 bit support added by MirriAd Ltd, Joseph Artsimovich <joseph@mirriad.com>
  8. * Slice multithreading and MB interlaced support added by Christophe Gisquet
  9. *
  10. * This file is part of FFmpeg.
  11. *
  12. * FFmpeg is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU Lesser General Public
  14. * License as published by the Free Software Foundation; either
  15. * version 2.1 of the License, or (at your option) any later version.
  16. *
  17. * FFmpeg is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. * Lesser General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Lesser General Public
  23. * License along with FFmpeg; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  25. */
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/timer.h"
  28. #include "avcodec.h"
  29. #include "blockdsp.h"
  30. #define UNCHECKED_BITSTREAM_READER 1
  31. #include "get_bits.h"
  32. #include "dnxhddata.h"
  33. #include "idctdsp.h"
  34. #include "internal.h"
  35. #include "thread.h"
  36. typedef struct RowContext {
  37. DECLARE_ALIGNED(16, int16_t, blocks)[12][64];
  38. int luma_scale[64];
  39. int chroma_scale[64];
  40. GetBitContext gb;
  41. int last_dc[3];
  42. int last_qscale;
  43. int errors;
  44. } RowContext;
  45. typedef struct DNXHDContext {
  46. AVCodecContext *avctx;
  47. RowContext *rows;
  48. BlockDSPContext bdsp;
  49. const uint8_t* buf;
  50. int buf_size;
  51. int64_t cid; ///< compression id
  52. unsigned int width, height;
  53. enum AVPixelFormat pix_fmt;
  54. unsigned int mb_width, mb_height;
  55. uint32_t mb_scan_index[68]; /* max for 1080p */
  56. int cur_field; ///< current interlaced field
  57. VLC ac_vlc, dc_vlc, run_vlc;
  58. IDCTDSPContext idsp;
  59. ScanTable scantable;
  60. const CIDEntry *cid_table;
  61. int bit_depth; // 8, 10 or 0 if not initialized at all.
  62. int is_444;
  63. int mbaff;
  64. int act;
  65. int (*decode_dct_block)(const struct DNXHDContext *ctx,
  66. RowContext *row, int n);
  67. } DNXHDContext;
  68. #define DNXHD_VLC_BITS 9
  69. #define DNXHD_DC_VLC_BITS 7
  70. static int dnxhd_decode_dct_block_8(const DNXHDContext *ctx,
  71. RowContext *row, int n);
  72. static int dnxhd_decode_dct_block_10(const DNXHDContext *ctx,
  73. RowContext *row, int n);
  74. static int dnxhd_decode_dct_block_10_444(const DNXHDContext *ctx,
  75. RowContext *row, 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. avctx->coded_width = FFALIGN(avctx->width, 16);
  83. avctx->coded_height = FFALIGN(avctx->height, 16);
  84. ctx->rows = av_mallocz_array(avctx->thread_count, sizeof(RowContext));
  85. if (!ctx->rows)
  86. return AVERROR(ENOMEM);
  87. return 0;
  88. }
  89. static int dnxhd_init_vlc(DNXHDContext *ctx, uint32_t cid)
  90. {
  91. if (cid != ctx->cid) {
  92. int index;
  93. if ((index = ff_dnxhd_get_cid_table(cid)) < 0) {
  94. av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %d\n", cid);
  95. return AVERROR(ENOSYS);
  96. }
  97. if (ff_dnxhd_cid_table[index].bit_depth != ctx->bit_depth) {
  98. av_log(ctx->avctx, AV_LOG_ERROR, "bit depth mismatches %d %d\n", ff_dnxhd_cid_table[index].bit_depth, ctx->bit_depth);
  99. return AVERROR_INVALIDDATA;
  100. }
  101. ctx->cid_table = &ff_dnxhd_cid_table[index];
  102. av_log(ctx->avctx, AV_LOG_VERBOSE, "Profile cid %d.\n", cid);
  103. ff_free_vlc(&ctx->ac_vlc);
  104. ff_free_vlc(&ctx->dc_vlc);
  105. ff_free_vlc(&ctx->run_vlc);
  106. init_vlc(&ctx->ac_vlc, DNXHD_VLC_BITS, 257,
  107. ctx->cid_table->ac_bits, 1, 1,
  108. ctx->cid_table->ac_codes, 2, 2, 0);
  109. init_vlc(&ctx->dc_vlc, DNXHD_DC_VLC_BITS, ctx->bit_depth + 4,
  110. ctx->cid_table->dc_bits, 1, 1,
  111. ctx->cid_table->dc_codes, 1, 1, 0);
  112. init_vlc(&ctx->run_vlc, DNXHD_VLC_BITS, 62,
  113. ctx->cid_table->run_bits, 1, 1,
  114. ctx->cid_table->run_codes, 2, 2, 0);
  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,
  139. "buffer too small (%d < 640).\n", 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,
  179. "invalid bit depth value (%d).\n", 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. ff_init_scantable(ctx->idsp.idct_permutation, &ctx->scantable,
  186. ff_zigzag_direct);
  187. }
  188. cid = AV_RB32(buf + 0x28);
  189. ff_dlog(ctx->avctx, "compression id %d\n", cid);
  190. if ((ret = dnxhd_init_vlc(ctx, cid)) < 0)
  191. return ret;
  192. if (ctx->mbaff && ctx->cid_table->cid != 1260)
  193. av_log(ctx->avctx, AV_LOG_WARNING,
  194. "Adaptive MB interlace flag in an unsupported profile.\n");
  195. ctx->act = buf[0x2C] & 7;
  196. if (ctx->act && ctx->cid_table->cid != 1256)
  197. av_log(ctx->avctx, AV_LOG_WARNING,
  198. "Adaptive color transform in an unsupported profile.\n");
  199. // make sure profile size constraints are respected
  200. // DNx100 allows 1920->1440 and 1280->960 subsampling
  201. if (ctx->width != ctx->cid_table->width) {
  202. av_reduce(&ctx->avctx->sample_aspect_ratio.num,
  203. &ctx->avctx->sample_aspect_ratio.den,
  204. ctx->width, ctx->cid_table->width, 255);
  205. ctx->width = ctx->cid_table->width;
  206. }
  207. if (buf_size < ctx->cid_table->coding_unit_size) {
  208. av_log(ctx->avctx, AV_LOG_ERROR, "incorrect frame size (%d < %d).\n",
  209. buf_size, ctx->cid_table->coding_unit_size);
  210. return AVERROR_INVALIDDATA;
  211. }
  212. ctx->mb_width = ctx->width >> 4;
  213. ctx->mb_height = buf[0x16d];
  214. ff_dlog(ctx->avctx,
  215. "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height);
  216. if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
  217. ctx->height <<= 1;
  218. if (ctx->mb_height > 68 ||
  219. (ctx->mb_height << frame->interlaced_frame) > (ctx->height + 15) >> 4) {
  220. av_log(ctx->avctx, AV_LOG_ERROR,
  221. "mb height too big: %d\n", ctx->mb_height);
  222. return AVERROR_INVALIDDATA;
  223. }
  224. for (i = 0; i < ctx->mb_height; i++) {
  225. ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i << 2));
  226. ff_dlog(ctx->avctx, "mb scan index %d\n", ctx->mb_scan_index[i]);
  227. if (buf_size < ctx->mb_scan_index[i] + 0x280LL) {
  228. av_log(ctx->avctx, AV_LOG_ERROR,
  229. "invalid mb scan index (%d < %d).\n",
  230. buf_size, ctx->mb_scan_index[i] + 0x280);
  231. return AVERROR_INVALIDDATA;
  232. }
  233. }
  234. return 0;
  235. }
  236. static av_always_inline int dnxhd_decode_dct_block(const DNXHDContext *ctx,
  237. RowContext *row,
  238. int n,
  239. int index_bits,
  240. int level_bias,
  241. int level_shift)
  242. {
  243. int i, j, index1, index2, len, flags;
  244. int level, component, sign;
  245. const int *scale;
  246. const uint8_t *weight_matrix;
  247. const uint8_t *ac_level = ctx->cid_table->ac_level;
  248. const uint8_t *ac_flags = ctx->cid_table->ac_flags;
  249. int16_t *block = row->blocks[n];
  250. const int eob_index = ctx->cid_table->eob_index;
  251. int ret = 0;
  252. OPEN_READER(bs, &row->gb);
  253. ctx->bdsp.clear_block(block);
  254. if (!ctx->is_444) {
  255. if (n & 2) {
  256. component = 1 + (n & 1);
  257. scale = row->chroma_scale;
  258. weight_matrix = ctx->cid_table->chroma_weight;
  259. } else {
  260. component = 0;
  261. scale = row->luma_scale;
  262. weight_matrix = ctx->cid_table->luma_weight;
  263. }
  264. } else {
  265. component = (n >> 1) % 3;
  266. if (component) {
  267. scale = row->chroma_scale;
  268. weight_matrix = ctx->cid_table->chroma_weight;
  269. } else {
  270. scale = row->luma_scale;
  271. weight_matrix = ctx->cid_table->luma_weight;
  272. }
  273. }
  274. UPDATE_CACHE(bs, &row->gb);
  275. GET_VLC(len, bs, &row->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1);
  276. if (len) {
  277. level = GET_CACHE(bs, &row->gb);
  278. LAST_SKIP_BITS(bs, &row->gb, len);
  279. sign = ~level >> 31;
  280. level = (NEG_USR32(sign ^ level, len) ^ sign) - sign;
  281. row->last_dc[component] += level;
  282. }
  283. block[0] = row->last_dc[component];
  284. i = 0;
  285. UPDATE_CACHE(bs, &row->gb);
  286. GET_VLC(index1, bs, &row->gb, ctx->ac_vlc.table,
  287. DNXHD_VLC_BITS, 2);
  288. while (index1 != eob_index) {
  289. level = ac_level[index1];
  290. flags = ac_flags[index1];
  291. sign = SHOW_SBITS(bs, &row->gb, 1);
  292. SKIP_BITS(bs, &row->gb, 1);
  293. if (flags & 1) {
  294. level += SHOW_UBITS(bs, &row->gb, index_bits) << 7;
  295. SKIP_BITS(bs, &row->gb, index_bits);
  296. }
  297. if (flags & 2) {
  298. UPDATE_CACHE(bs, &row->gb);
  299. GET_VLC(index2, bs, &row->gb, ctx->run_vlc.table,
  300. DNXHD_VLC_BITS, 2);
  301. i += ctx->cid_table->run[index2];
  302. }
  303. if (++i > 63) {
  304. av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i);
  305. ret = -1;
  306. break;
  307. }
  308. j = ctx->scantable.permutated[i];
  309. level *= scale[i];
  310. level += scale[i] >> 1;
  311. if (level_bias < 32 || weight_matrix[i] != level_bias)
  312. level += level_bias; // 1<<(level_shift-1)
  313. level >>= level_shift;
  314. block[j] = (level ^ sign) - sign;
  315. UPDATE_CACHE(bs, &row->gb);
  316. GET_VLC(index1, bs, &row->gb, ctx->ac_vlc.table,
  317. DNXHD_VLC_BITS, 2);
  318. }
  319. CLOSE_READER(bs, &row->gb);
  320. return ret;
  321. }
  322. static int dnxhd_decode_dct_block_8(const DNXHDContext *ctx,
  323. RowContext *row, int n)
  324. {
  325. return dnxhd_decode_dct_block(ctx, row, n, 4, 32, 6);
  326. }
  327. static int dnxhd_decode_dct_block_10(const DNXHDContext *ctx,
  328. RowContext *row, int n)
  329. {
  330. return dnxhd_decode_dct_block(ctx, row, n, 6, 8, 4);
  331. }
  332. static int dnxhd_decode_dct_block_10_444(const DNXHDContext *ctx,
  333. RowContext *row, int n)
  334. {
  335. return dnxhd_decode_dct_block(ctx, row, n, 6, 32, 6);
  336. }
  337. static int dnxhd_decode_macroblock(const DNXHDContext *ctx, RowContext *row,
  338. AVFrame *frame, int x, int y)
  339. {
  340. int shift1 = ctx->bit_depth == 10;
  341. int dct_linesize_luma = frame->linesize[0];
  342. int dct_linesize_chroma = frame->linesize[1];
  343. uint8_t *dest_y, *dest_u, *dest_v;
  344. int dct_y_offset, dct_x_offset;
  345. int qscale, i, act;
  346. int interlaced_mb = 0;
  347. if (ctx->mbaff) {
  348. interlaced_mb = get_bits1(&row->gb);
  349. qscale = get_bits(&row->gb, 10);
  350. } else {
  351. qscale = get_bits(&row->gb, 11);
  352. }
  353. act = get_bits1(&row->gb);
  354. if (act) {
  355. static int warned = 0;
  356. if (!warned) {
  357. warned = 1;
  358. av_log(ctx->avctx, AV_LOG_ERROR,
  359. "Unsupported adaptive color transform, patch welcome.\n");
  360. }
  361. }
  362. if (qscale != row->last_qscale) {
  363. for (i = 0; i < 64; i++) {
  364. row->luma_scale[i] = qscale * ctx->cid_table->luma_weight[i];
  365. row->chroma_scale[i] = qscale * ctx->cid_table->chroma_weight[i];
  366. }
  367. row->last_qscale = qscale;
  368. }
  369. for (i = 0; i < 8 + 4 * ctx->is_444; i++) {
  370. if (ctx->decode_dct_block(ctx, row, i) < 0)
  371. return AVERROR_INVALIDDATA;
  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. int ret = dnxhd_decode_macroblock(ctx, row, data, x, rownb);
  436. if (ret < 0) {
  437. row->errors++;
  438. return ret;
  439. }
  440. //STOP_TIMER("decode macroblock");
  441. }
  442. return 0;
  443. }
  444. static int dnxhd_decode_frame(AVCodecContext *avctx, void *data,
  445. int *got_frame, AVPacket *avpkt)
  446. {
  447. const uint8_t *buf = avpkt->data;
  448. int buf_size = avpkt->size;
  449. DNXHDContext *ctx = avctx->priv_data;
  450. ThreadFrame frame = { .f = data };
  451. AVFrame *picture = data;
  452. int first_field = 1;
  453. int ret, i;
  454. ff_dlog(avctx, "frame size %d\n", buf_size);
  455. decode_coding_unit:
  456. if ((ret = dnxhd_decode_header(ctx, picture, buf, buf_size, first_field)) < 0)
  457. return ret;
  458. if ((avctx->width || avctx->height) &&
  459. (ctx->width != avctx->width || ctx->height != avctx->height)) {
  460. av_log(avctx, AV_LOG_WARNING, "frame size changed: %dx%d -> %dx%d\n",
  461. avctx->width, avctx->height, ctx->width, ctx->height);
  462. first_field = 1;
  463. }
  464. if (avctx->pix_fmt != AV_PIX_FMT_NONE && avctx->pix_fmt != ctx->pix_fmt) {
  465. av_log(avctx, AV_LOG_WARNING, "pix_fmt changed: %s -> %s\n",
  466. av_get_pix_fmt_name(avctx->pix_fmt), av_get_pix_fmt_name(ctx->pix_fmt));
  467. first_field = 1;
  468. }
  469. avctx->pix_fmt = ctx->pix_fmt;
  470. ret = ff_set_dimensions(avctx, ctx->width, ctx->height);
  471. if (ret < 0)
  472. return ret;
  473. if (first_field) {
  474. if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
  475. return ret;
  476. picture->pict_type = AV_PICTURE_TYPE_I;
  477. picture->key_frame = 1;
  478. }
  479. ctx->buf_size = buf_size - 0x280;
  480. ctx->buf = buf + 0x280;
  481. avctx->execute2(avctx, dnxhd_decode_row, picture, NULL, ctx->mb_height);
  482. if (first_field && picture->interlaced_frame) {
  483. buf += ctx->cid_table->coding_unit_size;
  484. buf_size -= ctx->cid_table->coding_unit_size;
  485. first_field = 0;
  486. goto decode_coding_unit;
  487. }
  488. ret = 0;
  489. for (i = 0; i < avctx->thread_count; i++) {
  490. ret += ctx->rows[i].errors;
  491. ctx->rows[i].errors = 0;
  492. }
  493. if (ret) {
  494. av_log(ctx->avctx, AV_LOG_ERROR, "%d lines with errors\n", ret);
  495. return AVERROR_INVALIDDATA;
  496. }
  497. *got_frame = 1;
  498. return avpkt->size;
  499. }
  500. static av_cold int dnxhd_decode_close(AVCodecContext *avctx)
  501. {
  502. DNXHDContext *ctx = avctx->priv_data;
  503. ff_free_vlc(&ctx->ac_vlc);
  504. ff_free_vlc(&ctx->dc_vlc);
  505. ff_free_vlc(&ctx->run_vlc);
  506. av_freep(&ctx->rows);
  507. return 0;
  508. }
  509. AVCodec ff_dnxhd_decoder = {
  510. .name = "dnxhd",
  511. .long_name = NULL_IF_CONFIG_SMALL("VC3/DNxHD"),
  512. .type = AVMEDIA_TYPE_VIDEO,
  513. .id = AV_CODEC_ID_DNXHD,
  514. .priv_data_size = sizeof(DNXHDContext),
  515. .init = dnxhd_decode_init,
  516. .close = dnxhd_decode_close,
  517. .decode = dnxhd_decode_frame,
  518. .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
  519. AV_CODEC_CAP_SLICE_THREADS,
  520. .init_thread_copy = ONLY_IF_THREADS_ENABLED(dnxhd_decode_init_thread_copy),
  521. };