You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

582 lines
23KB

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