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.

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