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