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.

592 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, int qscale);
  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, int qscale);
  70. static void dnxhd_decode_dct_block_10(const DNXHDContext *ctx,
  71. RowContext *row, int16_t *block,
  72. int n, int qscale);
  73. static void dnxhd_decode_dct_block_10_444(const DNXHDContext *ctx,
  74. RowContext *row, int16_t *block,
  75. int n, int qscale);
  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 qscale,
  238. int index_bits,
  239. int level_bias,
  240. int level_shift)
  241. {
  242. int i, j, index1, index2, len, flags;
  243. int level, component, sign;
  244. const int *scale;
  245. const uint8_t *weight_matrix;
  246. const uint8_t *ac_level = ctx->cid_table->ac_level;
  247. const uint8_t *ac_flags = ctx->cid_table->ac_flags;
  248. const int eob_index = ctx->cid_table->eob_index;
  249. OPEN_READER(bs, &row->gb);
  250. if (!ctx->is_444) {
  251. if (n & 2) {
  252. component = 1 + (n & 1);
  253. scale = row->chroma_scale;
  254. weight_matrix = ctx->cid_table->chroma_weight;
  255. } else {
  256. component = 0;
  257. scale = row->luma_scale;
  258. weight_matrix = ctx->cid_table->luma_weight;
  259. }
  260. } else {
  261. component = (n >> 1) % 3;
  262. if (component) {
  263. scale = row->chroma_scale;
  264. weight_matrix = ctx->cid_table->chroma_weight;
  265. } else {
  266. scale = row->luma_scale;
  267. weight_matrix = ctx->cid_table->luma_weight;
  268. }
  269. }
  270. UPDATE_CACHE(bs, &row->gb);
  271. GET_VLC(len, bs, &row->gb, ctx->dc_vlc.table, DNXHD_DC_VLC_BITS, 1);
  272. if (len) {
  273. level = GET_CACHE(bs, &row->gb);
  274. LAST_SKIP_BITS(bs, &row->gb, len);
  275. sign = ~level >> 31;
  276. level = (NEG_USR32(sign ^ level, len) ^ sign) - sign;
  277. row->last_dc[component] += level;
  278. }
  279. block[0] = row->last_dc[component];
  280. i = 0;
  281. UPDATE_CACHE(bs, &row->gb);
  282. GET_VLC(index1, bs, &row->gb, ctx->ac_vlc.table,
  283. DNXHD_VLC_BITS, 2);
  284. while (index1 != eob_index) {
  285. level = ac_level[index1];
  286. flags = ac_flags[index1];
  287. sign = SHOW_SBITS(bs, &row->gb, 1);
  288. SKIP_BITS(bs, &row->gb, 1);
  289. if (flags & 1) {
  290. level += SHOW_UBITS(bs, &row->gb, index_bits) << 7;
  291. SKIP_BITS(bs, &row->gb, index_bits);
  292. }
  293. if (flags & 2) {
  294. UPDATE_CACHE(bs, &row->gb);
  295. GET_VLC(index2, bs, &row->gb, ctx->run_vlc.table,
  296. DNXHD_VLC_BITS, 2);
  297. i += ctx->cid_table->run[index2];
  298. }
  299. if (++i > 63) {
  300. av_log(ctx->avctx, AV_LOG_ERROR, "ac tex damaged %d, %d\n", n, i);
  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. }
  315. static void dnxhd_decode_dct_block_8(const DNXHDContext *ctx,
  316. RowContext *row, int16_t *block,
  317. int n, int qscale)
  318. {
  319. dnxhd_decode_dct_block(ctx, row, block, n, qscale, 4, 32, 6);
  320. }
  321. static void dnxhd_decode_dct_block_10(const DNXHDContext *ctx,
  322. RowContext *row, int16_t *block,
  323. int n, int qscale)
  324. {
  325. dnxhd_decode_dct_block(ctx, row, block, n, qscale, 6, 8, 4);
  326. }
  327. static void dnxhd_decode_dct_block_10_444(const DNXHDContext *ctx,
  328. RowContext *row, int16_t *block,
  329. int n, int qscale)
  330. {
  331. dnxhd_decode_dct_block(ctx, row, block, n, qscale, 6, 32, 6);
  332. }
  333. static int dnxhd_decode_macroblock(const DNXHDContext *ctx, RowContext *row,
  334. AVFrame *frame, int x, int y)
  335. {
  336. int shift1 = ctx->bit_depth == 10;
  337. int dct_linesize_luma = frame->linesize[0];
  338. int dct_linesize_chroma = frame->linesize[1];
  339. uint8_t *dest_y, *dest_u, *dest_v;
  340. int dct_y_offset, dct_x_offset;
  341. int qscale, i, act;
  342. int interlaced_mb = 0;
  343. if (ctx->mbaff) {
  344. interlaced_mb = get_bits1(&row->gb);
  345. qscale = get_bits(&row->gb, 10);
  346. } else
  347. qscale = get_bits(&row->gb, 11);
  348. act = get_bits1(&row->gb);
  349. if (act) {
  350. static int warned = 0;
  351. if (!warned) {
  352. warned = 1;
  353. av_log(ctx->avctx, AV_LOG_ERROR,
  354. "Unsupported adaptive color transform, patch welcome.\n");
  355. }
  356. }
  357. if (qscale != row->last_qscale) {
  358. for (i = 0; i < 64; i++) {
  359. row->luma_scale[i] = qscale * ctx->cid_table->luma_weight[i];
  360. row->chroma_scale[i] = qscale * ctx->cid_table->chroma_weight[i];
  361. }
  362. row->last_qscale = qscale;
  363. }
  364. for (i = 0; i < 8; i++) {
  365. ctx->bdsp.clear_block(row->blocks[i]);
  366. ctx->decode_dct_block(ctx, row, row->blocks[i], i, qscale);
  367. }
  368. if (ctx->is_444) {
  369. for (; i < 12; i++) {
  370. ctx->bdsp.clear_block(row->blocks[i]);
  371. ctx->decode_dct_block(ctx, row, row->blocks[i], i, qscale);
  372. }
  373. }
  374. if (frame->interlaced_frame) {
  375. dct_linesize_luma <<= 1;
  376. dct_linesize_chroma <<= 1;
  377. }
  378. dest_y = frame->data[0] + ((y * dct_linesize_luma) << 4) + (x << (4 + shift1));
  379. dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  380. dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444));
  381. if (frame->interlaced_frame && ctx->cur_field) {
  382. dest_y += frame->linesize[0];
  383. dest_u += frame->linesize[1];
  384. dest_v += frame->linesize[2];
  385. }
  386. if (interlaced_mb) {
  387. dct_linesize_luma <<= 1;
  388. dct_linesize_chroma <<= 1;
  389. }
  390. dct_y_offset = interlaced_mb ? frame->linesize[0] : (dct_linesize_luma << 3);
  391. dct_x_offset = 8 << shift1;
  392. if (!ctx->is_444) {
  393. ctx->idsp.idct_put(dest_y, dct_linesize_luma, row->blocks[0]);
  394. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, row->blocks[1]);
  395. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, row->blocks[4]);
  396. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, row->blocks[5]);
  397. if (!(ctx->avctx->flags & AV_CODEC_FLAG_GRAY)) {
  398. dct_y_offset = interlaced_mb ? frame->linesize[1] : (dct_linesize_chroma << 3);
  399. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, row->blocks[2]);
  400. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, row->blocks[3]);
  401. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, row->blocks[6]);
  402. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, row->blocks[7]);
  403. }
  404. } else {
  405. ctx->idsp.idct_put(dest_y, dct_linesize_luma, row->blocks[0]);
  406. ctx->idsp.idct_put(dest_y + dct_x_offset, dct_linesize_luma, row->blocks[1]);
  407. ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, row->blocks[6]);
  408. ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, row->blocks[7]);
  409. if (!(ctx->avctx->flags & AV_CODEC_FLAG_GRAY)) {
  410. dct_y_offset = interlaced_mb ? frame->linesize[1] : (dct_linesize_chroma << 3);
  411. ctx->idsp.idct_put(dest_u, dct_linesize_chroma, row->blocks[2]);
  412. ctx->idsp.idct_put(dest_u + dct_x_offset, dct_linesize_chroma, row->blocks[3]);
  413. ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, row->blocks[8]);
  414. ctx->idsp.idct_put(dest_u + dct_y_offset + dct_x_offset, dct_linesize_chroma, row->blocks[9]);
  415. ctx->idsp.idct_put(dest_v, dct_linesize_chroma, row->blocks[4]);
  416. ctx->idsp.idct_put(dest_v + dct_x_offset, dct_linesize_chroma, row->blocks[5]);
  417. ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, row->blocks[10]);
  418. ctx->idsp.idct_put(dest_v + dct_y_offset + dct_x_offset, dct_linesize_chroma, row->blocks[11]);
  419. }
  420. }
  421. return 0;
  422. }
  423. static int dnxhd_decode_row(AVCodecContext *avctx, void *data,
  424. int rownb, int threadnb)
  425. {
  426. const DNXHDContext *ctx = avctx->priv_data;
  427. uint32_t offset = ctx->mb_scan_index[rownb];
  428. RowContext *row = ctx->rows + threadnb;
  429. int x;
  430. row->last_dc[0] =
  431. row->last_dc[1] =
  432. row->last_dc[2] = 1 << (ctx->bit_depth + 2); // for levels +2^(bitdepth-1)
  433. init_get_bits(&row->gb, ctx->buf + offset, (ctx->buf_size - offset) << 3);
  434. for (x = 0; x < ctx->mb_width; x++) {
  435. //START_TIMER;
  436. dnxhd_decode_macroblock(ctx, row, data, x, rownb);
  437. //STOP_TIMER("decode macroblock");
  438. }
  439. return 0;
  440. }
  441. static int dnxhd_decode_frame(AVCodecContext *avctx, void *data,
  442. int *got_frame, AVPacket *avpkt)
  443. {
  444. const uint8_t *buf = avpkt->data;
  445. int buf_size = avpkt->size;
  446. DNXHDContext *ctx = avctx->priv_data;
  447. ThreadFrame frame = { .f = data };
  448. AVFrame *picture = data;
  449. int first_field = 1;
  450. int ret;
  451. ff_dlog(avctx, "frame size %d\n", buf_size);
  452. decode_coding_unit:
  453. if ((ret = dnxhd_decode_header(ctx, picture, buf, buf_size, first_field)) < 0)
  454. return ret;
  455. if ((avctx->width || avctx->height) &&
  456. (ctx->width != avctx->width || ctx->height != avctx->height)) {
  457. av_log(avctx, AV_LOG_WARNING, "frame size changed: %dx%d -> %dx%d\n",
  458. avctx->width, avctx->height, ctx->width, ctx->height);
  459. first_field = 1;
  460. }
  461. if (avctx->pix_fmt != AV_PIX_FMT_NONE && avctx->pix_fmt != ctx->pix_fmt) {
  462. av_log(avctx, AV_LOG_WARNING, "pix_fmt changed: %s -> %s\n",
  463. av_get_pix_fmt_name(avctx->pix_fmt), av_get_pix_fmt_name(ctx->pix_fmt));
  464. first_field = 1;
  465. }
  466. avctx->pix_fmt = ctx->pix_fmt;
  467. ret = ff_set_dimensions(avctx, ctx->width, ctx->height);
  468. if (ret < 0)
  469. return ret;
  470. if (first_field) {
  471. if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
  472. return ret;
  473. picture->pict_type = AV_PICTURE_TYPE_I;
  474. picture->key_frame = 1;
  475. }
  476. ctx->buf_size = buf_size - 0x280;
  477. ctx->buf = buf + 0x280;
  478. avctx->execute2(avctx, dnxhd_decode_row, picture, NULL, ctx->mb_height);
  479. if (first_field && picture->interlaced_frame) {
  480. buf += ctx->cid_table->coding_unit_size;
  481. buf_size -= ctx->cid_table->coding_unit_size;
  482. first_field = 0;
  483. goto decode_coding_unit;
  484. }
  485. *got_frame = 1;
  486. return avpkt->size;
  487. }
  488. static av_cold int dnxhd_decode_close(AVCodecContext *avctx)
  489. {
  490. DNXHDContext *ctx = avctx->priv_data;
  491. ff_free_vlc(&ctx->ac_vlc);
  492. ff_free_vlc(&ctx->dc_vlc);
  493. ff_free_vlc(&ctx->run_vlc);
  494. av_freep(&ctx->rows);
  495. return 0;
  496. }
  497. AVCodec ff_dnxhd_decoder = {
  498. .name = "dnxhd",
  499. .long_name = NULL_IF_CONFIG_SMALL("VC3/DNxHD"),
  500. .type = AVMEDIA_TYPE_VIDEO,
  501. .id = AV_CODEC_ID_DNXHD,
  502. .priv_data_size = sizeof(DNXHDContext),
  503. .init = dnxhd_decode_init,
  504. .close = dnxhd_decode_close,
  505. .decode = dnxhd_decode_frame,
  506. .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
  507. AV_CODEC_CAP_SLICE_THREADS,
  508. .init_thread_copy = ONLY_IF_THREADS_ENABLED(dnxhd_decode_init_thread_copy),
  509. };