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> 
   61 typedef struct VP8EncoderContext {
 
   63     struct vpx_codec_ctx encoder;
 
   64     struct vpx_image rawimg;
 
   65     struct vpx_codec_ctx encoder_alpha;
 
   66     struct vpx_image rawimg_alpha;
 
   68     struct vpx_fixed_buf twopass_stats;
 
   80 #define VP8F_ERROR_RESILIENT 0x00000001  
   81 #define VP8F_AUTO_ALT_REF    0x00000002 
 
  103     [VP8E_UPD_ENTROPY]           = 
"VP8E_UPD_ENTROPY",
 
  104     [VP8E_UPD_REFERENCE]         = 
"VP8E_UPD_REFERENCE",
 
  105     [VP8E_USE_REFERENCE]         = 
"VP8E_USE_REFERENCE",
 
  106     [VP8E_SET_ROI_MAP]           = 
"VP8E_SET_ROI_MAP",
 
  107     [VP8E_SET_ACTIVEMAP]         = 
"VP8E_SET_ACTIVEMAP",
 
  108     [VP8E_SET_SCALEMODE]         = 
"VP8E_SET_SCALEMODE",
 
  109     [VP8E_SET_CPUUSED]           = 
"VP8E_SET_CPUUSED",
 
  110     [VP8E_SET_ENABLEAUTOALTREF]  = 
"VP8E_SET_ENABLEAUTOALTREF",
 
  111     [VP8E_SET_NOISE_SENSITIVITY] = 
"VP8E_SET_NOISE_SENSITIVITY",
 
  112     [VP8E_SET_SHARPNESS]         = 
"VP8E_SET_SHARPNESS",
 
  113     [VP8E_SET_STATIC_THRESHOLD]  = 
"VP8E_SET_STATIC_THRESHOLD",
 
  114     [VP8E_SET_TOKEN_PARTITIONS]  = 
"VP8E_SET_TOKEN_PARTITIONS",
 
  115     [VP8E_GET_LAST_QUANTIZER]    = 
"VP8E_GET_LAST_QUANTIZER",
 
  116     [VP8E_SET_ARNR_MAXFRAMES]    = 
"VP8E_SET_ARNR_MAXFRAMES",
 
  117     [VP8E_SET_ARNR_STRENGTH]     = 
"VP8E_SET_ARNR_STRENGTH",
 
  118     [VP8E_SET_ARNR_TYPE]         = 
"VP8E_SET_ARNR_TYPE",
 
  119     [VP8E_SET_CQ_LEVEL]          = 
"VP8E_SET_CQ_LEVEL",
 
  120     [VP8E_SET_MAX_INTRA_BITRATE_PCT] = 
"VP8E_SET_MAX_INTRA_BITRATE_PCT",
 
  121 #if CONFIG_LIBVPX_VP9_ENCODER 
  122     [VP9E_SET_LOSSLESS]                = 
"VP9E_SET_LOSSLESS",
 
  123     [VP9E_SET_TILE_COLUMNS]            = 
"VP9E_SET_TILE_COLUMNS",
 
  124     [VP9E_SET_TILE_ROWS]               = 
"VP9E_SET_TILE_ROWS",
 
  125     [VP9E_SET_FRAME_PARALLEL_DECODING] = 
"VP9E_SET_FRAME_PARALLEL_DECODING",
 
  132     const char *error  = vpx_codec_error(&ctx->
encoder);
 
  133     const char *detail = vpx_codec_error_detail(&ctx->
encoder);
 
  141                                  const struct vpx_codec_enc_cfg *cfg)
 
  146     av_log(avctx, level, 
"vpx_codec_enc_cfg\n");
 
  147     av_log(avctx, level, 
"generic settings\n" 
  148            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n" 
  149            "  %*s{%u/%u}\n  %*s%u\n  %*s%d\n  %*s%u\n",
 
  150            width, 
"g_usage:",           cfg->g_usage,
 
  151            width, 
"g_threads:",         cfg->g_threads,
 
  152            width, 
"g_profile:",         cfg->g_profile,
 
  153            width, 
"g_w:",               cfg->g_w,
 
  154            width, 
"g_h:",               cfg->g_h,
 
  155            width, 
"g_timebase:",        cfg->g_timebase.num, cfg->g_timebase.den,
 
  156            width, 
"g_error_resilient:", cfg->g_error_resilient,
 
  157            width, 
"g_pass:",            cfg->g_pass,
 
  158            width, 
"g_lag_in_frames:",   cfg->g_lag_in_frames);
 
  159     av_log(avctx, level, 
"rate control settings\n" 
  160            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n" 
  162            width, 
"rc_dropframe_thresh:",   cfg->rc_dropframe_thresh,
 
  163            width, 
"rc_resize_allowed:",     cfg->rc_resize_allowed,
 
  164            width, 
"rc_resize_up_thresh:",   cfg->rc_resize_up_thresh,
 
  165            width, 
"rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
 
  166            width, 
"rc_end_usage:",          cfg->rc_end_usage,
 
  167            width, 
"rc_twopass_stats_in:",   cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
 
  168            width, 
"rc_target_bitrate:",     cfg->rc_target_bitrate);
 
  169     av_log(avctx, level, 
"quantizer settings\n" 
  171            width, 
"rc_min_quantizer:", cfg->rc_min_quantizer,
 
  172            width, 
"rc_max_quantizer:", cfg->rc_max_quantizer);
 
  173     av_log(avctx, level, 
"bitrate tolerance\n" 
  175            width, 
"rc_undershoot_pct:", cfg->rc_undershoot_pct,
 
  176            width, 
"rc_overshoot_pct:",  cfg->rc_overshoot_pct);
 
  177     av_log(avctx, level, 
"decoder buffer model\n" 
  178             "  %*s%u\n  %*s%u\n  %*s%u\n",
 
  179             width, 
"rc_buf_sz:",         cfg->rc_buf_sz,
 
  180             width, 
"rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
 
  181             width, 
"rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
 
  182     av_log(avctx, level, 
"2 pass rate control settings\n" 
  183            "  %*s%u\n  %*s%u\n  %*s%u\n",
 
  184            width, 
"rc_2pass_vbr_bias_pct:",       cfg->rc_2pass_vbr_bias_pct,
 
  185            width, 
"rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
 
  186            width, 
"rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
 
  187     av_log(avctx, level, 
"keyframing settings\n" 
  188            "  %*s%d\n  %*s%u\n  %*s%u\n",
 
  189            width, 
"kf_mode:",     cfg->kf_mode,
 
  190            width, 
"kf_min_dist:", cfg->kf_min_dist,
 
  191            width, 
"kf_max_dist:", cfg->kf_max_dist);
 
  192     av_log(avctx, level, 
"\n");
 
  202     cx_frame->
next = NULL;
 
  225                                 enum vp8e_enc_control_id 
id, 
int val)
 
  235     res = vpx_codec_control(&ctx->
encoder, 
id, val);
 
  236     if (res != VPX_CODEC_OK) {
 
  237         snprintf(buf, 
sizeof(buf), 
"Failed to set %s codec control",
 
  242     return res == VPX_CODEC_OK ? 0 : 
AVERROR(EINVAL);
 
  249     vpx_codec_destroy(&ctx->
encoder);
 
  260                             const struct vpx_codec_iface *iface)
 
  263     struct vpx_codec_enc_cfg enccfg;
 
  264     struct vpx_codec_enc_cfg enccfg_alpha;
 
  274     if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
 
  276                vpx_codec_err_to_string(res));
 
  288     enccfg.g_w            = avctx->
width;
 
  289     enccfg.g_h            = avctx->
height;
 
  296         enccfg.g_pass = VPX_RC_FIRST_PASS;
 
  298         enccfg.g_pass = VPX_RC_LAST_PASS;
 
  300         enccfg.g_pass = VPX_RC_ONE_PASS;
 
  304         enccfg.rc_end_usage = VPX_CBR;
 
  306         enccfg.rc_end_usage = VPX_CQ;
 
  312         if (enccfg.rc_end_usage == VPX_CQ) {
 
  313             enccfg.rc_target_bitrate = 1000000;
 
  315             avctx->
bit_rate = enccfg.rc_target_bitrate * 1000;
 
  317                    "Neither bitrate nor constrained quality specified, using default bitrate of %dkbit/sec\n",
 
  318                    enccfg.rc_target_bitrate);
 
  322     if (avctx->
qmin >= 0)
 
  323         enccfg.rc_min_quantizer = avctx->
qmin;
 
  324     if (avctx->
qmax >= 0)
 
  325         enccfg.rc_max_quantizer = avctx->
qmax;
 
  327     if (enccfg.rc_end_usage == VPX_CQ) {
 
  328         if (ctx->
crf < enccfg.rc_min_quantizer || ctx->
crf > enccfg.rc_max_quantizer) {
 
  330                        "CQ level must be between minimum and maximum quantizer value (%d-%d)\n",
 
  331                        enccfg.rc_min_quantizer, enccfg.rc_max_quantizer);
 
  341         enccfg.rc_2pass_vbr_minsection_pct     =
 
  344         enccfg.rc_2pass_vbr_maxsection_pct =
 
  351         enccfg.rc_buf_initial_sz =
 
  353     enccfg.rc_buf_optimal_sz     = enccfg.rc_buf_sz * 5 / 6;
 
  360         enccfg.kf_max_dist = avctx->
gop_size;
 
  362     if (enccfg.g_pass == VPX_RC_FIRST_PASS)
 
  363         enccfg.g_lag_in_frames = 0;
 
  364     else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
 
  382         if (decode_size < 0) {
 
  395        enccfg.g_profile = avctx->
profile;
 
  401     res = vpx_codec_enc_init(&ctx->
encoder, iface, &enccfg, flags);
 
  402     if (res != VPX_CODEC_OK) {
 
  408         enccfg_alpha = enccfg;
 
  409         res = vpx_codec_enc_init(&ctx->
encoder_alpha, iface, &enccfg_alpha, flags);
 
  410         if (res != VPX_CODEC_OK) {
 
  437 #if CONFIG_LIBVPX_VP9_ENCODER 
  470                              const struct vpx_codec_cx_pkt *
src,
 
  471                              const struct vpx_codec_cx_pkt *src_alpha,
 
  474     dst->
pts      = src->data.frame.pts;
 
  475     dst->
duration = src->data.frame.duration;
 
  476     dst->
flags    = src->data.frame.flags;
 
  477     dst->
sz       = src->data.frame.sz;
 
  478     dst->
buf      = src->data.frame.buf;
 
  481     if (!(dst->
flags & VPX_FRAME_IS_INVISIBLE)) {
 
  489             memcpy(dst->
sse, ctx->
sse, 
sizeof(dst->
sse));
 
  496         dst->
buf_alpha = src_alpha->data.frame.buf;
 
  497         dst->
sz_alpha = src_alpha->data.frame.sz;
 
  520         coded_frame->
pts       = cx_frame->
pts;
 
  532             coded_frame->
error[0] = cx_frame->
sse[1];
 
  533             coded_frame->
error[1] = cx_frame->
sse[2];
 
  534             coded_frame->
error[2] = cx_frame->
sse[3];
 
  535             coded_frame->
error[3] = 0;    
 
  536             for (i = 0; i < 4; ++i) {
 
  545             if(side_data == NULL) {
 
  571     const struct vpx_codec_cx_pkt *
pkt;
 
  572     const struct vpx_codec_cx_pkt *pkt_alpha = NULL;
 
  573     const void *iter = NULL;
 
  574     const void *iter_alpha = NULL;
 
  580         size = 
storeframe(avctx, cx_frame, pkt_out, coded_frame);
 
  589     while ((pkt = vpx_codec_get_cx_data(&ctx->
encoder, &iter)) &&
 
  593         case VPX_CODEC_CX_FRAME_PKT:
 
  600                 cx_pktcpy(&cx_frame, pkt, pkt_alpha, ctx);
 
  601                 size = 
storeframe(avctx, &cx_frame, pkt_out, coded_frame);
 
  610                            "Frame queue element alloc failed\n");
 
  613                 cx_pktcpy(cx_frame, pkt, pkt_alpha, ctx);
 
  616                 if (!cx_frame->
buf) {
 
  623                 memcpy(cx_frame->
buf, pkt->data.frame.buf, pkt->data.frame.sz);
 
  633                     memcpy(cx_frame->
buf_alpha, pkt_alpha->data.frame.buf, pkt_alpha->data.frame.sz);
 
  638         case VPX_CODEC_STATS_PKT: {
 
  643                                    pkt->data.twopass_stats.sz)) < 0) {
 
  648             memcpy((
uint8_t*)stats->buf + stats->sz,
 
  649                    pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
 
  650             stats->sz += pkt->data.twopass_stats.sz;
 
  653         case VPX_CODEC_PSNR_PKT:
 
  655             ctx->
sse[0] = pkt->data.psnr.sse[0];
 
  656             ctx->
sse[1] = pkt->data.psnr.sse[1];
 
  657             ctx->
sse[2] = pkt->data.psnr.sse[2];
 
  658             ctx->
sse[3] = pkt->data.psnr.sse[3];
 
  661         case VPX_CODEC_CUSTOM_PKT:
 
  674     struct vpx_image *rawimg = NULL;
 
  675     struct vpx_image *rawimg_alpha = NULL;
 
  676     int64_t timestamp = 0;
 
  678     vpx_enc_frame_flags_t 
flags = 0;
 
  682         rawimg->planes[VPX_PLANE_Y] = frame->
data[0];
 
  683         rawimg->planes[VPX_PLANE_U] = frame->
data[1];
 
  684         rawimg->planes[VPX_PLANE_V] = frame->
data[2];
 
  685         rawimg->stride[VPX_PLANE_Y] = frame->
linesize[0];
 
  686         rawimg->stride[VPX_PLANE_U] = frame->
linesize[1];
 
  687         rawimg->stride[VPX_PLANE_V] = frame->
linesize[2];
 
  691             rawimg_alpha->planes[VPX_PLANE_Y] = frame->
data[3];
 
  694             rawimg_alpha->planes[VPX_PLANE_U] = u_plane;
 
  697             rawimg_alpha->planes[VPX_PLANE_V] = v_plane;
 
  698             rawimg_alpha->stride[VPX_PLANE_Y] = frame->
linesize[0];
 
  699             rawimg_alpha->stride[VPX_PLANE_U] = frame->
linesize[1];
 
  700             rawimg_alpha->stride[VPX_PLANE_V] = frame->
linesize[2];
 
  702         timestamp                   = frame->
pts;
 
  704             flags |= VPX_EFLAG_FORCE_KF;
 
  707     res = vpx_codec_encode(&ctx->
encoder, rawimg, timestamp,
 
  709     if (res != VPX_CODEC_OK) {
 
  715         res = vpx_codec_encode(&ctx->
encoder_alpha, rawimg_alpha, timestamp,
 
  717         if (res != VPX_CODEC_OK) {
 
  739         av_free(rawimg_alpha->planes[VPX_PLANE_U]);
 
  740         av_free(rawimg_alpha->planes[VPX_PLANE_V]);
 
  743     *got_packet = !!coded_size;
 
  747 #define OFFSET(x) offsetof(VP8Context, x) 
  748 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM 
  750 #ifndef VPX_ERROR_RESILIENT_DEFAULT 
  751 #define VPX_ERROR_RESILIENT_DEFAULT 1 
  752 #define VPX_ERROR_RESILIENT_PARTITIONS 2 
  755 #define COMMON_OPTIONS \ 
  756     { "cpu-used",        "Quality/Speed ratio modifier",           OFFSET(cpu_used),        AV_OPT_TYPE_INT, {.i64 = 1},       -16,     16,      VE}, \ 
  757     { "auto-alt-ref",    "Enable use of alternate reference " \ 
  758                          "frames (2-pass only)",                   OFFSET(auto_alt_ref),    AV_OPT_TYPE_INT, {.i64 = -1},      -1,      1,       VE}, \ 
  759     { "lag-in-frames",   "Number of frames to look ahead for " \ 
  760                          "alternate reference frame selection",    OFFSET(lag_in_frames),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \ 
  761     { "arnr-maxframes",  "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \ 
  762     { "arnr-strength",   "altref noise reduction filter strength", OFFSET(arnr_strength),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \ 
  763     { "arnr-type",       "altref noise reduction filter type",     OFFSET(arnr_type),       AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE, "arnr_type"}, \ 
  764     { "backward",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \ 
  765     { "forward",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \ 
  766     { "centered",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \ 
  767     { "deadline",        "Time to spend encoding, in microseconds.", OFFSET(deadline),      AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \ 
  768     { "best",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \ 
  769     { "good",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \ 
  770     { "realtime",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME},     0, 0, VE, "quality"}, \ 
  771     { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, VE, "er"}, \ 
  772     { "max-intra-rate",  "Maximum I-frame bitrate (pct) 0=unlimited",  OFFSET(max_intra_rate),  AV_OPT_TYPE_INT,  {.i64 = -1}, -1,      INT_MAX, VE}, \ 
  773     { "default",         "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"}, \ 
  774     { "partitions",      "The frame partitions are independently decodable " \ 
  775                          "by the bool decoder, meaning that partitions can be decoded even " \ 
  776                          "though earlier partitions have been lost. Note that intra predicition" \ 
  777                          " is still done over the partition boundary.",       0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"}, \ 
  778     { "crf",              "Select the quality for constant quality mode", offsetof(VP8Context, crf), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 63, VE }, \ 
  780 #define LEGACY_OPTIONS \ 
  781     {"speed", "", offsetof(VP8Context, cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \ 
  782     {"quality", "", offsetof(VP8Context, deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \ 
  783     {"vp8flags", "", offsetof(VP8Context, flags), FF_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX, VE, "flags"}, \ 
  784     {"error_resilient", "enable error resilience", 0, FF_OPT_TYPE_CONST, {.dbl = VP8F_ERROR_RESILIENT}, INT_MIN, INT_MAX, VE, "flags"}, \ 
  785     {"altref", "enable use of alternate reference frames (VP8/2-pass only)", 0, FF_OPT_TYPE_CONST, {.dbl = VP8F_AUTO_ALT_REF}, INT_MIN, INT_MAX, VE, "flags"}, \ 
  786     {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VP8Context, arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15, VE}, \ 
  787     {"arnr_strength", "altref noise reduction filter strength", offsetof(VP8Context, arnr_strength), AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6, VE}, \ 
  788     {"arnr_type", "altref noise reduction filter type", offsetof(VP8Context, arnr_type), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 3, VE}, \ 
  789     {"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}, \ 
  791 #if CONFIG_LIBVPX_VP8_ENCODER 
  792 static const AVOption vp8_options[] = {
 
  799 #if CONFIG_LIBVPX_VP9_ENCODER 
  800 static const AVOption vp9_options[] = {
 
  803     { 
"tile-columns",    
"Number of tile columns to use, log2",         
OFFSET(tile_columns),    
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 6, 
VE},
 
  804     { 
"tile-rows",       
"Number of tile rows to use, log2",            
OFFSET(tile_rows),       
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2, 
VE},
 
  805     { 
"frame-parallel",  
"Enable frame parallel decodability features", 
OFFSET(frame_parallel),  
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, 
VE},
 
  811 #undef COMMON_OPTIONS 
  812 #undef LEGACY_OPTIONS 
  818     { 
"keyint_min",       
"-1" },
 
  822 #if CONFIG_LIBVPX_VP8_ENCODER 
  825     return vpx_init(avctx, &vpx_codec_vp8_cx_algo);
 
  828 static const AVClass class_vp8 = {
 
  831     .option     = vp8_options,
 
  835 AVCodec ff_libvpx_vp8_encoder = {
 
  846     .priv_class     = &class_vp8,
 
  851 #if CONFIG_LIBVPX_VP9_ENCODER 
  854     return vpx_init(avctx, &vpx_codec_vp9_cx_algo);
 
  857 static const AVClass class_vp9 = {
 
  860     .option     = vp9_options,
 
  864 AVCodec ff_libvpx_vp9_encoder = {
 
  865     .
name           = 
"libvpx-vp9",
 
  875     .priv_class     = &class_vp9,