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