Lines Matching defs:cid
59 int64_t cid; ///< compression id
99 ctx->cid = -1;
114 static int dnxhd_init_vlc(DNXHDContext *ctx, uint32_t cid, int bitdepth)
117 if (cid != ctx->cid) {
118 const CIDEntry *cid_table = ff_dnxhd_get_cid_table(cid);
121 av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %"PRIu32"\n", cid);
131 av_log(ctx->avctx, AV_LOG_VERBOSE, "Profile cid %"PRIu32".\n", cid);
150 ctx->cid = cid;
159 static int dnxhd_get_profile(int cid)
161 switch(cid) {
180 int i, cid, ret;
224 cid = AV_RB32(buf + 0x28);
226 ctx->avctx->profile = dnxhd_get_profile(cid);
228 if ((ret = dnxhd_init_vlc(ctx, cid, bitdepth)) < 0)
230 if (ctx->mbaff && ctx->cid_table->cid != 1260)
242 if (ctx->act && ctx->cid_table->cid != 1256 && ctx->cid_table->cid != 1270)