Lines Matching defs:entropy
235 int entropy;
1392 if (vtctx->entropy != VT_ENTROPY_NOT_SET) {
1393 CFStringRef entropy = vtctx->entropy == VT_CABAC ?
1399 entropy);
1402 av_log(avctx, AV_LOG_ERROR, "Error setting entropy property: %d\n", status);
1460 if (vtctx->entropy == VT_CABAC && vtctx->profile == H264_PROF_BASELINE) {
1461 av_log(avctx, AV_LOG_WARNING, "CABAC entropy requires 'main' or 'high' profile, but baseline was requested. Encode will not use CABAC entropy.\n");
1462 vtctx->entropy = VT_ENTROPY_NOT_SET;
2722 { "coder", "Entropy coding", OFFSET(entropy), AV_OPT_TYPE_INT, { .i64 = VT_ENTROPY_NOT_SET }, VT_ENTROPY_NOT_SET, VT_CABAC, VE, "coder" },
2723 { "cavlc", "CAVLC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CAVLC }, INT_MIN, INT_MAX, VE, "coder" },
2724 { "vlc", "CAVLC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CAVLC }, INT_MIN, INT_MAX, VE, "coder" },
2725 { "cabac", "CABAC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CABAC }, INT_MIN, INT_MAX, VE, "coder" },
2726 { "ac", "CABAC entropy coding", 0, AV_OPT_TYPE_CONST, { .i64 = VT_CABAC }, INT_MIN, INT_MAX, VE, "coder" },