]> git.sesse.net Git - ffmpeg/blob - libavcodec/libvpxenc.c
Merge commit '54dd9b1cdd9e54f1ee39ae25af0324f8aba2831b'
[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, ctx->auto_alt_ref);
625     if (ctx->arnr_max_frames >= 0)
626         codecctl_int(avctx, VP8E_SET_ARNR_MAXFRAMES,   ctx->arnr_max_frames);
627     if (ctx->arnr_strength >= 0)
628         codecctl_int(avctx, VP8E_SET_ARNR_STRENGTH,    ctx->arnr_strength);
629     if (ctx->arnr_type >= 0)
630         codecctl_int(avctx, VP8E_SET_ARNR_TYPE,        ctx->arnr_type);
631     if (ctx->tune >= 0)
632         codecctl_int(avctx, VP8E_SET_TUNING,           ctx->tune);
633
634     if (CONFIG_LIBVPX_VP8_ENCODER && avctx->codec_id == AV_CODEC_ID_VP8) {
635 #if FF_API_PRIVATE_OPT
636 FF_DISABLE_DEPRECATION_WARNINGS
637         if (avctx->noise_reduction)
638             ctx->noise_sensitivity = avctx->noise_reduction;
639 FF_ENABLE_DEPRECATION_WARNINGS
640 #endif
641         codecctl_int(avctx, VP8E_SET_NOISE_SENSITIVITY, ctx->noise_sensitivity);
642         codecctl_int(avctx, VP8E_SET_TOKEN_PARTITIONS,  av_log2(avctx->slices));
643     }
644 #if FF_API_MPV_OPT
645     FF_DISABLE_DEPRECATION_WARNINGS
646     if (avctx->mb_threshold) {
647         av_log(avctx, AV_LOG_WARNING, "The mb_threshold option is deprecated, "
648                "use the static-thresh private option instead.\n");
649         ctx->static_thresh = avctx->mb_threshold;
650     }
651     FF_ENABLE_DEPRECATION_WARNINGS
652 #endif
653     codecctl_int(avctx, VP8E_SET_STATIC_THRESHOLD,  ctx->static_thresh);
654     if (ctx->crf >= 0)
655         codecctl_int(avctx, VP8E_SET_CQ_LEVEL,          ctx->crf);
656     if (ctx->max_intra_rate >= 0)
657         codecctl_int(avctx, VP8E_SET_MAX_INTRA_BITRATE_PCT, ctx->max_intra_rate);
658
659 #if CONFIG_LIBVPX_VP9_ENCODER
660     if (avctx->codec_id == AV_CODEC_ID_VP9) {
661         if (ctx->lossless >= 0)
662             codecctl_int(avctx, VP9E_SET_LOSSLESS, ctx->lossless);
663         if (ctx->tile_columns >= 0)
664             codecctl_int(avctx, VP9E_SET_TILE_COLUMNS, ctx->tile_columns);
665         if (ctx->tile_rows >= 0)
666             codecctl_int(avctx, VP9E_SET_TILE_ROWS, ctx->tile_rows);
667         if (ctx->frame_parallel >= 0)
668             codecctl_int(avctx, VP9E_SET_FRAME_PARALLEL_DECODING, ctx->frame_parallel);
669         if (ctx->aq_mode >= 0)
670             codecctl_int(avctx, VP9E_SET_AQ_MODE, ctx->aq_mode);
671 #if VPX_ENCODER_ABI_VERSION > 8
672         set_colorspace(avctx);
673 #endif
674 #if VPX_ENCODER_ABI_VERSION >= 11
675         set_color_range(avctx);
676 #endif
677     }
678 #endif
679
680     av_log(avctx, AV_LOG_DEBUG, "Using deadline: %d\n", ctx->deadline);
681
682     //provide dummy value to initialize wrapper, values will be updated each _encode()
683     vpx_img_wrap(&ctx->rawimg, img_fmt, avctx->width, avctx->height, 1,
684                  (unsigned char*)1);
685 #if CONFIG_LIBVPX_VP9_ENCODER && defined(VPX_IMG_FMT_HIGHBITDEPTH)
686     if (avctx->codec_id == AV_CODEC_ID_VP9 && (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH))
687         ctx->rawimg.bit_depth = enccfg.g_bit_depth;
688 #endif
689
690     if (ctx->is_alpha)
691         vpx_img_wrap(&ctx->rawimg_alpha, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
692                      (unsigned char*)1);
693
694     cpb_props = ff_add_cpb_side_data(avctx);
695     if (!cpb_props)
696         return AVERROR(ENOMEM);
697
698     if (enccfg.rc_end_usage == VPX_CBR ||
699         enccfg.g_pass != VPX_RC_ONE_PASS) {
700         cpb_props->max_bitrate = avctx->rc_max_rate;
701         cpb_props->min_bitrate = avctx->rc_min_rate;
702         cpb_props->avg_bitrate = avctx->bit_rate;
703     }
704     cpb_props->buffer_size = avctx->rc_buffer_size;
705
706     return 0;
707 }
708
709 static inline void cx_pktcpy(struct FrameListData *dst,
710                              const struct vpx_codec_cx_pkt *src,
711                              const struct vpx_codec_cx_pkt *src_alpha,
712                              VPxContext *ctx)
713 {
714     dst->pts      = src->data.frame.pts;
715     dst->duration = src->data.frame.duration;
716     dst->flags    = src->data.frame.flags;
717     dst->sz       = src->data.frame.sz;
718     dst->buf      = src->data.frame.buf;
719     dst->have_sse = 0;
720     /* For alt-ref frame, don't store PSNR or increment frame_number */
721     if (!(dst->flags & VPX_FRAME_IS_INVISIBLE)) {
722         dst->frame_number = ++ctx->frame_number;
723         dst->have_sse = ctx->have_sse;
724         if (ctx->have_sse) {
725             /* associate last-seen SSE to the frame. */
726             /* Transfers ownership from ctx to dst. */
727             /* WARNING! This makes the assumption that PSNR_PKT comes
728                just before the frame it refers to! */
729             memcpy(dst->sse, ctx->sse, sizeof(dst->sse));
730             ctx->have_sse = 0;
731         }
732     } else {
733         dst->frame_number = -1;   /* sanity marker */
734     }
735     if (src_alpha) {
736         dst->buf_alpha = src_alpha->data.frame.buf;
737         dst->sz_alpha = src_alpha->data.frame.sz;
738     } else {
739         dst->buf_alpha = NULL;
740         dst->sz_alpha = 0;
741     }
742 }
743
744 /**
745  * Store coded frame information in format suitable for return from encode2().
746  *
747  * Write information from @a cx_frame to @a pkt
748  * @return packet data size on success
749  * @return a negative AVERROR on error
750  */
751 static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame,
752                       AVPacket *pkt)
753 {
754     int ret = ff_alloc_packet2(avctx, pkt, cx_frame->sz, 0);
755     uint8_t *side_data;
756     if (ret >= 0) {
757         int pict_type;
758         memcpy(pkt->data, cx_frame->buf, pkt->size);
759         pkt->pts = pkt->dts = cx_frame->pts;
760 #if FF_API_CODED_FRAME
761 FF_DISABLE_DEPRECATION_WARNINGS
762         avctx->coded_frame->pts       = cx_frame->pts;
763         avctx->coded_frame->key_frame = !!(cx_frame->flags & VPX_FRAME_IS_KEY);
764 FF_ENABLE_DEPRECATION_WARNINGS
765 #endif
766
767         if (!!(cx_frame->flags & VPX_FRAME_IS_KEY)) {
768             pict_type = AV_PICTURE_TYPE_I;
769 #if FF_API_CODED_FRAME
770 FF_DISABLE_DEPRECATION_WARNINGS
771             avctx->coded_frame->pict_type = pict_type;
772 FF_ENABLE_DEPRECATION_WARNINGS
773 #endif
774             pkt->flags |= AV_PKT_FLAG_KEY;
775         } else {
776             pict_type = AV_PICTURE_TYPE_P;
777 #if FF_API_CODED_FRAME
778 FF_DISABLE_DEPRECATION_WARNINGS
779             avctx->coded_frame->pict_type = pict_type;
780 FF_ENABLE_DEPRECATION_WARNINGS
781 #endif
782         }
783
784         ff_side_data_set_encoder_stats(pkt, 0, cx_frame->sse + 1,
785                                        cx_frame->have_sse ? 3 : 0, pict_type);
786
787         if (cx_frame->have_sse) {
788             int i;
789             /* Beware of the Y/U/V/all order! */
790 #if FF_API_CODED_FRAME
791 FF_DISABLE_DEPRECATION_WARNINGS
792             avctx->coded_frame->error[0] = cx_frame->sse[1];
793             avctx->coded_frame->error[1] = cx_frame->sse[2];
794             avctx->coded_frame->error[2] = cx_frame->sse[3];
795             avctx->coded_frame->error[3] = 0;    // alpha
796 FF_ENABLE_DEPRECATION_WARNINGS
797 #endif
798             for (i = 0; i < 3; ++i) {
799                 avctx->error[i] += cx_frame->sse[i + 1];
800             }
801             cx_frame->have_sse = 0;
802         }
803         if (cx_frame->sz_alpha > 0) {
804             side_data = av_packet_new_side_data(pkt,
805                                                 AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
806                                                 cx_frame->sz_alpha + 8);
807             if(!side_data) {
808                 av_packet_unref(pkt);
809                 av_free(pkt);
810                 return AVERROR(ENOMEM);
811             }
812             AV_WB64(side_data, 1);
813             memcpy(side_data + 8, cx_frame->buf_alpha, cx_frame->sz_alpha);
814         }
815     } else {
816         return ret;
817     }
818     return pkt->size;
819 }
820
821 /**
822  * Queue multiple output frames from the encoder, returning the front-most.
823  * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
824  * the frame queue. Return the head frame if available.
825  * @return Stored frame size
826  * @return AVERROR(EINVAL) on output size error
827  * @return AVERROR(ENOMEM) on coded frame queue data allocation error
828  */
829 static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out)
830 {
831     VPxContext *ctx = avctx->priv_data;
832     const struct vpx_codec_cx_pkt *pkt;
833     const struct vpx_codec_cx_pkt *pkt_alpha = NULL;
834     const void *iter = NULL;
835     const void *iter_alpha = NULL;
836     int size = 0;
837
838     if (ctx->coded_frame_list) {
839         struct FrameListData *cx_frame = ctx->coded_frame_list;
840         /* return the leading frame if we've already begun queueing */
841         size = storeframe(avctx, cx_frame, pkt_out);
842         if (size < 0)
843             return size;
844         ctx->coded_frame_list = cx_frame->next;
845         free_coded_frame(cx_frame);
846     }
847
848     /* consume all available output from the encoder before returning. buffers
849        are only good through the next vpx_codec call */
850     while ((pkt = vpx_codec_get_cx_data(&ctx->encoder, &iter)) &&
851            (!ctx->is_alpha ||
852             (ctx->is_alpha && (pkt_alpha = vpx_codec_get_cx_data(&ctx->encoder_alpha, &iter_alpha))))) {
853         switch (pkt->kind) {
854         case VPX_CODEC_CX_FRAME_PKT:
855             if (!size) {
856                 struct FrameListData cx_frame;
857
858                 /* avoid storing the frame when the list is empty and we haven't yet
859                    provided a frame for output */
860                 av_assert0(!ctx->coded_frame_list);
861                 cx_pktcpy(&cx_frame, pkt, pkt_alpha, ctx);
862                 size = storeframe(avctx, &cx_frame, pkt_out);
863                 if (size < 0)
864                     return size;
865             } else {
866                 struct FrameListData *cx_frame =
867                     av_malloc(sizeof(struct FrameListData));
868
869                 if (!cx_frame) {
870                     av_log(avctx, AV_LOG_ERROR,
871                            "Frame queue element alloc failed\n");
872                     return AVERROR(ENOMEM);
873                 }
874                 cx_pktcpy(cx_frame, pkt, pkt_alpha, ctx);
875                 cx_frame->buf = av_malloc(cx_frame->sz);
876
877                 if (!cx_frame->buf) {
878                     av_log(avctx, AV_LOG_ERROR,
879                            "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
880                            cx_frame->sz);
881                     av_freep(&cx_frame);
882                     return AVERROR(ENOMEM);
883                 }
884                 memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
885                 if (ctx->is_alpha) {
886                     cx_frame->buf_alpha = av_malloc(cx_frame->sz_alpha);
887                     if (!cx_frame->buf_alpha) {
888                         av_log(avctx, AV_LOG_ERROR,
889                                "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
890                                cx_frame->sz_alpha);
891                         av_free(cx_frame);
892                         return AVERROR(ENOMEM);
893                     }
894                     memcpy(cx_frame->buf_alpha, pkt_alpha->data.frame.buf, pkt_alpha->data.frame.sz);
895                 }
896                 coded_frame_add(&ctx->coded_frame_list, cx_frame);
897             }
898             break;
899         case VPX_CODEC_STATS_PKT: {
900             struct vpx_fixed_buf *stats = &ctx->twopass_stats;
901             int err;
902             if ((err = av_reallocp(&stats->buf,
903                                    stats->sz +
904                                    pkt->data.twopass_stats.sz)) < 0) {
905                 stats->sz = 0;
906                 av_log(avctx, AV_LOG_ERROR, "Stat buffer realloc failed\n");
907                 return err;
908             }
909             memcpy((uint8_t*)stats->buf + stats->sz,
910                    pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
911             stats->sz += pkt->data.twopass_stats.sz;
912             break;
913         }
914         case VPX_CODEC_PSNR_PKT:
915             av_assert0(!ctx->have_sse);
916             ctx->sse[0] = pkt->data.psnr.sse[0];
917             ctx->sse[1] = pkt->data.psnr.sse[1];
918             ctx->sse[2] = pkt->data.psnr.sse[2];
919             ctx->sse[3] = pkt->data.psnr.sse[3];
920             ctx->have_sse = 1;
921             break;
922         case VPX_CODEC_CUSTOM_PKT:
923             //ignore unsupported/unrecognized packet types
924             break;
925         }
926     }
927
928     return size;
929 }
930
931 static int vpx_encode(AVCodecContext *avctx, AVPacket *pkt,
932                       const AVFrame *frame, int *got_packet)
933 {
934     VPxContext *ctx = avctx->priv_data;
935     struct vpx_image *rawimg = NULL;
936     struct vpx_image *rawimg_alpha = NULL;
937     int64_t timestamp = 0;
938     int res, coded_size;
939     vpx_enc_frame_flags_t flags = 0;
940
941     if (frame) {
942         rawimg                      = &ctx->rawimg;
943         rawimg->planes[VPX_PLANE_Y] = frame->data[0];
944         rawimg->planes[VPX_PLANE_U] = frame->data[1];
945         rawimg->planes[VPX_PLANE_V] = frame->data[2];
946         rawimg->stride[VPX_PLANE_Y] = frame->linesize[0];
947         rawimg->stride[VPX_PLANE_U] = frame->linesize[1];
948         rawimg->stride[VPX_PLANE_V] = frame->linesize[2];
949         if (ctx->is_alpha) {
950             uint8_t *u_plane, *v_plane;
951             rawimg_alpha = &ctx->rawimg_alpha;
952             rawimg_alpha->planes[VPX_PLANE_Y] = frame->data[3];
953             u_plane = av_malloc(frame->linesize[1] * frame->height);
954             v_plane = av_malloc(frame->linesize[2] * frame->height);
955             if (!u_plane || !v_plane) {
956                 av_free(u_plane);
957                 av_free(v_plane);
958                 return AVERROR(ENOMEM);
959             }
960             memset(u_plane, 0x80, frame->linesize[1] * frame->height);
961             rawimg_alpha->planes[VPX_PLANE_U] = u_plane;
962             memset(v_plane, 0x80, frame->linesize[2] * frame->height);
963             rawimg_alpha->planes[VPX_PLANE_V] = v_plane;
964             rawimg_alpha->stride[VPX_PLANE_Y] = frame->linesize[0];
965             rawimg_alpha->stride[VPX_PLANE_U] = frame->linesize[1];
966             rawimg_alpha->stride[VPX_PLANE_V] = frame->linesize[2];
967         }
968         timestamp                   = frame->pts;
969         if (frame->pict_type == AV_PICTURE_TYPE_I)
970             flags |= VPX_EFLAG_FORCE_KF;
971     }
972
973     res = vpx_codec_encode(&ctx->encoder, rawimg, timestamp,
974                            avctx->ticks_per_frame, flags, ctx->deadline);
975     if (res != VPX_CODEC_OK) {
976         log_encoder_error(avctx, "Error encoding frame");
977         return AVERROR_INVALIDDATA;
978     }
979
980     if (ctx->is_alpha) {
981         res = vpx_codec_encode(&ctx->encoder_alpha, rawimg_alpha, timestamp,
982                                avctx->ticks_per_frame, flags, ctx->deadline);
983         if (res != VPX_CODEC_OK) {
984             log_encoder_error(avctx, "Error encoding alpha frame");
985             return AVERROR_INVALIDDATA;
986         }
987     }
988
989     coded_size = queue_frames(avctx, pkt);
990
991     if (!frame && avctx->flags & AV_CODEC_FLAG_PASS1) {
992         unsigned int b64_size = AV_BASE64_SIZE(ctx->twopass_stats.sz);
993
994         avctx->stats_out = av_malloc(b64_size);
995         if (!avctx->stats_out) {
996             av_log(avctx, AV_LOG_ERROR, "Stat buffer alloc (%d bytes) failed\n",
997                    b64_size);
998             return AVERROR(ENOMEM);
999         }
1000         av_base64_encode(avctx->stats_out, b64_size, ctx->twopass_stats.buf,
1001                          ctx->twopass_stats.sz);
1002     }
1003
1004     if (rawimg_alpha) {
1005         av_freep(&rawimg_alpha->planes[VPX_PLANE_U]);
1006         av_freep(&rawimg_alpha->planes[VPX_PLANE_V]);
1007     }
1008
1009     *got_packet = !!coded_size;
1010     return 0;
1011 }
1012
1013 #define OFFSET(x) offsetof(VPxContext, x)
1014 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1015
1016 #ifndef VPX_ERROR_RESILIENT_DEFAULT
1017 #define VPX_ERROR_RESILIENT_DEFAULT 1
1018 #define VPX_ERROR_RESILIENT_PARTITIONS 2
1019 #endif
1020
1021 #define COMMON_OPTIONS \
1022     { "auto-alt-ref",    "Enable use of alternate reference " \
1023                          "frames (2-pass only)",                   OFFSET(auto_alt_ref),    AV_OPT_TYPE_BOOL, {.i64 = -1},     -1,      1,       VE}, \
1024     { "lag-in-frames",   "Number of frames to look ahead for " \
1025                          "alternate reference frame selection",    OFFSET(lag_in_frames),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1026     { "arnr-maxframes",  "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1027     { "arnr-strength",   "altref noise reduction filter strength", OFFSET(arnr_strength),   AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE}, \
1028     { "arnr-type",       "altref noise reduction filter type",     OFFSET(arnr_type),       AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE, "arnr_type"}, \
1029     { "backward",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \
1030     { "forward",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \
1031     { "centered",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \
1032     { "tune",            "Tune the encoding to a specific scenario", OFFSET(tune),          AV_OPT_TYPE_INT, {.i64 = -1},      -1,      INT_MAX, VE, "tune"}, \
1033     { "psnr",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_PSNR}, 0, 0, VE, "tune"}, \
1034     { "ssim",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_SSIM}, 0, 0, VE, "tune"}, \
1035     { "deadline",        "Time to spend encoding, in microseconds.", OFFSET(deadline),      AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
1036     { "best",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \
1037     { "good",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \
1038     { "realtime",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME},     0, 0, VE, "quality"}, \
1039     { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, VE, "er"}, \
1040     { "max-intra-rate",  "Maximum I-frame bitrate (pct) 0=unlimited",  OFFSET(max_intra_rate),  AV_OPT_TYPE_INT,  {.i64 = -1}, -1,      INT_MAX, VE}, \
1041     { "default",         "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"}, \
1042     { "partitions",      "The frame partitions are independently decodable " \
1043                          "by the bool decoder, meaning that partitions can be decoded even " \
1044                          "though earlier partitions have been lost. Note that intra predicition" \
1045                          " is still done over the partition boundary.",       0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"}, \
1046     { "crf",              "Select the quality for constant quality mode", offsetof(VPxContext, crf), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 63, VE }, \
1047     { "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 }, \
1048     { "drop-threshold",   "Frame drop threshold", offsetof(VPxContext, drop_threshold), AV_OPT_TYPE_INT, {.i64 = 0 }, INT_MIN, INT_MAX, VE }, \
1049     { "noise-sensitivity", "Noise sensitivity", OFFSET(noise_sensitivity), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 4, VE}, \
1050     { "undershoot-pct",  "Datarate undershoot (min) target (%)", OFFSET(rc_undershoot_pct), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 100, VE }, \
1051     { "overshoot-pct",   "Datarate overshoot (max) target (%)", OFFSET(rc_overshoot_pct), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1000, VE }, \
1052
1053 #define LEGACY_OPTIONS \
1054     {"speed", "", offsetof(VPxContext, cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
1055     {"quality", "", offsetof(VPxContext, deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
1056     {"vp8flags", "", offsetof(VPxContext, flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX, VE, "flags"}, \
1057     {"error_resilient", "enable error resilience", 0, AV_OPT_TYPE_CONST, {.i64 = VP8F_ERROR_RESILIENT}, INT_MIN, INT_MAX, VE, "flags"}, \
1058     {"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"}, \
1059     {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VPxContext, arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15, VE}, \
1060     {"arnr_strength", "altref noise reduction filter strength", offsetof(VPxContext, arnr_strength), AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6, VE}, \
1061     {"arnr_type", "altref noise reduction filter type", offsetof(VPxContext, arnr_type), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 3, VE}, \
1062     {"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}, \
1063
1064 #if CONFIG_LIBVPX_VP8_ENCODER
1065 static const AVOption vp8_options[] = {
1066     COMMON_OPTIONS
1067     { "cpu-used",        "Quality/Speed ratio modifier",                OFFSET(cpu_used),        AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE},
1068     LEGACY_OPTIONS
1069     { NULL }
1070 };
1071 #endif
1072
1073 #if CONFIG_LIBVPX_VP9_ENCODER
1074 static const AVOption vp9_options[] = {
1075     COMMON_OPTIONS
1076     { "cpu-used",        "Quality/Speed ratio modifier",                OFFSET(cpu_used),        AV_OPT_TYPE_INT, {.i64 = 1},  -8, 8, VE},
1077     { "lossless",        "Lossless mode",                               OFFSET(lossless),        AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE},
1078     { "tile-columns",    "Number of tile columns to use, log2",         OFFSET(tile_columns),    AV_OPT_TYPE_INT, {.i64 = -1}, -1, 6, VE},
1079     { "tile-rows",       "Number of tile rows to use, log2",            OFFSET(tile_rows),       AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2, VE},
1080     { "frame-parallel",  "Enable frame parallel decodability features", OFFSET(frame_parallel),  AV_OPT_TYPE_BOOL,{.i64 = -1}, -1, 1, VE},
1081     { "aq-mode",         "adaptive quantization mode",                  OFFSET(aq_mode),         AV_OPT_TYPE_INT, {.i64 = -1}, -1, 3, VE, "aq_mode"},
1082     { "none",            "Aq not used",         0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 0, VE, "aq_mode" },
1083     { "variance",        "Variance based Aq",   0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "aq_mode" },
1084     { "complexity",      "Complexity based Aq", 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "aq_mode" },
1085     { "cyclic",          "Cyclic Refresh Aq",   0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "aq_mode" },
1086     LEGACY_OPTIONS
1087     { NULL }
1088 };
1089 #endif
1090
1091 #undef COMMON_OPTIONS
1092 #undef LEGACY_OPTIONS
1093
1094 static const AVCodecDefault defaults[] = {
1095     { "qmin",             "-1" },
1096     { "qmax",             "-1" },
1097     { "g",                "-1" },
1098     { "keyint_min",       "-1" },
1099     { NULL },
1100 };
1101
1102 #if CONFIG_LIBVPX_VP8_ENCODER
1103 static av_cold int vp8_init(AVCodecContext *avctx)
1104 {
1105     return vpx_init(avctx, vpx_codec_vp8_cx());
1106 }
1107
1108 static const AVClass class_vp8 = {
1109     .class_name = "libvpx-vp8 encoder",
1110     .item_name  = av_default_item_name,
1111     .option     = vp8_options,
1112     .version    = LIBAVUTIL_VERSION_INT,
1113 };
1114
1115 AVCodec ff_libvpx_vp8_encoder = {
1116     .name           = "libvpx",
1117     .long_name      = NULL_IF_CONFIG_SMALL("libvpx VP8"),
1118     .type           = AVMEDIA_TYPE_VIDEO,
1119     .id             = AV_CODEC_ID_VP8,
1120     .priv_data_size = sizeof(VPxContext),
1121     .init           = vp8_init,
1122     .encode2        = vpx_encode,
1123     .close          = vpx_free,
1124     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1125     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_NONE },
1126     .priv_class     = &class_vp8,
1127     .defaults       = defaults,
1128 };
1129 #endif /* CONFIG_LIBVPX_VP8_ENCODER */
1130
1131 #if CONFIG_LIBVPX_VP9_ENCODER
1132 static av_cold int vp9_init(AVCodecContext *avctx)
1133 {
1134     return vpx_init(avctx, vpx_codec_vp9_cx());
1135 }
1136
1137 static const AVClass class_vp9 = {
1138     .class_name = "libvpx-vp9 encoder",
1139     .item_name  = av_default_item_name,
1140     .option     = vp9_options,
1141     .version    = LIBAVUTIL_VERSION_INT,
1142 };
1143
1144 AVCodec ff_libvpx_vp9_encoder = {
1145     .name           = "libvpx-vp9",
1146     .long_name      = NULL_IF_CONFIG_SMALL("libvpx VP9"),
1147     .type           = AVMEDIA_TYPE_VIDEO,
1148     .id             = AV_CODEC_ID_VP9,
1149     .priv_data_size = sizeof(VPxContext),
1150     .init           = vp9_init,
1151     .encode2        = vpx_encode,
1152     .close          = vpx_free,
1153     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1154     .profiles       = NULL_IF_CONFIG_SMALL(ff_vp9_profiles),
1155     .priv_class     = &class_vp9,
1156     .defaults       = defaults,
1157     .init_static_data = ff_vp9_init_static,
1158 };
1159 #endif /* CONFIG_LIBVPX_VP9_ENCODER */