]> git.sesse.net Git - ffmpeg/blob - libavcodec/libvpxenc.c
Don't include common.h from avutil.h
[ffmpeg] / libavcodec / libvpxenc.c
1 /*
2  * Copyright (c) 2010, Google, Inc.
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; 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/base64.h"
34 #include "libavutil/common.h"
35 #include "libavutil/mathematics.h"
36 #include "libavutil/opt.h"
37
38 /**
39  * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
40  * One encoded frame returned from the library.
41  */
42 struct FrameListData {
43     void *buf;                       /**< compressed data buffer */
44     size_t sz;                       /**< length of compressed data */
45     int64_t pts;                     /**< time stamp to show frame
46                                           (in timebase units) */
47     unsigned long duration;          /**< duration to show frame
48                                           (in timebase units) */
49     uint32_t flags;                  /**< flags for this frame */
50     struct FrameListData *next;
51 };
52
53 typedef struct VP8EncoderContext {
54     AVClass *class;
55     struct vpx_codec_ctx encoder;
56     struct vpx_image rawimg;
57     struct vpx_fixed_buf twopass_stats;
58     unsigned long deadline; //i.e., RT/GOOD/BEST
59     struct FrameListData *coded_frame_list;
60     int cpu_used;
61     int auto_alt_ref;
62     int arnr_max_frames;
63     int arnr_strength;
64     int arnr_type;
65     int lag_in_frames;
66     int error_resilient;
67 } VP8Context;
68
69 /** String mappings for enum vp8e_enc_control_id */
70 static const char *const ctlidstr[] = {
71     [VP8E_UPD_ENTROPY]           = "VP8E_UPD_ENTROPY",
72     [VP8E_UPD_REFERENCE]         = "VP8E_UPD_REFERENCE",
73     [VP8E_USE_REFERENCE]         = "VP8E_USE_REFERENCE",
74     [VP8E_SET_ROI_MAP]           = "VP8E_SET_ROI_MAP",
75     [VP8E_SET_ACTIVEMAP]         = "VP8E_SET_ACTIVEMAP",
76     [VP8E_SET_SCALEMODE]         = "VP8E_SET_SCALEMODE",
77     [VP8E_SET_CPUUSED]           = "VP8E_SET_CPUUSED",
78     [VP8E_SET_ENABLEAUTOALTREF]  = "VP8E_SET_ENABLEAUTOALTREF",
79     [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
80     [VP8E_SET_SHARPNESS]         = "VP8E_SET_SHARPNESS",
81     [VP8E_SET_STATIC_THRESHOLD]  = "VP8E_SET_STATIC_THRESHOLD",
82     [VP8E_SET_TOKEN_PARTITIONS]  = "VP8E_SET_TOKEN_PARTITIONS",
83     [VP8E_GET_LAST_QUANTIZER]    = "VP8E_GET_LAST_QUANTIZER",
84     [VP8E_SET_ARNR_MAXFRAMES]    = "VP8E_SET_ARNR_MAXFRAMES",
85     [VP8E_SET_ARNR_STRENGTH]     = "VP8E_SET_ARNR_STRENGTH",
86     [VP8E_SET_ARNR_TYPE]         = "VP8E_SET_ARNR_TYPE",
87 };
88
89 static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)
90 {
91     VP8Context *ctx = avctx->priv_data;
92     const char *error  = vpx_codec_error(&ctx->encoder);
93     const char *detail = vpx_codec_error_detail(&ctx->encoder);
94
95     av_log(avctx, AV_LOG_ERROR, "%s: %s\n", desc, error);
96     if (detail)
97         av_log(avctx, AV_LOG_ERROR, "  Additional information: %s\n", detail);
98 }
99
100 static av_cold void dump_enc_cfg(AVCodecContext *avctx,
101                                  const struct vpx_codec_enc_cfg *cfg)
102 {
103     int width = -30;
104     int level = AV_LOG_DEBUG;
105
106     av_log(avctx, level, "vpx_codec_enc_cfg\n");
107     av_log(avctx, level, "generic settings\n"
108            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n"
109            "  %*s{%u/%u}\n  %*s%u\n  %*s%d\n  %*s%u\n",
110            width, "g_usage:",           cfg->g_usage,
111            width, "g_threads:",         cfg->g_threads,
112            width, "g_profile:",         cfg->g_profile,
113            width, "g_w:",               cfg->g_w,
114            width, "g_h:",               cfg->g_h,
115            width, "g_timebase:",        cfg->g_timebase.num, cfg->g_timebase.den,
116            width, "g_error_resilient:", cfg->g_error_resilient,
117            width, "g_pass:",            cfg->g_pass,
118            width, "g_lag_in_frames:",   cfg->g_lag_in_frames);
119     av_log(avctx, level, "rate control settings\n"
120            "  %*s%u\n  %*s%u\n  %*s%u\n  %*s%u\n"
121            "  %*s%d\n  %*s%p(%zu)\n  %*s%u\n",
122            width, "rc_dropframe_thresh:",   cfg->rc_dropframe_thresh,
123            width, "rc_resize_allowed:",     cfg->rc_resize_allowed,
124            width, "rc_resize_up_thresh:",   cfg->rc_resize_up_thresh,
125            width, "rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
126            width, "rc_end_usage:",          cfg->rc_end_usage,
127            width, "rc_twopass_stats_in:",   cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
128            width, "rc_target_bitrate:",     cfg->rc_target_bitrate);
129     av_log(avctx, level, "quantizer settings\n"
130            "  %*s%u\n  %*s%u\n",
131            width, "rc_min_quantizer:", cfg->rc_min_quantizer,
132            width, "rc_max_quantizer:", cfg->rc_max_quantizer);
133     av_log(avctx, level, "bitrate tolerance\n"
134            "  %*s%u\n  %*s%u\n",
135            width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
136            width, "rc_overshoot_pct:",  cfg->rc_overshoot_pct);
137     av_log(avctx, level, "decoder buffer model\n"
138             "  %*s%u\n  %*s%u\n  %*s%u\n",
139             width, "rc_buf_sz:",         cfg->rc_buf_sz,
140             width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
141             width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
142     av_log(avctx, level, "2 pass rate control settings\n"
143            "  %*s%u\n  %*s%u\n  %*s%u\n",
144            width, "rc_2pass_vbr_bias_pct:",       cfg->rc_2pass_vbr_bias_pct,
145            width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
146            width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
147     av_log(avctx, level, "keyframing settings\n"
148            "  %*s%d\n  %*s%u\n  %*s%u\n",
149            width, "kf_mode:",     cfg->kf_mode,
150            width, "kf_min_dist:", cfg->kf_min_dist,
151            width, "kf_max_dist:", cfg->kf_max_dist);
152     av_log(avctx, level, "\n");
153 }
154
155 static void coded_frame_add(void *list, struct FrameListData *cx_frame)
156 {
157     struct FrameListData **p = list;
158
159     while (*p != NULL)
160         p = &(*p)->next;
161     *p = cx_frame;
162     cx_frame->next = NULL;
163 }
164
165 static av_cold void free_coded_frame(struct FrameListData *cx_frame)
166 {
167     av_freep(&cx_frame->buf);
168     av_freep(&cx_frame);
169 }
170
171 static av_cold void free_frame_list(struct FrameListData *list)
172 {
173     struct FrameListData *p = list;
174
175     while (p) {
176         list = list->next;
177         free_coded_frame(p);
178         p = list;
179     }
180 }
181
182 static av_cold int codecctl_int(AVCodecContext *avctx,
183                                 enum vp8e_enc_control_id id, int val)
184 {
185     VP8Context *ctx = avctx->priv_data;
186     char buf[80];
187     int width = -30;
188     int res;
189
190     snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
191     av_log(avctx, AV_LOG_DEBUG, "  %*s%d\n", width, buf, val);
192
193     res = vpx_codec_control(&ctx->encoder, id, val);
194     if (res != VPX_CODEC_OK) {
195         snprintf(buf, sizeof(buf), "Failed to set %s codec control",
196                  ctlidstr[id]);
197         log_encoder_error(avctx, buf);
198     }
199
200     return res == VPX_CODEC_OK ? 0 : AVERROR(EINVAL);
201 }
202
203 static av_cold int vp8_free(AVCodecContext *avctx)
204 {
205     VP8Context *ctx = avctx->priv_data;
206
207     vpx_codec_destroy(&ctx->encoder);
208     av_freep(&ctx->twopass_stats.buf);
209     av_freep(&avctx->coded_frame);
210     av_freep(&avctx->stats_out);
211     free_frame_list(ctx->coded_frame_list);
212     return 0;
213 }
214
215 static av_cold int vp8_init(AVCodecContext *avctx)
216 {
217     VP8Context *ctx = avctx->priv_data;
218     const struct vpx_codec_iface *iface = &vpx_codec_vp8_cx_algo;
219     struct vpx_codec_enc_cfg enccfg;
220     int res;
221
222     av_log(avctx, AV_LOG_INFO, "%s\n", vpx_codec_version_str());
223     av_log(avctx, AV_LOG_VERBOSE, "%s\n", vpx_codec_build_config());
224
225     if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
226         av_log(avctx, AV_LOG_ERROR, "Failed to get config: %s\n",
227                vpx_codec_err_to_string(res));
228         return AVERROR(EINVAL);
229     }
230     dump_enc_cfg(avctx, &enccfg);
231
232     enccfg.g_w            = avctx->width;
233     enccfg.g_h            = avctx->height;
234     enccfg.g_timebase.num = avctx->time_base.num;
235     enccfg.g_timebase.den = avctx->time_base.den;
236     enccfg.g_threads      = avctx->thread_count;
237
238     if (ctx->lag_in_frames >= 0)
239         enccfg.g_lag_in_frames = ctx->lag_in_frames;
240
241     if (avctx->flags & CODEC_FLAG_PASS1)
242         enccfg.g_pass = VPX_RC_FIRST_PASS;
243     else if (avctx->flags & CODEC_FLAG_PASS2)
244         enccfg.g_pass = VPX_RC_LAST_PASS;
245     else
246         enccfg.g_pass = VPX_RC_ONE_PASS;
247
248     if (avctx->rc_min_rate == avctx->rc_max_rate &&
249         avctx->rc_min_rate == avctx->bit_rate)
250         enccfg.rc_end_usage = VPX_CBR;
251     enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
252                                               AV_ROUND_NEAR_INF);
253     if (avctx->qmin > 0)
254         enccfg.rc_min_quantizer = avctx->qmin;
255     if (avctx->qmax > 0)
256         enccfg.rc_max_quantizer = avctx->qmax;
257     enccfg.rc_dropframe_thresh = avctx->frame_skip_threshold;
258
259     //0-100 (0 => CBR, 100 => VBR)
260     enccfg.rc_2pass_vbr_bias_pct           = round(avctx->qcompress * 100);
261     enccfg.rc_2pass_vbr_minsection_pct     =
262         avctx->rc_min_rate * 100LL / avctx->bit_rate;
263     if (avctx->rc_max_rate)
264         enccfg.rc_2pass_vbr_maxsection_pct =
265             avctx->rc_max_rate * 100LL / avctx->bit_rate;
266
267     if (avctx->rc_buffer_size)
268         enccfg.rc_buf_sz         =
269             avctx->rc_buffer_size * 1000LL / avctx->bit_rate;
270     if (avctx->rc_initial_buffer_occupancy)
271         enccfg.rc_buf_initial_sz =
272             avctx->rc_initial_buffer_occupancy * 1000LL / avctx->bit_rate;
273     enccfg.rc_buf_optimal_sz     = enccfg.rc_buf_sz * 5 / 6;
274
275     //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
276     if (avctx->keyint_min >= 0 && avctx->keyint_min == avctx->gop_size)
277         enccfg.kf_min_dist = avctx->keyint_min;
278     if (avctx->gop_size >= 0)
279         enccfg.kf_max_dist = avctx->gop_size;
280
281     if (enccfg.g_pass == VPX_RC_FIRST_PASS)
282         enccfg.g_lag_in_frames = 0;
283     else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
284         int decode_size;
285
286         if (!avctx->stats_in) {
287             av_log(avctx, AV_LOG_ERROR, "No stats file for second pass\n");
288             return AVERROR_INVALIDDATA;
289         }
290
291         ctx->twopass_stats.sz  = strlen(avctx->stats_in) * 3 / 4;
292         ctx->twopass_stats.buf = av_malloc(ctx->twopass_stats.sz);
293         if (!ctx->twopass_stats.buf) {
294             av_log(avctx, AV_LOG_ERROR,
295                    "Stat buffer alloc (%zu bytes) failed\n",
296                    ctx->twopass_stats.sz);
297             return AVERROR(ENOMEM);
298         }
299         decode_size = av_base64_decode(ctx->twopass_stats.buf, avctx->stats_in,
300                                        ctx->twopass_stats.sz);
301         if (decode_size < 0) {
302             av_log(avctx, AV_LOG_ERROR, "Stat buffer decode failed\n");
303             return AVERROR_INVALIDDATA;
304         }
305
306         ctx->twopass_stats.sz      = decode_size;
307         enccfg.rc_twopass_stats_in = ctx->twopass_stats;
308     }
309
310     /* 0-3: For non-zero values the encoder increasingly optimizes for reduced
311        complexity playback on low powered devices at the expense of encode
312        quality. */
313    if (avctx->profile != FF_PROFILE_UNKNOWN)
314        enccfg.g_profile = avctx->profile;
315
316     enccfg.g_error_resilient = ctx->error_resilient;
317
318     dump_enc_cfg(avctx, &enccfg);
319     /* Construct Encoder Context */
320     res = vpx_codec_enc_init(&ctx->encoder, iface, &enccfg, 0);
321     if (res != VPX_CODEC_OK) {
322         log_encoder_error(avctx, "Failed to initialize encoder");
323         return AVERROR(EINVAL);
324     }
325
326     //codec control failures are currently treated only as warnings
327     av_log(avctx, AV_LOG_DEBUG, "vpx_codec_control\n");
328     if (ctx->cpu_used != INT_MIN)
329         codecctl_int(avctx, VP8E_SET_CPUUSED,          ctx->cpu_used);
330     if (ctx->auto_alt_ref >= 0)
331         codecctl_int(avctx, VP8E_SET_ENABLEAUTOALTREF, ctx->auto_alt_ref);
332     if (ctx->arnr_max_frames >= 0)
333         codecctl_int(avctx, VP8E_SET_ARNR_MAXFRAMES,   ctx->arnr_max_frames);
334     if (ctx->arnr_strength >= 0)
335         codecctl_int(avctx, VP8E_SET_ARNR_STRENGTH,    ctx->arnr_strength);
336     if (ctx->arnr_type >= 0)
337         codecctl_int(avctx, VP8E_SET_ARNR_TYPE,        ctx->arnr_type);
338     codecctl_int(avctx, VP8E_SET_NOISE_SENSITIVITY, avctx->noise_reduction);
339     codecctl_int(avctx, VP8E_SET_TOKEN_PARTITIONS,  av_log2(avctx->slices));
340     codecctl_int(avctx, VP8E_SET_STATIC_THRESHOLD,  avctx->mb_threshold);
341
342     //provide dummy value to initialize wrapper, values will be updated each _encode()
343     vpx_img_wrap(&ctx->rawimg, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
344                  (unsigned char*)1);
345
346     avctx->coded_frame = avcodec_alloc_frame();
347     if (!avctx->coded_frame) {
348         av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
349         vp8_free(avctx);
350         return AVERROR(ENOMEM);
351     }
352     return 0;
353 }
354
355 static inline void cx_pktcpy(struct FrameListData *dst,
356                              const struct vpx_codec_cx_pkt *src)
357 {
358     dst->pts      = src->data.frame.pts;
359     dst->duration = src->data.frame.duration;
360     dst->flags    = src->data.frame.flags;
361     dst->sz       = src->data.frame.sz;
362     dst->buf      = src->data.frame.buf;
363 }
364
365 /**
366  * Store coded frame information in format suitable for return from encode2().
367  *
368  * Write information from @a cx_frame to @a pkt
369  * @return packet data size on success
370  * @return a negative AVERROR on error
371  */
372 static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame,
373                       AVPacket *pkt, AVFrame *coded_frame)
374 {
375     int ret = ff_alloc_packet(pkt, cx_frame->sz);
376     if (ret >= 0) {
377         memcpy(pkt->data, cx_frame->buf, pkt->size);
378         pkt->pts = pkt->dts    = cx_frame->pts;
379         coded_frame->pts       = cx_frame->pts;
380         coded_frame->key_frame = !!(cx_frame->flags & VPX_FRAME_IS_KEY);
381
382         if (coded_frame->key_frame) {
383             coded_frame->pict_type = AV_PICTURE_TYPE_I;
384             pkt->flags            |= AV_PKT_FLAG_KEY;
385         } else
386             coded_frame->pict_type = AV_PICTURE_TYPE_P;
387     } else {
388         av_log(avctx, AV_LOG_ERROR,
389                "Error getting output packet of size %zu.\n", cx_frame->sz);
390         return ret;
391     }
392     return pkt->size;
393 }
394
395 /**
396  * Queue multiple output frames from the encoder, returning the front-most.
397  * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
398  * the frame queue. Return the head frame if available.
399  * @return Stored frame size
400  * @return AVERROR(EINVAL) on output size error
401  * @return AVERROR(ENOMEM) on coded frame queue data allocation error
402  */
403 static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out,
404                         AVFrame *coded_frame)
405 {
406     VP8Context *ctx = avctx->priv_data;
407     const struct vpx_codec_cx_pkt *pkt;
408     const void *iter = NULL;
409     int size = 0;
410
411     if (ctx->coded_frame_list) {
412         struct FrameListData *cx_frame = ctx->coded_frame_list;
413         /* return the leading frame if we've already begun queueing */
414         size = storeframe(avctx, cx_frame, pkt_out, coded_frame);
415         if (size < 0)
416             return size;
417         ctx->coded_frame_list = cx_frame->next;
418         free_coded_frame(cx_frame);
419     }
420
421     /* consume all available output from the encoder before returning. buffers
422        are only good through the next vpx_codec call */
423     while ((pkt = vpx_codec_get_cx_data(&ctx->encoder, &iter))) {
424         switch (pkt->kind) {
425         case VPX_CODEC_CX_FRAME_PKT:
426             if (!size) {
427                 struct FrameListData cx_frame;
428
429                 /* avoid storing the frame when the list is empty and we haven't yet
430                    provided a frame for output */
431                 assert(!ctx->coded_frame_list);
432                 cx_pktcpy(&cx_frame, pkt);
433                 size = storeframe(avctx, &cx_frame, pkt_out, coded_frame);
434                 if (size < 0)
435                     return size;
436             } else {
437                 struct FrameListData *cx_frame =
438                     av_malloc(sizeof(struct FrameListData));
439
440                 if (!cx_frame) {
441                     av_log(avctx, AV_LOG_ERROR,
442                            "Frame queue element alloc failed\n");
443                     return AVERROR(ENOMEM);
444                 }
445                 cx_pktcpy(cx_frame, pkt);
446                 cx_frame->buf = av_malloc(cx_frame->sz);
447
448                 if (!cx_frame->buf) {
449                     av_log(avctx, AV_LOG_ERROR,
450                            "Data buffer alloc (%zu bytes) failed\n",
451                            cx_frame->sz);
452                     return AVERROR(ENOMEM);
453                 }
454                 memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
455                 coded_frame_add(&ctx->coded_frame_list, cx_frame);
456             }
457             break;
458         case VPX_CODEC_STATS_PKT: {
459             struct vpx_fixed_buf *stats = &ctx->twopass_stats;
460             stats->buf = av_realloc(stats->buf,
461                                     stats->sz + pkt->data.twopass_stats.sz);
462             if (!stats->buf) {
463                 av_log(avctx, AV_LOG_ERROR, "Stat buffer realloc failed\n");
464                 return AVERROR(ENOMEM);
465             }
466             memcpy((uint8_t*)stats->buf + stats->sz,
467                    pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
468             stats->sz += pkt->data.twopass_stats.sz;
469             break;
470         }
471         case VPX_CODEC_PSNR_PKT: //FIXME add support for CODEC_FLAG_PSNR
472         case VPX_CODEC_CUSTOM_PKT:
473             //ignore unsupported/unrecognized packet types
474             break;
475         }
476     }
477
478     return size;
479 }
480
481 static int vp8_encode(AVCodecContext *avctx, AVPacket *pkt,
482                       const AVFrame *frame, int *got_packet)
483 {
484     VP8Context *ctx = avctx->priv_data;
485     struct vpx_image *rawimg = NULL;
486     int64_t timestamp = 0;
487     int res, coded_size;
488
489     if (frame) {
490         rawimg                      = &ctx->rawimg;
491         rawimg->planes[VPX_PLANE_Y] = frame->data[0];
492         rawimg->planes[VPX_PLANE_U] = frame->data[1];
493         rawimg->planes[VPX_PLANE_V] = frame->data[2];
494         rawimg->stride[VPX_PLANE_Y] = frame->linesize[0];
495         rawimg->stride[VPX_PLANE_U] = frame->linesize[1];
496         rawimg->stride[VPX_PLANE_V] = frame->linesize[2];
497         timestamp                   = frame->pts;
498     }
499
500     res = vpx_codec_encode(&ctx->encoder, rawimg, timestamp,
501                            avctx->ticks_per_frame, 0, ctx->deadline);
502     if (res != VPX_CODEC_OK) {
503         log_encoder_error(avctx, "Error encoding frame");
504         return AVERROR_INVALIDDATA;
505     }
506     coded_size = queue_frames(avctx, pkt, avctx->coded_frame);
507
508     if (!frame && avctx->flags & CODEC_FLAG_PASS1) {
509         unsigned int b64_size = AV_BASE64_SIZE(ctx->twopass_stats.sz);
510
511         avctx->stats_out = av_malloc(b64_size);
512         if (!avctx->stats_out) {
513             av_log(avctx, AV_LOG_ERROR, "Stat buffer alloc (%d bytes) failed\n",
514                    b64_size);
515             return AVERROR(ENOMEM);
516         }
517         av_base64_encode(avctx->stats_out, b64_size, ctx->twopass_stats.buf,
518                          ctx->twopass_stats.sz);
519     }
520
521     *got_packet = !!coded_size;
522     return 0;
523 }
524
525 #define OFFSET(x) offsetof(VP8Context, x)
526 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
527 static const AVOption options[] = {
528     { "cpu-used",        "Quality/Speed ratio modifier",           OFFSET(cpu_used),        AV_OPT_TYPE_INT, {INT_MIN}, INT_MIN, INT_MAX, VE},
529     { "auto-alt-ref",    "Enable use of alternate reference "
530                          "frames (2-pass only)",                   OFFSET(auto_alt_ref),    AV_OPT_TYPE_INT, {-1},      -1,      1,       VE},
531     { "lag-in-frames",   "Number of frames to look ahead for "
532                          "alternate reference frame selection",    OFFSET(lag_in_frames),   AV_OPT_TYPE_INT, {-1},      -1,      INT_MAX, VE},
533     { "arnr-maxframes",  "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {-1},      -1,      INT_MAX, VE},
534     { "arnr-strength",   "altref noise reduction filter strength", OFFSET(arnr_strength),   AV_OPT_TYPE_INT, {-1},      -1,      INT_MAX, VE},
535     { "arnr-type",       "altref noise reduction filter type",     OFFSET(arnr_type),       AV_OPT_TYPE_INT, {-1},      -1,      INT_MAX, VE, "arnr_type"},
536     { "backward",        NULL, 0, AV_OPT_TYPE_CONST, {1}, 0, 0, VE, "arnr_type" },
537     { "forward",         NULL, 0, AV_OPT_TYPE_CONST, {2}, 0, 0, VE, "arnr_type" },
538     { "centered",        NULL, 0, AV_OPT_TYPE_CONST, {3}, 0, 0, VE, "arnr_type" },
539     { "deadline",        "Time to spend encoding, in microseconds.", OFFSET(deadline),      AV_OPT_TYPE_INT, {VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"},
540     { "best",            NULL, 0, AV_OPT_TYPE_CONST, {VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"},
541     { "good",            NULL, 0, AV_OPT_TYPE_CONST, {VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"},
542     { "realtime",        NULL, 0, AV_OPT_TYPE_CONST, {VPX_DL_REALTIME},     0, 0, VE, "quality"},
543     { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {0}, INT_MIN, INT_MAX, VE, "er"},
544 #ifdef VPX_ERROR_RESILIENT_DEFAULT
545     { "default",         "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"},
546     { "partitions",      "The frame partitions are independently decodable "
547                          "by the bool decoder, meaning that partitions can be decoded even "
548                          "though earlier partitions have been lost. Note that intra predicition"
549                          " is still done over the partition boundary.",       0, AV_OPT_TYPE_CONST, {VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"},
550 #endif
551     { NULL }
552 };
553
554 static const AVClass class = {
555     .class_name = "libvpx encoder",
556     .item_name  = av_default_item_name,
557     .option     = options,
558     .version    = LIBAVUTIL_VERSION_INT,
559 };
560
561 static const AVCodecDefault defaults[] = {
562     { "qmin",             "-1" },
563     { "qmax",             "-1" },
564     { "g",                "-1" },
565     { "keyint_min",       "-1" },
566     { NULL },
567 };
568
569 AVCodec ff_libvpx_encoder = {
570     .name           = "libvpx",
571     .type           = AVMEDIA_TYPE_VIDEO,
572     .id             = AV_CODEC_ID_VP8,
573     .priv_data_size = sizeof(VP8Context),
574     .init           = vp8_init,
575     .encode2        = vp8_encode,
576     .close          = vp8_free,
577     .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
578     .pix_fmts       = (const enum PixelFormat[]){ PIX_FMT_YUV420P, PIX_FMT_NONE },
579     .long_name      = NULL_IF_CONFIG_SMALL("libvpx VP8"),
580     .priv_class     = &class,
581     .defaults       = defaults,
582 };