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