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.

631 lines
26KB

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