]> git.sesse.net Git - ffmpeg/blob - libavcodec/libvpxenc.c
Merge commit '5f74bd31a9bd1ac7655103b11743c12d38e0419f'
[ffmpeg] / libavcodec / libvpxenc.c
1 /*
2  * Copyright (c) 2010, Google, Inc.
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * VP8/9 encoder support via libvpx
24  */
25
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>
30
31 #include "avcodec.h"
32 #include "internal.h"
33 #include "libavutil/avassert.h"
34 #include "libvpx.h"
35 #include "profiles.h"
36 #include "libavutil/base64.h"
37 #include "libavutil/common.h"
38 #include "libavutil/internal.h"
39 #include "libavutil/intreadwrite.h"
40 #include "libavutil/mathematics.h"
41 #include "libavutil/opt.h"
42
43 /**
44  * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
45  * One encoded frame returned from the library.
46  */
47 struct FrameListData {
48     void *buf;                       /**< compressed data buffer */
49     size_t sz;                       /**< length of compressed data */
50     void *buf_alpha;
51     size_t sz_alpha;
52     int64_t pts;                     /**< time stamp to show frame
53                                           (in timebase units) */
54     unsigned long duration;          /**< duration to show frame
55                                           (in timebase units) */
56     uint32_t flags;                  /**< flags for this frame */
57     uint64_t sse[4];
58     int have_sse;                    /**< true if we have pending sse[] */
59     uint64_t frame_number;
60     struct FrameListData *next;
61 };
62
63 typedef struct VPxEncoderContext {
64     AVClass *class;
65     struct vpx_codec_ctx encoder;
66     struct vpx_image rawimg;
67     struct vpx_codec_ctx encoder_alpha;
68     struct vpx_image rawimg_alpha;
69     uint8_t is_alpha;
70     struct vpx_fixed_buf twopass_stats;
71     int deadline; //i.e., RT/GOOD/BEST
72     uint64_t sse[4];
73     int have_sse; /**< true if we have pending sse[] */
74     uint64_t frame_number;
75     struct FrameListData *coded_frame_list;
76
77     int cpu_used;
78     /**
79      * VP8 specific flags, see VP8F_* below.
80      */
81     int flags;
82 #define VP8F_ERROR_RESILIENT 0x00000001 ///< Enable measures appropriate for streaming over lossy links
83 #define VP8F_AUTO_ALT_REF    0x00000002 ///< Enable automatic alternate reference frame generation
84
85     int auto_alt_ref;
86
87     int arnr_max_frames;
88     int arnr_strength;
89     int arnr_type;
90
91     int tune;
92
93     int lag_in_frames;
94     int error_resilient;
95     int crf;
96     int static_thresh;
97     int max_intra_rate;
98     int rc_undershoot_pct;
99     int rc_overshoot_pct;
100
101     // VP9-only
102     int lossless;
103     int tile_columns;
104     int tile_rows;
105     int frame_parallel;
106     int aq_mode;
107     int drop_threshold;
108     int noise_sensitivity;
109     int vpx_cs;
110 } VPxContext;
111
112 /** String mappings for enum vp8e_enc_control_id */
113 static const char *const ctlidstr[] = {
114     [VP8E_SET_CPUUSED]           = "VP8E_SET_CPUUSED",
115     [VP8E_SET_ENABLEAUTOALTREF]  = "VP8E_SET_ENABLEAUTOALTREF",
116     [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
117     [VP8E_SET_STATIC_THRESHOLD]  = "VP8E_SET_STATIC_THRESHOLD",
118     [VP8E_SET_TOKEN_PARTITIONS]  = "VP8E_SET_TOKEN_PARTITIONS",
119     [VP8E_SET_ARNR_MAXFRAMES]    = "VP8E_SET_ARNR_MAXFRAMES",
120     [VP8E_SET_ARNR_STRENGTH]     = "VP8E_SET_ARNR_STRENGTH",
121     [VP8E_SET_ARNR_TYPE]         = "VP8E_SET_ARNR_TYPE",
122     [VP8E_SET_TUNING]            = "VP8E_SET_TUNING",
123     [VP8E_SET_CQ_LEVEL]          = "VP8E_SET_CQ_LEVEL",
124     [VP8E_SET_MAX_INTRA_BITRATE_PCT] = "VP8E_SET_MAX_INTRA_BITRATE_PCT",
125 #if CONFIG_LIBVPX_VP9_ENCODER
126     [VP9E_SET_LOSSLESS]                = "VP9E_SET_LOSSLESS",
127     [VP9E_SET_TILE_COLUMNS]            = "VP9E_SET_TILE_COLUMNS",
128     [VP9E_SET_TILE_ROWS]               = "VP9E_SET_TILE_ROWS",
129     [VP9E_SET_FRAME_PARALLEL_DECODING] = "VP9E_SET_FRAME_PARALLEL_DECODING",
130     [VP9E_SET_AQ_MODE]                 = "VP9E_SET_AQ_MODE",
131 #if VPX_ENCODER_ABI_VERSION > 8
132     [VP9E_SET_COLOR_SPACE]             = "VP9E_SET_COLOR_SPACE",
133 #endif
134 #if VPX_ENCODER_ABI_VERSION >= 11
135     [VP9E_SET_COLOR_RANGE]             = "VP9E_SET_COLOR_RANGE",
136 #endif
137 #endif
138 };
139
140 static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)
141 {
142     VPxContext *ctx = avctx->priv_data;
143     const char *error  = vpx_codec_error(&ctx->encoder);
144     const char *detail = vpx_codec_error_detail(&ctx->encoder);
145
146     av_log(avctx, AV_LOG_ERROR, "%s: %s\n", desc, error);
147     if (detail)
148         av_log(avctx, AV_LOG_ERROR, "  Additional information: %s\n", detail);
149 }
150
151 static av_cold void dump_enc_cfg(AVCodecContext *avctx,
152                                  const struct vpx_codec_enc_cfg *cfg)
153 {
154     int width = -30;
155     int level = AV_LOG_DEBUG;
156
157     av_log(avctx, level, "vpx_codec_enc_cfg\n");
158     av_log(avctx, level, "generic settings\n"
159            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n"
160 #if CONFIG_LIBVPX_VP9_ENCODER && defined(VPX_IMG_FMT_HIGHBITDEPTH)
161            "  %*s%u\n  %*s%u\n"
162 #endif
163            "  %*s{%u/%u}\n  %*s%u\n  %*s%d\n  %*s%u\n",
164            width, "g_usage:",           cfg->g_usage,
165            width, "g_threads:",         cfg->g_threads,
166            width, "g_profile:",         cfg->g_profile,
167            width, "g_w:",               cfg->g_w,
168            width, "g_h:",               cfg->g_h,
169 #if CONFIG_LIBVPX_VP9_ENCODER && defined(VPX_IMG_FMT_HIGHBITDEPTH)
170            width, "g_bit_depth:",       cfg->g_bit_depth,
171            width, "g_input_bit_depth:", cfg->g_input_bit_depth,
172 #endif
173            width, "g_timebase:",        cfg->g_timebase.num, cfg->g_timebase.den,
174            width, "g_error_resilient:", cfg->g_error_resilient,
175            width, "g_pass:",            cfg->g_pass,
176            width, "g_lag_in_frames:",   cfg->g_lag_in_frames);
177     av_log(avctx, level, "rate control settings\n"
178            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n"
179            "  %*s%d\n  %*s%p(%"SIZE_SPECIFIER")\n  %*s%u\n",
180            width, "rc_dropframe_thresh:",   cfg->rc_dropframe_thresh,
181            width, "rc_resize_allowed:",     cfg->rc_resize_allowed,
182            width, "rc_resize_up_thresh:",   cfg->rc_resize_up_thresh,
183            width, "rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
184            width, "rc_end_usage:",          cfg->rc_end_usage,
185            width, "rc_twopass_stats_in:",   cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
186            width, "rc_target_bitrate:",     cfg->rc_target_bitrate);
187     av_log(avctx, level, "quantizer settings\n"
188            "  %*s%u\n  %*s%u\n",
189            width, "rc_min_quantizer:", cfg->rc_min_quantizer,
190            width, "rc_max_quantizer:", cfg->rc_max_quantizer);
191     av_log(avctx, level, "bitrate tolerance\n"
192            "  %*s%u\n  %*s%u\n",
193            width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
194            width, "rc_overshoot_pct:",  cfg->rc_overshoot_pct);
195     av_log(avctx, level, "decoder buffer model\n"
196             "  %*s%u\n  %*s%u\n  %*s%u\n",
197             width, "rc_buf_sz:",         cfg->rc_buf_sz,
198             width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
199             width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
200     av_log(avctx, level, "2 pass rate control settings\n"
201            "  %*s%u\n  %*s%u\n  %*s%u\n",
202            width, "rc_2pass_vbr_bias_pct:",       cfg->rc_2pass_vbr_bias_pct,
203            width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
204            width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
205     av_log(avctx, level, "keyframing settings\n"
206            "  %*s%d\n  %*s%u\n  %*s%u\n",
207            width, "kf_mode:",     cfg->kf_mode,
208            width, "kf_min_dist:", cfg->kf_min_dist,
209            width, "kf_max_dist:", cfg->kf_max_dist);
210     av_log(avctx, level, "\n");
211 }
212
213 static void coded_frame_add(void *list, struct FrameListData *cx_frame)
214 {
215     struct FrameListData **p = list;
216
217     while (*p)
218         p = &(*p)->next;
219     *p = cx_frame;
220     cx_frame->next = NULL;
221 }
222
223 static av_cold void free_coded_frame(struct FrameListData *cx_frame)
224 {
225     av_freep(&cx_frame->buf);
226     if (cx_frame->buf_alpha)
227         av_freep(&cx_frame->buf_alpha);
228     av_freep(&cx_frame);
229 }
230
231 static av_cold void free_frame_list(struct FrameListData *list)
232 {
233     struct FrameListData *p = list;
234
235     while (p) {
236         list = list->next;
237         free_coded_frame(p);
238         p = list;
239     }
240 }
241
242 static av_cold int codecctl_int(AVCodecContext *avctx,
243                                 enum vp8e_enc_control_id id, int val)
244 {
245     VPxContext *ctx = avctx->priv_data;
246     char buf[80];
247     int width = -30;
248     int res;
249
250     snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
251     av_log(avctx, AV_LOG_DEBUG, "  %*s%d\n", width, buf, val);
252
253     res = vpx_codec_control(&ctx->encoder, id, val);
254     if (res != VPX_CODEC_OK) {
255         snprintf(buf, sizeof(buf), "Failed to set %s codec control",
256                  ctlidstr[id]);
257         log_encoder_error(avctx, buf);
258     }
259
260     return res == VPX_CODEC_OK ? 0 : AVERROR(EINVAL);
261 }
262
263 static av_cold int vpx_free(AVCodecContext *avctx)
264 {
265     VPxContext *ctx = avctx->priv_data;
266
267     vpx_codec_destroy(&ctx->encoder);
268     if (ctx->is_alpha)
269         vpx_codec_destroy(&ctx->encoder_alpha);
270     av_freep(&ctx->twopass_stats.buf);
271     av_freep(&avctx->stats_out);
272     free_frame_list(ctx->coded_frame_list);
273     return 0;
274 }
275
276 #if CONFIG_LIBVPX_VP9_ENCODER
277 static int set_pix_fmt(AVCodecContext *avctx, vpx_codec_caps_t codec_caps,
278                        struct vpx_codec_enc_cfg *enccfg, vpx_codec_flags_t *flags,
279                        vpx_img_fmt_t *img_fmt)
280 {
281     VPxContext av_unused *ctx = avctx->priv_data;
282 #ifdef VPX_IMG_FMT_HIGHBITDEPTH
283     enccfg->g_bit_depth = enccfg->g_input_bit_depth = 8;
284 #endif
285     switch (avctx->pix_fmt) {
286     case AV_PIX_FMT_YUV420P:
287     case AV_PIX_FMT_YUVA420P:
288         enccfg->g_profile = 0;
289         *img_fmt = VPX_IMG_FMT_I420;
290         return 0;
291     case AV_PIX_FMT_YUV422P:
292         enccfg->g_profile = 1;
293         *img_fmt = VPX_IMG_FMT_I422;
294         return 0;
295 #if VPX_IMAGE_ABI_VERSION >= 3
296     case AV_PIX_FMT_YUV440P:
297         enccfg->g_profile = 1;
298         *img_fmt = VPX_IMG_FMT_I440;
299         return 0;
300     case AV_PIX_FMT_GBRP:
301         ctx->vpx_cs = VPX_CS_SRGB;
302 #endif
303     case AV_PIX_FMT_YUV444P:
304         enccfg->g_profile = 1;
305         *img_fmt = VPX_IMG_FMT_I444;
306         return 0;
307 #ifdef VPX_IMG_FMT_HIGHBITDEPTH
308     case AV_PIX_FMT_YUV420P10:
309     case AV_PIX_FMT_YUV420P12:
310         if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH) {
311             enccfg->g_bit_depth = enccfg->g_input_bit_depth =
312                 avctx->pix_fmt == AV_PIX_FMT_YUV420P10 ? 10 : 12;
313             enccfg->g_profile = 2;
314             *img_fmt = VPX_IMG_FMT_I42016;
315             *flags |= VPX_CODEC_USE_HIGHBITDEPTH;
316             return 0;
317         }
318         break;
319     case AV_PIX_FMT_YUV422P10:
320     case AV_PIX_FMT_YUV422P12:
321         if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH) {
322             enccfg->g_bit_depth = enccfg->g_input_bit_depth =
323                 avctx->pix_fmt == AV_PIX_FMT_YUV422P10 ? 10 : 12;
324             enccfg->g_profile = 3;
325             *img_fmt = VPX_IMG_FMT_I42216;
326             *flags |= VPX_CODEC_USE_HIGHBITDEPTH;
327             return 0;
328         }
329         break;
330 #if VPX_IMAGE_ABI_VERSION >= 3
331     case AV_PIX_FMT_YUV440P10:
332     case AV_PIX_FMT_YUV440P12:
333         if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH) {
334             enccfg->g_bit_depth = enccfg->g_input_bit_depth =
335                 avctx->pix_fmt == AV_PIX_FMT_YUV440P10 ? 10 : 12;
336             enccfg->g_profile = 3;
337             *img_fmt = VPX_IMG_FMT_I44016;
338             *flags |= VPX_CODEC_USE_HIGHBITDEPTH;
339             return 0;
340         }
341         break;
342     case AV_PIX_FMT_GBRP10:
343     case AV_PIX_FMT_GBRP12:
344         ctx->vpx_cs = VPX_CS_SRGB;
345 #endif
346     case AV_PIX_FMT_YUV444P10:
347     case AV_PIX_FMT_YUV444P12:
348         if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH) {
349             enccfg->g_bit_depth = enccfg->g_input_bit_depth =
350                 avctx->pix_fmt == AV_PIX_FMT_YUV444P10 ||
351                 avctx->pix_fmt == AV_PIX_FMT_GBRP10 ? 10 : 12;
352             enccfg->g_profile = 3;
353             *img_fmt = VPX_IMG_FMT_I44416;
354             *flags |= VPX_CODEC_USE_HIGHBITDEPTH;
355             return 0;
356         }
357         break;
358 #endif
359     default:
360         break;
361     }
362     av_log(avctx, AV_LOG_ERROR, "Unsupported pixel format.\n");
363     return AVERROR_INVALIDDATA;
364 }
365
366 #if VPX_ENCODER_ABI_VERSION > 8
367 static void set_colorspace(AVCodecContext *avctx)
368 {
369     enum vpx_color_space vpx_cs;
370     VPxContext *ctx = avctx->priv_data;
371
372     if (ctx->vpx_cs) {
373         vpx_cs = ctx->vpx_cs;
374     } else {
375         switch (avctx->colorspace) {
376         case AVCOL_SPC_RGB:         vpx_cs = VPX_CS_SRGB;      break;
377         case AVCOL_SPC_BT709:       vpx_cs = VPX_CS_BT_709;    break;
378         case AVCOL_SPC_UNSPECIFIED: vpx_cs = VPX_CS_UNKNOWN;   break;
379         case AVCOL_SPC_RESERVED:    vpx_cs = VPX_CS_RESERVED;  break;
380         case AVCOL_SPC_BT470BG:     vpx_cs = VPX_CS_BT_601;    break;
381         case AVCOL_SPC_SMPTE170M:   vpx_cs = VPX_CS_SMPTE_170; break;
382         case AVCOL_SPC_SMPTE240M:   vpx_cs = VPX_CS_SMPTE_240; break;
383         case AVCOL_SPC_BT2020_NCL:  vpx_cs = VPX_CS_BT_2020;   break;
384         default:
385             av_log(avctx, AV_LOG_WARNING, "Unsupported colorspace (%d)\n",
386                    avctx->colorspace);
387             return;
388         }
389     }
390     codecctl_int(avctx, VP9E_SET_COLOR_SPACE, vpx_cs);
391 }
392 #endif
393
394 #if VPX_ENCODER_ABI_VERSION >= 11
395 static void set_color_range(AVCodecContext *avctx)
396 {
397     enum vpx_color_range vpx_cr;
398     switch (avctx->color_range) {
399     case AVCOL_RANGE_UNSPECIFIED:
400     case AVCOL_RANGE_MPEG:       vpx_cr = VPX_CR_STUDIO_RANGE; break;
401     case AVCOL_RANGE_JPEG:       vpx_cr = VPX_CR_FULL_RANGE;   break;
402     default:
403         av_log(avctx, AV_LOG_WARNING, "Unsupported color range (%d)\n",
404                avctx->color_range);
405         return;
406     }
407
408     codecctl_int(avctx, VP9E_SET_COLOR_RANGE, vpx_cr);
409 }
410 #endif
411 #endif
412
413 static av_cold int vpx_init(AVCodecContext *avctx,
414                             const struct vpx_codec_iface *iface)
415 {
416     VPxContext *ctx = avctx->priv_data;
417     struct vpx_codec_enc_cfg enccfg = { 0 };
418     struct vpx_codec_enc_cfg enccfg_alpha;
419     vpx_codec_flags_t flags = (avctx->flags & AV_CODEC_FLAG_PSNR) ? VPX_CODEC_USE_PSNR : 0;
420     AVCPBProperties *cpb_props;
421     int res;
422     vpx_img_fmt_t img_fmt = VPX_IMG_FMT_I420;
423 #if CONFIG_LIBVPX_VP9_ENCODER
424     vpx_codec_caps_t codec_caps = vpx_codec_get_caps(iface);
425 #endif
426
427     av_log(avctx, AV_LOG_INFO, "%s\n", vpx_codec_version_str());
428     av_log(avctx, AV_LOG_VERBOSE, "%s\n", vpx_codec_build_config());
429
430     if (avctx->pix_fmt == AV_PIX_FMT_YUVA420P)
431         ctx->is_alpha = 1;
432
433     if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
434         av_log(avctx, AV_LOG_ERROR, "Failed to get config: %s\n",
435                vpx_codec_err_to_string(res));
436         return AVERROR(EINVAL);
437     }
438
439 #if CONFIG_LIBVPX_VP9_ENCODER
440     if (avctx->codec_id == AV_CODEC_ID_VP9) {
441         if (set_pix_fmt(avctx, codec_caps, &enccfg, &flags, &img_fmt))
442             return AVERROR(EINVAL);
443     }
444 #endif
445
446     if(!avctx->bit_rate)
447         if(avctx->rc_max_rate || avctx->rc_buffer_size || avctx->rc_initial_buffer_occupancy) {
448             av_log( avctx, AV_LOG_ERROR, "Rate control parameters set without a bitrate\n");
449             return AVERROR(EINVAL);
450         }
451
452     dump_enc_cfg(avctx, &enccfg);
453
454     enccfg.g_w            = avctx->width;
455     enccfg.g_h            = avctx->height;
456     enccfg.g_timebase.num = avctx->time_base.num;
457     enccfg.g_timebase.den = avctx->time_base.den;
458     enccfg.g_threads      = avctx->thread_count;
459     enccfg.g_lag_in_frames= ctx->lag_in_frames;
460
461     if (avctx->flags & AV_CODEC_FLAG_PASS1)
462         enccfg.g_pass = VPX_RC_FIRST_PASS;
463     else if (avctx->flags & AV_CODEC_FLAG_PASS2)
464         enccfg.g_pass = VPX_RC_LAST_PASS;
465     else
466         enccfg.g_pass = VPX_RC_ONE_PASS;
467
468     if (avctx->rc_min_rate == avctx->rc_max_rate &&
469         avctx->rc_min_rate == avctx->bit_rate && avctx->bit_rate) {
470         enccfg.rc_end_usage = VPX_CBR;
471     } else if (ctx->crf >= 0) {
472         enccfg.rc_end_usage = VPX_CQ;
473 #if CONFIG_LIBVPX_VP9_ENCODER
474         if (!avctx->bit_rate && avctx->codec_id == AV_CODEC_ID_VP9)
475             enccfg.rc_end_usage = VPX_Q;
476 #endif
477     }
478
479     if (avctx->bit_rate) {
480         enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
481                                                   AV_ROUND_NEAR_INF);
482 #if CONFIG_LIBVPX_VP9_ENCODER
483     } else if (enccfg.rc_end_usage == VPX_Q) {
484 #endif
485     } else {
486         if (enccfg.rc_end_usage == VPX_CQ) {
487             enccfg.rc_target_bitrate = 1000000;
488         } else {
489             avctx->bit_rate = enccfg.rc_target_bitrate * 1000;
490             av_log(avctx, AV_LOG_WARNING,
491                    "Neither bitrate nor constrained quality specified, using default bitrate of %dkbit/sec\n",
492                    enccfg.rc_target_bitrate);
493         }
494     }
495
496     if (avctx->codec_id == AV_CODEC_ID_VP9 && ctx->lossless == 1) {
497         enccfg.rc_min_quantizer =
498         enccfg.rc_max_quantizer = 0;
499     } else {
500         if (avctx->qmin >= 0)
501             enccfg.rc_min_quantizer = avctx->qmin;
502         if (avctx->qmax >= 0)
503             enccfg.rc_max_quantizer = avctx->qmax;
504     }
505
506     if (enccfg.rc_end_usage == VPX_CQ
507 #if CONFIG_LIBVPX_VP9_ENCODER
508         || enccfg.rc_end_usage == VPX_Q
509 #endif
510        ) {
511         if (ctx->crf < enccfg.rc_min_quantizer || ctx->crf > enccfg.rc_max_quantizer) {
512             av_log(avctx, AV_LOG_ERROR,
513                    "CQ level %d must be between minimum and maximum quantizer value (%d-%d)\n",
514                    ctx->crf, enccfg.rc_min_quantizer, enccfg.rc_max_quantizer);
515             return AVERROR(EINVAL);
516         }
517     }
518
519 #if FF_API_PRIVATE_OPT
520 FF_DISABLE_DEPRECATION_WARNINGS
521     if (avctx->frame_skip_threshold)
522         ctx->drop_threshold = avctx->frame_skip_threshold;
523 FF_ENABLE_DEPRECATION_WARNINGS
524 #endif
525     enccfg.rc_dropframe_thresh = ctx->drop_threshold;
526
527     //0-100 (0 => CBR, 100 => VBR)
528     enccfg.rc_2pass_vbr_bias_pct           = lrint(avctx->qcompress * 100);
529     if (avctx->bit_rate)
530         enccfg.rc_2pass_vbr_minsection_pct =
531             avctx->rc_min_rate * 100LL / avctx->bit_rate;
532     if (avctx->rc_max_rate)
533         enccfg.rc_2pass_vbr_maxsection_pct =
534             avctx->rc_max_rate * 100LL / avctx->bit_rate;
535
536     if (avctx->rc_buffer_size)
537         enccfg.rc_buf_sz         =
538             avctx->rc_buffer_size * 1000LL / avctx->bit_rate;
539     if (avctx->rc_initial_buffer_occupancy)
540         enccfg.rc_buf_initial_sz =
541             avctx->rc_initial_buffer_occupancy * 1000LL / avctx->bit_rate;
542     enccfg.rc_buf_optimal_sz     = enccfg.rc_buf_sz * 5 / 6;
543 #if FF_API_MPV_OPT
544     FF_DISABLE_DEPRECATION_WARNINGS
545     if (avctx->rc_buffer_aggressivity != 1.0) {
546         av_log(avctx, AV_LOG_WARNING, "The rc_buffer_aggressivity option is "
547                "deprecated, use the undershoot-pct private option instead.\n");
548         enccfg.rc_undershoot_pct = lrint(avctx->rc_buffer_aggressivity * 100);
549     }
550     FF_ENABLE_DEPRECATION_WARNINGS
551 #endif
552     if (ctx->rc_undershoot_pct >= 0)
553         enccfg.rc_undershoot_pct = ctx->rc_undershoot_pct;
554     if (ctx->rc_overshoot_pct >= 0)
555         enccfg.rc_overshoot_pct = ctx->rc_overshoot_pct;
556
557     //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
558     if (avctx->keyint_min >= 0 && avctx->keyint_min == avctx->gop_size)
559         enccfg.kf_min_dist = avctx->keyint_min;
560     if (avctx->gop_size >= 0)
561         enccfg.kf_max_dist = avctx->gop_size;
562
563     if (enccfg.g_pass == VPX_RC_FIRST_PASS)
564         enccfg.g_lag_in_frames = 0;
565     else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
566         int decode_size, ret;
567
568         if (!avctx->stats_in) {
569             av_log(avctx, AV_LOG_ERROR, "No stats file for second pass\n");
570             return AVERROR_INVALIDDATA;
571         }
572
573         ctx->twopass_stats.sz  = strlen(avctx->stats_in) * 3 / 4;
574         ret = av_reallocp(&ctx->twopass_stats.buf, ctx->twopass_stats.sz);
575         if (ret < 0) {
576             av_log(avctx, AV_LOG_ERROR,
577                    "Stat buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
578                    ctx->twopass_stats.sz);
579             ctx->twopass_stats.sz = 0;
580             return ret;
581         }
582         decode_size = av_base64_decode(ctx->twopass_stats.buf, avctx->stats_in,
583                                        ctx->twopass_stats.sz);
584         if (decode_size < 0) {
585             av_log(avctx, AV_LOG_ERROR, "Stat buffer decode failed\n");
586             return AVERROR_INVALIDDATA;
587         }
588
589         ctx->twopass_stats.sz      = decode_size;
590         enccfg.rc_twopass_stats_in = ctx->twopass_stats;
591     }
592
593     /* 0-3: For non-zero values the encoder increasingly optimizes for reduced
594        complexity playback on low powered devices at the expense of encode
595        quality. */
596     if (avctx->profile != FF_PROFILE_UNKNOWN)
597         enccfg.g_profile = avctx->profile;
598
599     enccfg.g_error_resilient = ctx->error_resilient || ctx->flags & VP8F_ERROR_RESILIENT;
600
601     dump_enc_cfg(avctx, &enccfg);
602     /* Construct Encoder Context */
603     res = vpx_codec_enc_init(&ctx->encoder, iface, &enccfg, flags);
604     if (res != VPX_CODEC_OK) {
605         log_encoder_error(avctx, "Failed to initialize encoder");
606         return AVERROR(EINVAL);
607     }
608
609     if (ctx->is_alpha) {
610         enccfg_alpha = enccfg;
611         res = vpx_codec_enc_init(&ctx->encoder_alpha, iface, &enccfg_alpha, flags);
612         if (res != VPX_CODEC_OK) {
613             log_encoder_error(avctx, "Failed to initialize alpha encoder");
614             return AVERROR(EINVAL);
615         }
616     }
617
618     //codec control failures are currently treated only as warnings
619     av_log(avctx, AV_LOG_DEBUG, "vpx_codec_control\n");
620     codecctl_int(avctx, VP8E_SET_CPUUSED,          ctx->cpu_used);
621     if (ctx->flags & VP8F_AUTO_ALT_REF)
622         ctx->auto_alt_ref = 1;
623     if (ctx->auto_alt_ref >= 0)
624         codecctl_int(avctx, VP8E_SET_ENABLEAUTOALTREF,
625                      avctx->codec_id == AV_CODEC_ID_VP8 ? !!ctx->auto_alt_ref : ctx->auto_alt_ref);
626     if (ctx->arnr_max_frames >= 0)
627         codecctl_int(avctx, VP8E_SET_ARNR_MAXFRAMES,   ctx->arnr_max_frames);
628     if (ctx->arnr_strength >= 0)
629         codecctl_int(avctx, VP8E_SET_ARNR_STRENGTH,    ctx->arnr_strength);
630     if (ctx->arnr_type >= 0)
631         codecctl_int(avctx, VP8E_SET_ARNR_TYPE,        ctx->arnr_type);
632     if (ctx->tune >= 0)
633         codecctl_int(avctx, VP8E_SET_TUNING,           ctx->tune);
634
635     if (ctx->auto_alt_ref && ctx->is_alpha && avctx->codec_id == AV_CODEC_ID_VP8) {
636         av_log(avctx, AV_LOG_ERROR, "Transparency encoding with auto_alt_ref does not work\n");
637         return AVERROR(EINVAL);
638     }
639
640     if (CONFIG_LIBVPX_VP8_ENCODER && avctx->codec_id == AV_CODEC_ID_VP8) {
641 #if FF_API_PRIVATE_OPT
642 FF_DISABLE_DEPRECATION_WARNINGS
643         if (avctx->noise_reduction)
644             ctx->noise_sensitivity = avctx->noise_reduction;
645 FF_ENABLE_DEPRECATION_WARNINGS
646 #endif
647         codecctl_int(avctx, VP8E_SET_NOISE_SENSITIVITY, ctx->noise_sensitivity);
648         codecctl_int(avctx, VP8E_SET_TOKEN_PARTITIONS,  av_log2(avctx->slices));
649     }
650 #if FF_API_MPV_OPT
651     FF_DISABLE_DEPRECATION_WARNINGS
652     if (avctx->mb_threshold) {
653         av_log(avctx, AV_LOG_WARNING, "The mb_threshold option is deprecated, "
654                "use the static-thresh private option instead.\n");
655         ctx->static_thresh = avctx->mb_threshold;
656     }
657     FF_ENABLE_DEPRECATION_WARNINGS
658 #endif
659     codecctl_int(avctx, VP8E_SET_STATIC_THRESHOLD,  ctx->static_thresh);
660     if (ctx->crf >= 0)
661         codecctl_int(avctx, VP8E_SET_CQ_LEVEL,          ctx->crf);
662     if (ctx->max_intra_rate >= 0)
663         codecctl_int(avctx, VP8E_SET_MAX_INTRA_BITRATE_PCT, ctx->max_intra_rate);
664
665 #if CONFIG_LIBVPX_VP9_ENCODER
666     if (avctx->codec_id == AV_CODEC_ID_VP9) {
667         if (ctx->lossless >= 0)
668             codecctl_int(avctx, VP9E_SET_LOSSLESS, ctx->lossless);
669         if (ctx->tile_columns >= 0)
670             codecctl_int(avctx, VP9E_SET_TILE_COLUMNS, ctx->tile_columns);
671         if (ctx->tile_rows >= 0)
672             codecctl_int(avctx, VP9E_SET_TILE_ROWS, ctx->tile_rows);
673         if (ctx->frame_parallel >= 0)
674             codecctl_int(avctx, VP9E_SET_FRAME_PARALLEL_DECODING, ctx->frame_parallel);
675         if (ctx->aq_mode >= 0)
676             codecctl_int(avctx, VP9E_SET_AQ_MODE, ctx->aq_mode);
677 #if VPX_ENCODER_ABI_VERSION > 8
678         set_colorspace(avctx);
679 #endif
680 #if VPX_ENCODER_ABI_VERSION >= 11
681         set_color_range(avctx);
682 #endif
683     }
684 #endif
685
686     av_log(avctx, AV_LOG_DEBUG, "Using deadline: %d\n", ctx->deadline);
687
688     //provide dummy value to initialize wrapper, values will be updated each _encode()
689     vpx_img_wrap(&ctx->rawimg, img_fmt, avctx->width, avctx->height, 1,
690                  (unsigned char*)1);
691 #if CONFIG_LIBVPX_VP9_ENCODER && defined(VPX_IMG_FMT_HIGHBITDEPTH)
692     if (avctx->codec_id == AV_CODEC_ID_VP9 && (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH))
693         ctx->rawimg.bit_depth = enccfg.g_bit_depth;
694 #endif
695
696     if (ctx->is_alpha)
697         vpx_img_wrap(&ctx->rawimg_alpha, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
698                      (unsigned char*)1);
699
700     cpb_props = ff_add_cpb_side_data(avctx);
701     if (!cpb_props)
702         return AVERROR(ENOMEM);
703
704     if (enccfg.rc_end_usage == VPX_CBR ||
705         enccfg.g_pass != VPX_RC_ONE_PASS) {
706         cpb_props->max_bitrate = avctx->rc_max_rate;
707         cpb_props->min_bitrate = avctx->rc_min_rate;
708         cpb_props->avg_bitrate = avctx->bit_rate;
709     }
710     cpb_props->buffer_size = avctx->rc_buffer_size;
711
712     return 0;
713 }
714
715 static inline void cx_pktcpy(struct FrameListData *dst,
716                              const struct vpx_codec_cx_pkt *src,
717                              const struct vpx_codec_cx_pkt *src_alpha,
718                              VPxContext *ctx)
719 {
720     dst->pts      = src->data.frame.pts;
721     dst->duration = src->data.frame.duration;
722     dst->flags    = src->data.frame.flags;
723     dst->sz       = src->data.frame.sz;
724     dst->buf      = src->data.frame.buf;
725     dst->have_sse = 0;
726     /* For alt-ref frame, don't store PSNR or increment frame_number */
727     if (!(dst->flags & VPX_FRAME_IS_INVISIBLE)) {
728         dst->frame_number = ++ctx->frame_number;
729         dst->have_sse = ctx->have_sse;
730         if (ctx->have_sse) {
731             /* associate last-seen SSE to the frame. */
732             /* Transfers ownership from ctx to dst. */
733             /* WARNING! This makes the assumption that PSNR_PKT comes
734                just before the frame it refers to! */
735             memcpy(dst->sse, ctx->sse, sizeof(dst->sse));
736             ctx->have_sse = 0;
737         }
738     } else {
739         dst->frame_number = -1;   /* sanity marker */
740     }
741     if (src_alpha) {
742         dst->buf_alpha = src_alpha->data.frame.buf;
743         dst->sz_alpha = src_alpha->data.frame.sz;
744     } else {
745         dst->buf_alpha = NULL;
746         dst->sz_alpha = 0;
747     }
748 }
749
750 /**
751  * Store coded frame information in format suitable for return from encode2().
752  *
753  * Write information from @a cx_frame to @a pkt
754  * @return packet data size on success
755  * @return a negative AVERROR on error
756  */
757 static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame,
758                       AVPacket *pkt)
759 {
760     int ret = ff_alloc_packet2(avctx, pkt, cx_frame->sz, 0);
761     uint8_t *side_data;
762     if (ret >= 0) {
763         int pict_type;
764         memcpy(pkt->data, cx_frame->buf, pkt->size);
765         pkt->pts = pkt->dts = cx_frame->pts;
766 #if FF_API_CODED_FRAME
767 FF_DISABLE_DEPRECATION_WARNINGS
768         avctx->coded_frame->pts       = cx_frame->pts;
769         avctx->coded_frame->key_frame = !!(cx_frame->flags & VPX_FRAME_IS_KEY);
770 FF_ENABLE_DEPRECATION_WARNINGS
771 #endif
772
773         if (!!(cx_frame->flags & VPX_FRAME_IS_KEY)) {
774             pict_type = AV_PICTURE_TYPE_I;
775 #if FF_API_CODED_FRAME
776 FF_DISABLE_DEPRECATION_WARNINGS
777             avctx->coded_frame->pict_type = pict_type;
778 FF_ENABLE_DEPRECATION_WARNINGS
779 #endif
780             pkt->flags |= AV_PKT_FLAG_KEY;
781         } else {
782             pict_type = AV_PICTURE_TYPE_P;
783 #if FF_API_CODED_FRAME
784 FF_DISABLE_DEPRECATION_WARNINGS
785             avctx->coded_frame->pict_type = pict_type;
786 FF_ENABLE_DEPRECATION_WARNINGS
787 #endif
788         }
789
790         ff_side_data_set_encoder_stats(pkt, 0, cx_frame->sse + 1,
791                                        cx_frame->have_sse ? 3 : 0, pict_type);
792
793         if (cx_frame->have_sse) {
794             int i;
795             /* Beware of the Y/U/V/all order! */
796 #if FF_API_CODED_FRAME
797 FF_DISABLE_DEPRECATION_WARNINGS
798             avctx->coded_frame->error[0] = cx_frame->sse[1];
799             avctx->coded_frame->error[1] = cx_frame->sse[2];
800             avctx->coded_frame->error[2] = cx_frame->sse[3];
801             avctx->coded_frame->error[3] = 0;    // alpha
802 FF_ENABLE_DEPRECATION_WARNINGS
803 #endif
804             for (i = 0; i < 3; ++i) {
805                 avctx->error[i] += cx_frame->sse[i + 1];
806             }
807             cx_frame->have_sse = 0;
808         }
809         if (cx_frame->sz_alpha > 0) {
810             side_data = av_packet_new_side_data(pkt,
811                                                 AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
812                                                 cx_frame->sz_alpha + 8);
813             if(!side_data) {
814                 av_packet_unref(pkt);
815                 av_free(pkt);
816                 return AVERROR(ENOMEM);
817             }
818             AV_WB64(side_data, 1);
819             memcpy(side_data + 8, cx_frame->buf_alpha, cx_frame->sz_alpha);
820         }
821     } else {
822         return ret;
823     }
824     return pkt->size;
825 }
826
827 /**
828  * Queue multiple output frames from the encoder, returning the front-most.
829  * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
830  * the frame queue. Return the head frame if available.
831  * @return Stored frame size
832  * @return AVERROR(EINVAL) on output size error
833  * @return AVERROR(ENOMEM) on coded frame queue data allocation error
834  */
835 static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out)
836 {
837     VPxContext *ctx = avctx->priv_data;
838     const struct vpx_codec_cx_pkt *pkt;
839     const struct vpx_codec_cx_pkt *pkt_alpha = NULL;
840     const void *iter = NULL;
841     const void *iter_alpha = NULL;
842     int size = 0;
843
844     if (ctx->coded_frame_list) {
845         struct FrameListData *cx_frame = ctx->coded_frame_list;
846         /* return the leading frame if we've already begun queueing */
847         size = storeframe(avctx, cx_frame, pkt_out);
848         if (size < 0)
849             return size;
850         ctx->coded_frame_list = cx_frame->next;
851         free_coded_frame(cx_frame);
852     }
853
854     /* consume all available output from the encoder before returning. buffers
855        are only good through the next vpx_codec call */
856     while ((pkt = vpx_codec_get_cx_data(&ctx->encoder, &iter)) &&
857            (!ctx->is_alpha ||
858             (ctx->is_alpha && (pkt_alpha = vpx_codec_get_cx_data(&ctx->encoder_alpha, &iter_alpha))))) {
859         switch (pkt->kind) {
860         case VPX_CODEC_CX_FRAME_PKT:
861             if (!size) {
862                 struct FrameListData cx_frame;
863
864                 /* avoid storing the frame when the list is empty and we haven't yet
865                    provided a frame for output */
866                 av_assert0(!ctx->coded_frame_list);
867                 cx_pktcpy(&cx_frame, pkt, pkt_alpha, ctx);
868                 size = storeframe(avctx, &cx_frame, pkt_out);
869                 if (size < 0)
870                     return size;
871             } else {
872                 struct FrameListData *cx_frame =
873                     av_malloc(sizeof(struct FrameListData));
874
875                 if (!cx_frame) {
876                     av_log(avctx, AV_LOG_ERROR,
877                            "Frame queue element alloc failed\n");
878                     return AVERROR(ENOMEM);
879                 }
880                 cx_pktcpy(cx_frame, pkt, pkt_alpha, ctx);
881                 cx_frame->buf = av_malloc(cx_frame->sz);
882
883                 if (!cx_frame->buf) {
884                     av_log(avctx, AV_LOG_ERROR,
885                            "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
886                            cx_frame->sz);
887                     av_freep(&cx_frame);
888                     return AVERROR(ENOMEM);
889                 }
890                 memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
891                 if (ctx->is_alpha) {
892                     cx_frame->buf_alpha = av_malloc(cx_frame->sz_alpha);
893                     if (!cx_frame->buf_alpha) {
894                         av_log(avctx, AV_LOG_ERROR,
895                                "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
896                                cx_frame->sz_alpha);
897                         av_free(cx_frame);
898                         return AVERROR(ENOMEM);
899                     }
900                     memcpy(cx_frame->buf_alpha, pkt_alpha->data.frame.buf, pkt_alpha->data.frame.sz);
901                 }
902                 coded_frame_add(&ctx->coded_frame_list, cx_frame);
903             }
904             break;
905         case VPX_CODEC_STATS_PKT: {
906             struct vpx_fixed_buf *stats = &ctx->twopass_stats;
907             int err;
908             if ((err = av_reallocp(&stats->buf,
909                                    stats->sz +
910                                    pkt->data.twopass_stats.sz)) < 0) {
911                 stats->sz = 0;
912                 av_log(avctx, AV_LOG_ERROR, "Stat buffer realloc failed\n");
913                 return err;
914             }
915             memcpy((uint8_t*)stats->buf + stats->sz,
916                    pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
917             stats->sz += pkt->data.twopass_stats.sz;
918             break;
919         }
920         case VPX_CODEC_PSNR_PKT:
921             av_assert0(!ctx->have_sse);
922             ctx->sse[0] = pkt->data.psnr.sse[0];
923             ctx->sse[1] = pkt->data.psnr.sse[1];
924             ctx->sse[2] = pkt->data.psnr.sse[2];
925             ctx->sse[3] = pkt->data.psnr.sse[3];
926             ctx->have_sse = 1;
927             break;
928         case VPX_CODEC_CUSTOM_PKT:
929             //ignore unsupported/unrecognized packet types
930             break;
931         }
932     }
933
934     return size;
935 }
936
937 static int vpx_encode(AVCodecContext *avctx, AVPacket *pkt,
938                       const AVFrame *frame, int *got_packet)
939 {
940     VPxContext *ctx = avctx->priv_data;
941     struct vpx_image *rawimg = NULL;
942     struct vpx_image *rawimg_alpha = NULL;
943     int64_t timestamp = 0;
944     int res, coded_size;
945     vpx_enc_frame_flags_t flags = 0;
946
947     if (frame) {
948         rawimg                      = &ctx->rawimg;
949         rawimg->planes[VPX_PLANE_Y] = frame->data[0];
950         rawimg->planes[VPX_PLANE_U] = frame->data[1];
951         rawimg->planes[VPX_PLANE_V] = frame->data[2];
952         rawimg->stride[VPX_PLANE_Y] = frame->linesize[0];
953         rawimg->stride[VPX_PLANE_U] = frame->linesize[1];
954         rawimg->stride[VPX_PLANE_V] = frame->linesize[2];
955         if (ctx->is_alpha) {
956             uint8_t *u_plane, *v_plane;
957             rawimg_alpha = &ctx->rawimg_alpha;
958             rawimg_alpha->planes[VPX_PLANE_Y] = frame->data[3];
959             u_plane = av_malloc(frame->linesize[1] * frame->height);
960             v_plane = av_malloc(frame->linesize[2] * frame->height);
961             if (!u_plane || !v_plane) {
962                 av_free(u_plane);
963                 av_free(v_plane);
964                 return AVERROR(ENOMEM);
965             }
966             memset(u_plane, 0x80, frame->linesize[1] * frame->height);
967             rawimg_alpha->planes[VPX_PLANE_U] = u_plane;
968             memset(v_plane, 0x80, frame->linesize[2] * frame->height);
969             rawimg_alpha->planes[VPX_PLANE_V] = v_plane;
970             rawimg_alpha->stride[VPX_PLANE_Y] = frame->linesize[0];
971             rawimg_alpha->stride[VPX_PLANE_U] = frame->linesize[1];
972             rawimg_alpha->stride[VPX_PLANE_V] = frame->linesize[2];
973         }
974         timestamp                   = frame->pts;
975         if (frame->pict_type == AV_PICTURE_TYPE_I)
976             flags |= VPX_EFLAG_FORCE_KF;
977     }
978
979     res = vpx_codec_encode(&ctx->encoder, rawimg, timestamp,
980                            avctx->ticks_per_frame, flags, ctx->deadline);
981     if (res != VPX_CODEC_OK) {
982         log_encoder_error(avctx, "Error encoding frame");
983         return AVERROR_INVALIDDATA;
984     }
985
986     if (ctx->is_alpha) {
987         res = vpx_codec_encode(&ctx->encoder_alpha, rawimg_alpha, timestamp,
988                                avctx->ticks_per_frame, flags, ctx->deadline);
989         if (res != VPX_CODEC_OK) {
990             log_encoder_error(avctx, "Error encoding alpha frame");
991             return AVERROR_INVALIDDATA;
992         }
993     }
994
995     coded_size = queue_frames(avctx, pkt);
996
997     if (!frame && avctx->flags & AV_CODEC_FLAG_PASS1) {
998         unsigned int b64_size = AV_BASE64_SIZE(ctx->twopass_stats.sz);
999
1000         avctx->stats_out = av_malloc(b64_size);
1001         if (!avctx->stats_out) {
1002             av_log(avctx, AV_LOG_ERROR, "Stat buffer alloc (%d bytes) failed\n",
1003                    b64_size);
1004             return AVERROR(ENOMEM);
1005         }
1006         av_base64_encode(avctx->stats_out, b64_size, ctx->twopass_stats.buf,
1007                          ctx->twopass_stats.sz);
1008     }
1009
1010     if (rawimg_alpha) {
1011         av_freep(&rawimg_alpha->planes[VPX_PLANE_U]);
1012         av_freep(&rawimg_alpha->planes[VPX_PLANE_V]);
1013     }
1014
1015     *got_packet = !!coded_size;
1016     return 0;
1017 }
1018
1019 #define OFFSET(x) offsetof(VPxContext, x)
1020 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1021
1022 #ifndef VPX_ERROR_RESILIENT_DEFAULT
1023 #define VPX_ERROR_RESILIENT_DEFAULT 1
1024 #define VPX_ERROR_RESILIENT_PARTITIONS 2
1025 #endif
1026
1027 #define COMMON_OPTIONS \
1028     { "auto-alt-ref",    "Enable use of alternate reference " \
1029                          "frames (2-pass only)",                   OFFSET(auto_alt_ref),    AV_OPT_TYPE_INT, {.i64 = -1},      -1,      2,       VE}, \
1030     { "lag-in-frames",   "Number of frames to look ahead for " \
1031                          "alternate reference frame selection",    OFFSET(lag_in_frames),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1032     { "arnr-maxframes",  "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1033     { "arnr-strength",   "altref noise reduction filter strength", OFFSET(arnr_strength),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1034     { "arnr-type",       "altref noise reduction filter type",     OFFSET(arnr_type),       AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE, "arnr_type"}, \
1035     { "backward",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \
1036     { "forward",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \
1037     { "centered",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \
1038     { "tune",            "Tune the encoding to a specific scenario", OFFSET(tune),          AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE, "tune"}, \
1039     { "psnr",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_PSNR}, 0, 0, VE, "tune"}, \
1040     { "ssim",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_SSIM}, 0, 0, VE, "tune"}, \
1041     { "deadline",        "Time to spend encoding, in microseconds.", OFFSET(deadline),      AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
1042     { "best",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \
1043     { "good",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \
1044     { "realtime",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME},     0, 0, VE, "quality"}, \
1045     { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, VE, "er"}, \
1046     { "max-intra-rate",  "Maximum I-frame bitrate (pct) 0=unlimited",  OFFSET(max_intra_rate),  AV_OPT_TYPE_INT,  {.i64 = -1}, -1,      INT_MAX, VE}, \
1047     { "default",         "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"}, \
1048     { "partitions",      "The frame partitions are independently decodable " \
1049                          "by the bool decoder, meaning that partitions can be decoded even " \
1050                          "though earlier partitions have been lost. Note that intra predicition" \
1051                          " is still done over the partition boundary.",       0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"}, \
1052     { "crf",              "Select the quality for constant quality mode", offsetof(VPxContext, crf), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 63, VE }, \
1053     { "static-thresh",    "A change threshold on blocks below which they will be skipped by the encoder", OFFSET(static_thresh), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, \
1054     { "drop-threshold",   "Frame drop threshold", offsetof(VPxContext, drop_threshold), AV_OPT_TYPE_INT, {.i64 = 0 }, INT_MIN, INT_MAX, VE }, \
1055     { "noise-sensitivity", "Noise sensitivity", OFFSET(noise_sensitivity), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 4, VE}, \
1056     { "undershoot-pct",  "Datarate undershoot (min) target (%)", OFFSET(rc_undershoot_pct), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 100, VE }, \
1057     { "overshoot-pct",   "Datarate overshoot (max) target (%)", OFFSET(rc_overshoot_pct), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1000, VE }, \
1058
1059 #define LEGACY_OPTIONS \
1060     {"speed", "", offsetof(VPxContext, cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
1061     {"quality", "", offsetof(VPxContext, deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
1062     {"vp8flags", "", offsetof(VPxContext, flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX, VE, "flags"}, \
1063     {"error_resilient", "enable error resilience", 0, AV_OPT_TYPE_CONST, {.i64 = VP8F_ERROR_RESILIENT}, INT_MIN, INT_MAX, VE, "flags"}, \
1064     {"altref", "enable use of alternate reference frames (VP8/2-pass only)", 0, AV_OPT_TYPE_CONST, {.i64 = VP8F_AUTO_ALT_REF}, INT_MIN, INT_MAX, VE, "flags"}, \
1065     {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VPxContext, arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15, VE}, \
1066     {"arnr_strength", "altref noise reduction filter strength", offsetof(VPxContext, arnr_strength), AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6, VE}, \
1067     {"arnr_type", "altref noise reduction filter type", offsetof(VPxContext, arnr_type), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 3, VE}, \
1068     {"rc_lookahead", "Number of frames to look ahead for alternate reference frame selection", offsetof(VPxContext, lag_in_frames), AV_OPT_TYPE_INT, {.i64 = 25}, 0, 25, VE}, \
1069
1070 #if CONFIG_LIBVPX_VP8_ENCODER
1071 static const AVOption vp8_options[] = {
1072     COMMON_OPTIONS
1073     { "cpu-used",        "Quality/Speed ratio modifier",                OFFSET(cpu_used),        AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE},
1074     LEGACY_OPTIONS
1075     { NULL }
1076 };
1077 #endif
1078
1079 #if CONFIG_LIBVPX_VP9_ENCODER
1080 static const AVOption vp9_options[] = {
1081     COMMON_OPTIONS
1082     { "cpu-used",        "Quality/Speed ratio modifier",                OFFSET(cpu_used),        AV_OPT_TYPE_INT, {.i64 = 1},  -8, 8, VE},
1083     { "lossless",        "Lossless mode",                               OFFSET(lossless),        AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE},
1084     { "tile-columns",    "Number of tile columns to use, log2",         OFFSET(tile_columns),    AV_OPT_TYPE_INT, {.i64 = -1}, -1, 6, VE},
1085     { "tile-rows",       "Number of tile rows to use, log2",            OFFSET(tile_rows),       AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2, VE},
1086     { "frame-parallel",  "Enable frame parallel decodability features", OFFSET(frame_parallel),  AV_OPT_TYPE_BOOL,{.i64 = -1}, -1, 1, VE},
1087     { "aq-mode",         "adaptive quantization mode",                  OFFSET(aq_mode),         AV_OPT_TYPE_INT, {.i64 = -1}, -1, 3, VE, "aq_mode"},
1088     { "none",            "Aq not used",         0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 0, VE, "aq_mode" },
1089     { "variance",        "Variance based Aq",   0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "aq_mode" },
1090     { "complexity",      "Complexity based Aq", 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "aq_mode" },
1091     { "cyclic",          "Cyclic Refresh Aq",   0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "aq_mode" },
1092     LEGACY_OPTIONS
1093     { NULL }
1094 };
1095 #endif
1096
1097 #undef COMMON_OPTIONS
1098 #undef LEGACY_OPTIONS
1099
1100 static const AVCodecDefault defaults[] = {
1101     { "qmin",             "-1" },
1102     { "qmax",             "-1" },
1103     { "g",                "-1" },
1104     { "keyint_min",       "-1" },
1105     { NULL },
1106 };
1107
1108 #if CONFIG_LIBVPX_VP8_ENCODER
1109 static av_cold int vp8_init(AVCodecContext *avctx)
1110 {
1111     return vpx_init(avctx, vpx_codec_vp8_cx());
1112 }
1113
1114 static const AVClass class_vp8 = {
1115     .class_name = "libvpx-vp8 encoder",
1116     .item_name  = av_default_item_name,
1117     .option     = vp8_options,
1118     .version    = LIBAVUTIL_VERSION_INT,
1119 };
1120
1121 AVCodec ff_libvpx_vp8_encoder = {
1122     .name           = "libvpx",
1123     .long_name      = NULL_IF_CONFIG_SMALL("libvpx VP8"),
1124     .type           = AVMEDIA_TYPE_VIDEO,
1125     .id             = AV_CODEC_ID_VP8,
1126     .priv_data_size = sizeof(VPxContext),
1127     .init           = vp8_init,
1128     .encode2        = vpx_encode,
1129     .close          = vpx_free,
1130     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1131     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_NONE },
1132     .priv_class     = &class_vp8,
1133     .defaults       = defaults,
1134 };
1135 #endif /* CONFIG_LIBVPX_VP8_ENCODER */
1136
1137 #if CONFIG_LIBVPX_VP9_ENCODER
1138 static av_cold int vp9_init(AVCodecContext *avctx)
1139 {
1140     return vpx_init(avctx, vpx_codec_vp9_cx());
1141 }
1142
1143 static const AVClass class_vp9 = {
1144     .class_name = "libvpx-vp9 encoder",
1145     .item_name  = av_default_item_name,
1146     .option     = vp9_options,
1147     .version    = LIBAVUTIL_VERSION_INT,
1148 };
1149
1150 AVCodec ff_libvpx_vp9_encoder = {
1151     .name           = "libvpx-vp9",
1152     .long_name      = NULL_IF_CONFIG_SMALL("libvpx VP9"),
1153     .type           = AVMEDIA_TYPE_VIDEO,
1154     .id             = AV_CODEC_ID_VP9,
1155     .priv_data_size = sizeof(VPxContext),
1156     .init           = vp9_init,
1157     .encode2        = vpx_encode,
1158     .close          = vpx_free,
1159     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1160     .profiles       = NULL_IF_CONFIG_SMALL(ff_vp9_profiles),
1161     .priv_class     = &class_vp9,
1162     .defaults       = defaults,
1163     .init_static_data = ff_vp9_init_static,
1164 };
1165 #endif /* CONFIG_LIBVPX_VP9_ENCODER */