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