FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libvpxenc.c
Go to the documentation of this file.
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;
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;
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;
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 
84 
87  int arnr_type;
88 
91  int crf;
94 
95  // VP9-only
96  int lossless;
98  int tile_rows;
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 
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 
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);
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
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;
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
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
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,
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
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  }
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,
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 */
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[] = {
939  { NULL }
940 };
941 #endif
942 
943 #if CONFIG_LIBVPX_VP9_ENCODER
944 static const AVOption vp9_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" }, \
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,
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,
1026 };
1027 #endif /* CONFIG_LIBVPX_VP9_ENCODER */
uint64_t sse[4]
Definition: libvpxenc.c:55
int cpu_used
Definition: libvpxenc.c:75
struct vpx_image rawimg_alpha
Definition: libvpxenc.c:66
#define NULL
Definition: coverity.c:32
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
const char const char void * val
Definition: avisynth_c.h:634
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:307
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int lag_in_frames
Definition: libvpxenc.c:89
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:280
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:159
struct vpx_codec_ctx encoder
Definition: libvpxenc.c:63
uint64_t error[AV_NUM_DATA_POINTERS]
error
Definition: avcodec.h:2663
#define CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition: avcodec.h:737
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
Definition: mathematics.c:63
#define OFFSET(x)
Definition: libvpxenc.c:890
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
#define CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:736
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2745
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition: avcodec.h:2366
int tile_columns
Definition: libvpxenc.c:97
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:1163
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
size_t sz
length of compressed data
Definition: libvpxenc.c:47
static int sse(MpegEncContext *s, uint8_t *src1, uint8_t *src2, int w, int h, int stride)
char * stats_in
pass2 encoding statistics input buffer Concatenated stuff from stats_out of pass1 should be placed he...
Definition: avcodec.h:2502
int arnr_max_frames
Definition: libvpxenc.c:85
static AVPacket pkt
struct vpx_codec_ctx encoder_alpha
Definition: libvpxenc.c:65
int profile
profile
Definition: avcodec.h:2835
int max_intra_rate
Definition: libvpxenc.c:93
AVCodec.
Definition: avcodec.h:3181
int error_resilient
Definition: libvpxenc.c:90
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1369
#define VP8F_AUTO_ALT_REF
Enable automatic alternate reference frame generation.
Definition: libvpxenc.c:81
#define CODEC_FLAG_PSNR
error[?] variables will be set during encoding.
Definition: avcodec.h:746
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define AV_WB64(p, v)
Definition: intreadwrite.h:433
int auto_alt_ref
Definition: libvpxenc.c:83
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
attribute_deprecated float rc_buffer_aggressivity
Definition: avcodec.h:2341
uint8_t
#define av_cold
Definition: attributes.h:74
static av_cold int codecctl_int(AVCodecContext *avctx, enum vp8e_enc_control_id id, int val)
Definition: libvpxenc.c:234
#define av_malloc(s)
int lossless
Definition: libvpxenc.c:96
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
int64_t pts
time stamp to show frame (in timebase units)
Definition: libvpxenc.c:50
AVOptions.
static void coded_frame_add(void *list, struct FrameListData *cx_frame)
Definition: libvpxenc.c:205
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:280
#define FF_PROFILE_UNKNOWN
Definition: avcodec.h:2836
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
static av_cold void init_static_data(void)
Definition: dsddec.c:82
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:185
int frame_parallel
Definition: libvpxenc.c:99
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
ptrdiff_t size
Definition: opengl_enc.c:101
char * stats_out
pass1 encoding statistics output buffer
Definition: avcodec.h:2494
#define av_log(a,...)
#define LEGACY_OPTIONS
Definition: libvpxenc.c:924
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1208
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:165
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
struct vpx_image rawimg
Definition: libvpxenc.c:64
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:824
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
int frame_skip_threshold
frame skip threshold
Definition: avcodec.h:2408
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define COMMON_OPTIONS
Definition: libvpxenc.c:898
int qmax
maximum quantizer
Definition: avcodec.h:2277
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:161
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1335
Round to nearest and halfway cases away from zero.
Definition: mathematics.h:75
int rc_max_rate
maximum bitrate
Definition: avcodec.h:2327
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
static av_always_inline av_const double round(double x)
Definition: libm.h:162
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
Definition: base64.c:138
Libavcodec external API header.
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:2304
static void cx_pktcpy(struct FrameListData *dst, const struct vpx_codec_cx_pkt *src, const struct vpx_codec_cx_pkt *src_alpha, VP8Context *ctx)
Definition: libvpxenc.c:608
static av_cold void dump_enc_cfg(AVCodecContext *avctx, const struct vpx_codec_enc_cfg *cfg)
Definition: libvpxenc.c:143
int bit_rate
the average bitrate
Definition: avcodec.h:1305
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
Definition: base64.h:61
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
int static_thresh
Definition: libvpxenc.c:92
#define CODEC_CAP_AUTO_THREADS
Codec supports avctx->thread_count == 0 (auto).
Definition: avcodec.h:878
uint64_t sse[4]
Definition: libvpxenc.c:70
static av_cold int vp8_free(AVCodecContext *avctx)
Definition: libvpxenc.c:255
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:1378
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:272
static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)
Definition: libvpxenc.c:132
attribute_deprecated int mb_threshold
Definition: avcodec.h:1822
int arnr_strength
Definition: libvpxenc.c:86
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:2753
struct FrameListData * next
Definition: libvpxenc.c:58
#define VP8F_ERROR_RESILIENT
Enable measures appropriate for streaming over lossy links.
Definition: libvpxenc.c:80
static av_cold int vpx_init(AVCodecContext *avctx, const struct vpx_codec_iface *iface)
Definition: libvpxenc.c:352
int flags
VP8 specific flags, see VP8F_* below.
Definition: libvpxenc.c:79
static const AVCodecDefault defaults[]
Definition: libvpxenc.c:963
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
uint64_t error[AV_NUM_DATA_POINTERS]
error
Definition: frame.h:351
#define VE
Definition: libvpxenc.c:891
AVS_Value src
Definition: avisynth_c.h:482
enum AVCodecID codec_id
Definition: avcodec.h:1258
av_cold void ff_vp9_init_static(AVCodec *codec)
Definition: libvpx.c:61
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
static av_cold int vp9_init(AVFormatContext *ctx, int st_index, PayloadContext *data)
Definition: rtpdec_vp9.c:34
main external API structure.
Definition: avcodec.h:1241
int qmin
minimum quantizer
Definition: avcodec.h:2270
static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame, AVPacket *pkt, AVFrame *coded_frame)
Store coded frame information in format suitable for return from encode2().
Definition: libvpxenc.c:650
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:309
void * buf
Definition: avisynth_c.h:553
Data found in BlockAdditional element of matroska container.
Definition: avcodec.h:1090
int deadline
Definition: libvpxenc.c:69
Describe the class of an AVClass context structure.
Definition: log.h:67
int arnr_type
Definition: libvpxenc.c:87
uint32_t flags
flags for this frame
Definition: libvpxenc.c:54
#define snprintf
Definition: snprintf.h:34
static av_cold void free_coded_frame(struct FrameListData *cx_frame)
Definition: libvpxenc.c:215
uint64_t frame_number
Definition: libvpxenc.c:57
float qcompress
amount of qscale change between easy & hard scenes (0.0-1.0)
Definition: avcodec.h:2262
static int set_pix_fmt(AVCodecContext *avctx, struct vpx_image *img)
Definition: libvpxdec.c:63
static int vp8_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: libvpxenc.c:808
void * buf
compressed data buffer
Definition: libvpxenc.c:46
size_t sz_alpha
Definition: libvpxenc.c:49
int have_sse
true if we have pending sse[]
Definition: libvpxenc.c:56
#define SIZE_SPECIFIER
Definition: internal.h:250
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
uint8_t level
Definition: svq3.c:150
int noise_reduction
noise reduction strength
Definition: avcodec.h:1809
uint8_t is_alpha
Definition: libvpxenc.c:67
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1435
static const char *const ctlidstr[]
String mappings for enum vp8e_enc_control_id.
Definition: libvpxenc.c:104
struct vpx_fixed_buf twopass_stats
Definition: libvpxenc.c:68
static av_cold int vp8_init(AVFormatContext *s, int st_index, PayloadContext *vp8)
Definition: rtpdec_vp8.c:263
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:276
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:79
common internal api header.
common internal and external API header
int den
denominator
Definition: rational.h:45
static av_cold void free_frame_list(struct FrameListData *list)
Definition: libvpxenc.c:223
void * buf_alpha
Definition: libvpxenc.c:48
int slices
Number of slices.
Definition: avcodec.h:1976
void * priv_data
Definition: avcodec.h:1283
#define av_free(p)
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
Definition: libvpxenc.c:45
int tile_rows
Definition: libvpxenc.c:98
#define av_log2
Definition: intmath.h:105
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:237
unsigned long duration
duration to show frame (in timebase units)
Definition: libvpxenc.c:52
int av_base64_decode(uint8_t *out, const char *in_str, int out_size)
Decode a base64-encoded string.
Definition: base64.c:79
int have_sse
true if we have pending sse[]
Definition: libvpxenc.c:71
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1161
int height
Definition: frame.h:220
#define av_freep(p)
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out, AVFrame *coded_frame)
Queue multiple output frames from the encoder, returning the front-most.
Definition: libvpxenc.c:705
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int size)
Allocate new information of a packet.
Definition: avpacket.c:299
int rc_min_rate
minimum bitrate
Definition: avcodec.h:2334
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1139
struct FrameListData * coded_frame_list
Definition: libvpxenc.c:73
int aq_mode
Definition: libvpxenc.c:100
uint64_t frame_number
Definition: libvpxenc.c:72
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155
Predicted.
Definition: avutil.h:268
int keyint_min
minimum GOP size
Definition: avcodec.h:1894
static int width