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