26 #define VPX_DISABLE_CTRL_TYPECHECKS 1
27 #define VPX_CODEC_DISABLE_COMPAT 1
28 #include <vpx/vpx_encoder.h>
29 #include <vpx/vp8cx.h>
57 typedef struct VP8EncoderContext {
59 struct vpx_codec_ctx encoder;
60 struct vpx_image rawimg;
61 struct vpx_fixed_buf twopass_stats;
73 #define VP8F_ERROR_RESILIENT 0x00000001
74 #define VP8F_AUTO_ALT_REF 0x00000002
90 [VP8E_UPD_ENTROPY] =
"VP8E_UPD_ENTROPY",
91 [VP8E_UPD_REFERENCE] =
"VP8E_UPD_REFERENCE",
92 [VP8E_USE_REFERENCE] =
"VP8E_USE_REFERENCE",
93 [VP8E_SET_ROI_MAP] =
"VP8E_SET_ROI_MAP",
94 [VP8E_SET_ACTIVEMAP] =
"VP8E_SET_ACTIVEMAP",
95 [VP8E_SET_SCALEMODE] =
"VP8E_SET_SCALEMODE",
96 [VP8E_SET_CPUUSED] =
"VP8E_SET_CPUUSED",
97 [VP8E_SET_ENABLEAUTOALTREF] =
"VP8E_SET_ENABLEAUTOALTREF",
98 [VP8E_SET_NOISE_SENSITIVITY] =
"VP8E_SET_NOISE_SENSITIVITY",
99 [VP8E_SET_SHARPNESS] =
"VP8E_SET_SHARPNESS",
100 [VP8E_SET_STATIC_THRESHOLD] =
"VP8E_SET_STATIC_THRESHOLD",
101 [VP8E_SET_TOKEN_PARTITIONS] =
"VP8E_SET_TOKEN_PARTITIONS",
102 [VP8E_GET_LAST_QUANTIZER] =
"VP8E_GET_LAST_QUANTIZER",
103 [VP8E_SET_ARNR_MAXFRAMES] =
"VP8E_SET_ARNR_MAXFRAMES",
104 [VP8E_SET_ARNR_STRENGTH] =
"VP8E_SET_ARNR_STRENGTH",
105 [VP8E_SET_ARNR_TYPE] =
"VP8E_SET_ARNR_TYPE",
106 [VP8E_SET_CQ_LEVEL] =
"VP8E_SET_CQ_LEVEL",
107 [VP8E_SET_MAX_INTRA_BITRATE_PCT] =
"VP8E_SET_MAX_INTRA_BITRATE_PCT",
113 const char *error = vpx_codec_error(&ctx->
encoder);
114 const char *detail = vpx_codec_error_detail(&ctx->
encoder);
122 const struct vpx_codec_enc_cfg *cfg)
127 av_log(avctx, level,
"vpx_codec_enc_cfg\n");
128 av_log(avctx, level,
"generic settings\n"
129 " %*s%u\n %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
130 " %*s{%u/%u}\n %*s%u\n %*s%d\n %*s%u\n",
131 width,
"g_usage:", cfg->g_usage,
132 width,
"g_threads:", cfg->g_threads,
133 width,
"g_profile:", cfg->g_profile,
134 width,
"g_w:", cfg->g_w,
135 width,
"g_h:", cfg->g_h,
136 width,
"g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
137 width,
"g_error_resilient:", cfg->g_error_resilient,
138 width,
"g_pass:", cfg->g_pass,
139 width,
"g_lag_in_frames:", cfg->g_lag_in_frames);
140 av_log(avctx, level,
"rate control settings\n"
141 " %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
142 " %*s%d\n %*s%p(%zu)\n %*s%u\n",
143 width,
"rc_dropframe_thresh:", cfg->rc_dropframe_thresh,
144 width,
"rc_resize_allowed:", cfg->rc_resize_allowed,
145 width,
"rc_resize_up_thresh:", cfg->rc_resize_up_thresh,
146 width,
"rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
147 width,
"rc_end_usage:", cfg->rc_end_usage,
148 width,
"rc_twopass_stats_in:", cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
149 width,
"rc_target_bitrate:", cfg->rc_target_bitrate);
150 av_log(avctx, level,
"quantizer settings\n"
152 width,
"rc_min_quantizer:", cfg->rc_min_quantizer,
153 width,
"rc_max_quantizer:", cfg->rc_max_quantizer);
154 av_log(avctx, level,
"bitrate tolerance\n"
156 width,
"rc_undershoot_pct:", cfg->rc_undershoot_pct,
157 width,
"rc_overshoot_pct:", cfg->rc_overshoot_pct);
158 av_log(avctx, level,
"decoder buffer model\n"
159 " %*s%u\n %*s%u\n %*s%u\n",
160 width,
"rc_buf_sz:", cfg->rc_buf_sz,
161 width,
"rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
162 width,
"rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
163 av_log(avctx, level,
"2 pass rate control settings\n"
164 " %*s%u\n %*s%u\n %*s%u\n",
165 width,
"rc_2pass_vbr_bias_pct:", cfg->rc_2pass_vbr_bias_pct,
166 width,
"rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
167 width,
"rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
168 av_log(avctx, level,
"keyframing settings\n"
169 " %*s%d\n %*s%u\n %*s%u\n",
170 width,
"kf_mode:", cfg->kf_mode,
171 width,
"kf_min_dist:", cfg->kf_min_dist,
172 width,
"kf_max_dist:", cfg->kf_max_dist);
173 av_log(avctx, level,
"\n");
204 enum vp8e_enc_control_id
id,
int val)
214 res = vpx_codec_control(&ctx->
encoder,
id, val);
215 if (res != VPX_CODEC_OK) {
216 snprintf(buf,
sizeof(buf),
"Failed to set %s codec control",
221 return res == VPX_CODEC_OK ? 0 :
AVERROR(EINVAL);
228 vpx_codec_destroy(&ctx->
encoder);
237 const struct vpx_codec_iface *iface)
240 struct vpx_codec_enc_cfg enccfg;
247 if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
249 vpx_codec_err_to_string(res));
261 enccfg.g_w = avctx->
width;
262 enccfg.g_h = avctx->
height;
269 enccfg.g_pass = VPX_RC_FIRST_PASS;
271 enccfg.g_pass = VPX_RC_LAST_PASS;
273 enccfg.g_pass = VPX_RC_ONE_PASS;
277 enccfg.rc_end_usage = VPX_CBR;
279 enccfg.rc_end_usage = VPX_CQ;
285 if (enccfg.rc_end_usage == VPX_CQ) {
286 enccfg.rc_target_bitrate = 1000000;
288 avctx->
bit_rate = enccfg.rc_target_bitrate * 1000;
290 "Neither bitrate nor constrained quality specified, using default bitrate of %dkbit/sec\n",
291 enccfg.rc_target_bitrate);
295 if (avctx->
qmin >= 0)
296 enccfg.rc_min_quantizer = avctx->
qmin;
298 enccfg.rc_max_quantizer = avctx->
qmax;
300 if (enccfg.rc_end_usage == VPX_CQ) {
301 if (ctx->
crf < enccfg.rc_min_quantizer || ctx->
crf > enccfg.rc_max_quantizer) {
303 "CQ level must be between minimum and maximum quantizer value (%d-%d)\n",
304 enccfg.rc_min_quantizer, enccfg.rc_max_quantizer);
314 enccfg.rc_2pass_vbr_minsection_pct =
317 enccfg.rc_2pass_vbr_maxsection_pct =
324 enccfg.rc_buf_initial_sz =
326 enccfg.rc_buf_optimal_sz = enccfg.rc_buf_sz * 5 / 6;
333 enccfg.kf_max_dist = avctx->
gop_size;
335 if (enccfg.g_pass == VPX_RC_FIRST_PASS)
336 enccfg.g_lag_in_frames = 0;
337 else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
349 "Stat buffer alloc (%zu bytes) failed\n",
355 if (decode_size < 0) {
368 enccfg.g_profile = avctx->
profile;
374 res = vpx_codec_enc_init(&ctx->
encoder, iface, &enccfg, flags);
375 if (res != VPX_CODEC_OK) {
417 const struct vpx_codec_cx_pkt *src,
420 dst->
pts = src->data.frame.pts;
421 dst->
duration = src->data.frame.duration;
422 dst->
flags = src->data.frame.flags;
423 dst->
sz = src->data.frame.sz;
424 dst->
buf = src->data.frame.buf;
427 if (!(dst->
flags & VPX_FRAME_IS_INVISIBLE)) {
435 memcpy(dst->
sse, ctx->
sse,
sizeof(dst->
sse));
457 coded_frame->
pts = cx_frame->
pts;
469 coded_frame->
error[0] = cx_frame->
sse[1];
470 coded_frame->
error[1] = cx_frame->
sse[2];
471 coded_frame->
error[2] = cx_frame->
sse[3];
472 coded_frame->
error[3] = 0;
473 for (i = 0; i < 4; ++i) {
496 const struct vpx_codec_cx_pkt *
pkt;
497 const void *iter =
NULL;
503 size =
storeframe(avctx, cx_frame, pkt_out, coded_frame);
512 while ((pkt = vpx_codec_get_cx_data(&ctx->
encoder, &iter))) {
514 case VPX_CODEC_CX_FRAME_PKT:
522 size =
storeframe(avctx, &cx_frame, pkt_out, coded_frame);
531 "Frame queue element alloc failed\n");
537 if (!cx_frame->
buf) {
539 "Data buffer alloc (%zu bytes) failed\n",
544 memcpy(cx_frame->
buf, pkt->data.frame.buf, pkt->data.frame.sz);
548 case VPX_CODEC_STATS_PKT: {
551 stats->sz + pkt->data.twopass_stats.sz);
556 memcpy((
uint8_t*)stats->buf + stats->sz,
557 pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
558 stats->sz += pkt->data.twopass_stats.sz;
561 case VPX_CODEC_PSNR_PKT:
563 ctx->
sse[0] = pkt->data.psnr.sse[0];
564 ctx->
sse[1] = pkt->data.psnr.sse[1];
565 ctx->
sse[2] = pkt->data.psnr.sse[2];
566 ctx->
sse[3] = pkt->data.psnr.sse[3];
569 case VPX_CODEC_CUSTOM_PKT:
582 struct vpx_image *rawimg =
NULL;
583 int64_t timestamp = 0;
585 vpx_enc_frame_flags_t
flags = 0;
589 rawimg->planes[VPX_PLANE_Y] = frame->
data[0];
590 rawimg->planes[VPX_PLANE_U] = frame->
data[1];
591 rawimg->planes[VPX_PLANE_V] = frame->
data[2];
592 rawimg->stride[VPX_PLANE_Y] = frame->
linesize[0];
593 rawimg->stride[VPX_PLANE_U] = frame->
linesize[1];
594 rawimg->stride[VPX_PLANE_V] = frame->
linesize[2];
595 timestamp = frame->
pts;
597 flags |= VPX_EFLAG_FORCE_KF;
600 res = vpx_codec_encode(&ctx->
encoder, rawimg, timestamp,
602 if (res != VPX_CODEC_OK) {
621 *got_packet = !!coded_size;
625 #define OFFSET(x) offsetof(VP8Context, x)
626 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
628 {
"cpu-used",
"Quality/Speed ratio modifier",
OFFSET(cpu_used),
AV_OPT_TYPE_INT, {.i64 = INT_MIN}, INT_MIN, INT_MAX,
VE},
629 {
"auto-alt-ref",
"Enable use of alternate reference "
631 {
"lag-in-frames",
"Number of frames to look ahead for "
633 {
"arnr-maxframes",
"altref noise reduction max frame count",
OFFSET(arnr_max_frames),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX,
VE},
634 {
"arnr-strength",
"altref noise reduction filter strength",
OFFSET(arnr_strength),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX,
VE},
635 {
"arnr-type",
"altref noise reduction filter type",
OFFSET(arnr_type),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX,
VE,
"arnr_type"},
639 {
"deadline",
"Time to spend encoding, in microseconds.",
OFFSET(deadline),
AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX,
VE,
"quality"},
643 {
"error-resilient",
"Error resilience configuration",
OFFSET(error_resilient),
AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX,
VE,
"er"},
644 {
"max-intra-rate",
"Maximum I-frame bitrate (pct) 0=unlimited",
OFFSET(max_intra_rate),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX,
VE},
645 #ifdef VPX_ERROR_RESILIENT_DEFAULT
646 {
"default",
"Improve resiliency against losses of whole frames", 0,
AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0,
VE,
"er"},
647 {
"partitions",
"The frame partitions are independently decodable "
648 "by the bool decoder, meaning that partitions can be decoded even "
649 "though earlier partitions have been lost. Note that intra predicition"
650 " is still done over the partition boundary.", 0,
AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0,
VE,
"er"},
653 {
"quality",
"", offsetof(
VP8Context, deadline),
AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX,
VE,
"quality"},
654 {
"vp8flags",
"", offsetof(
VP8Context,
flags),
FF_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX,
VE,
"flags"},
657 {
"arnr_max_frames",
"altref noise reduction max frame count", offsetof(
VP8Context, arnr_max_frames),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15,
VE},
658 {
"arnr_strength",
"altref noise reduction filter strength", offsetof(
VP8Context, arnr_strength),
AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6,
VE},
660 {
"rc_lookahead",
"Number of frames to look ahead for alternate reference frame selection", offsetof(
VP8Context, lag_in_frames),
AV_OPT_TYPE_INT, {.i64 = 25}, 0, 25,
VE},
669 {
"keyint_min",
"-1" },
673 #if CONFIG_LIBVPX_VP8_ENCODER
676 return vpx_init(avctx, &vpx_codec_vp8_cx_algo);
679 static const AVClass class_vp8 = {
686 AVCodec ff_libvpx_vp8_encoder = {
697 .priv_class = &class_vp8,
702 #if CONFIG_LIBVPX_VP9_ENCODER
705 return vpx_init(avctx, &vpx_codec_vp9_cx_algo);
708 static const AVClass class_vp9 = {
715 AVCodec ff_libvpx_vp9_encoder = {
716 .
name =
"libvpx-vp9",
726 .priv_class = &class_vp9,