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.

894 lines
36KB

  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/avassert.h"
  31. #include "libvpx.h"
  32. #include "libavutil/base64.h"
  33. #include "libavutil/common.h"
  34. #include "libavutil/intreadwrite.h"
  35. #include "libavutil/mathematics.h"
  36. #include "libavutil/opt.h"
  37. /**
  38. * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
  39. * One encoded frame returned from the library.
  40. */
  41. struct FrameListData {
  42. void *buf; /**< compressed data buffer */
  43. size_t sz; /**< length of compressed data */
  44. void *buf_alpha;
  45. size_t sz_alpha;
  46. int64_t pts; /**< time stamp to show frame
  47. (in timebase units) */
  48. unsigned long duration; /**< duration to show frame
  49. (in timebase units) */
  50. uint32_t flags; /**< flags for this frame */
  51. uint64_t sse[4];
  52. int have_sse; /**< true if we have pending sse[] */
  53. uint64_t frame_number;
  54. struct FrameListData *next;
  55. };
  56. typedef struct VP8EncoderContext {
  57. AVClass *class;
  58. struct vpx_codec_ctx encoder;
  59. struct vpx_image rawimg;
  60. struct vpx_codec_ctx encoder_alpha;
  61. struct vpx_image rawimg_alpha;
  62. uint8_t is_alpha;
  63. struct vpx_fixed_buf twopass_stats;
  64. int deadline; //i.e., RT/GOOD/BEST
  65. uint64_t sse[4];
  66. int have_sse; /**< true if we have pending sse[] */
  67. uint64_t frame_number;
  68. struct FrameListData *coded_frame_list;
  69. int cpu_used;
  70. /**
  71. * VP8 specific flags, see VP8F_* below.
  72. */
  73. int flags;
  74. #define VP8F_ERROR_RESILIENT 0x00000001 ///< Enable measures appropriate for streaming over lossy links
  75. #define VP8F_AUTO_ALT_REF 0x00000002 ///< Enable automatic alternate reference frame generation
  76. int auto_alt_ref;
  77. int arnr_max_frames;
  78. int arnr_strength;
  79. int arnr_type;
  80. int lag_in_frames;
  81. int error_resilient;
  82. int crf;
  83. int max_intra_rate;
  84. // VP9-only
  85. int lossless;
  86. int tile_columns;
  87. int tile_rows;
  88. int frame_parallel;
  89. int aq_mode;
  90. } VP8Context;
  91. /** String mappings for enum vp8e_enc_control_id */
  92. static const char *const ctlidstr[] = {
  93. [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED",
  94. [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF",
  95. [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
  96. [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD",
  97. [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS",
  98. [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES",
  99. [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH",
  100. [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE",
  101. [VP8E_SET_CQ_LEVEL] = "VP8E_SET_CQ_LEVEL",
  102. [VP8E_SET_MAX_INTRA_BITRATE_PCT] = "VP8E_SET_MAX_INTRA_BITRATE_PCT",
  103. #if CONFIG_LIBVPX_VP9_ENCODER
  104. [VP9E_SET_LOSSLESS] = "VP9E_SET_LOSSLESS",
  105. [VP9E_SET_TILE_COLUMNS] = "VP9E_SET_TILE_COLUMNS",
  106. [VP9E_SET_TILE_ROWS] = "VP9E_SET_TILE_ROWS",
  107. [VP9E_SET_FRAME_PARALLEL_DECODING] = "VP9E_SET_FRAME_PARALLEL_DECODING",
  108. [VP9E_SET_AQ_MODE] = "VP9E_SET_AQ_MODE",
  109. #endif
  110. };
  111. static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)
  112. {
  113. VP8Context *ctx = avctx->priv_data;
  114. const char *error = vpx_codec_error(&ctx->encoder);
  115. const char *detail = vpx_codec_error_detail(&ctx->encoder);
  116. av_log(avctx, AV_LOG_ERROR, "%s: %s\n", desc, error);
  117. if (detail)
  118. av_log(avctx, AV_LOG_ERROR, " Additional information: %s\n", detail);
  119. }
  120. static av_cold void dump_enc_cfg(AVCodecContext *avctx,
  121. const struct vpx_codec_enc_cfg *cfg)
  122. {
  123. int width = -30;
  124. int level = AV_LOG_DEBUG;
  125. av_log(avctx, level, "vpx_codec_enc_cfg\n");
  126. av_log(avctx, level, "generic settings\n"
  127. " %*s%u\n %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
  128. " %*s{%u/%u}\n %*s%u\n %*s%d\n %*s%u\n",
  129. width, "g_usage:", cfg->g_usage,
  130. width, "g_threads:", cfg->g_threads,
  131. width, "g_profile:", cfg->g_profile,
  132. width, "g_w:", cfg->g_w,
  133. width, "g_h:", cfg->g_h,
  134. width, "g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
  135. width, "g_error_resilient:", cfg->g_error_resilient,
  136. width, "g_pass:", cfg->g_pass,
  137. width, "g_lag_in_frames:", cfg->g_lag_in_frames);
  138. av_log(avctx, level, "rate control settings\n"
  139. " %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
  140. " %*s%d\n %*s%p(%"SIZE_SPECIFIER")\n %*s%u\n",
  141. width, "rc_dropframe_thresh:", cfg->rc_dropframe_thresh,
  142. width, "rc_resize_allowed:", cfg->rc_resize_allowed,
  143. width, "rc_resize_up_thresh:", cfg->rc_resize_up_thresh,
  144. width, "rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
  145. width, "rc_end_usage:", cfg->rc_end_usage,
  146. width, "rc_twopass_stats_in:", cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
  147. width, "rc_target_bitrate:", cfg->rc_target_bitrate);
  148. av_log(avctx, level, "quantizer settings\n"
  149. " %*s%u\n %*s%u\n",
  150. width, "rc_min_quantizer:", cfg->rc_min_quantizer,
  151. width, "rc_max_quantizer:", cfg->rc_max_quantizer);
  152. av_log(avctx, level, "bitrate tolerance\n"
  153. " %*s%u\n %*s%u\n",
  154. width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
  155. width, "rc_overshoot_pct:", cfg->rc_overshoot_pct);
  156. av_log(avctx, level, "decoder buffer model\n"
  157. " %*s%u\n %*s%u\n %*s%u\n",
  158. width, "rc_buf_sz:", cfg->rc_buf_sz,
  159. width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
  160. width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
  161. av_log(avctx, level, "2 pass rate control settings\n"
  162. " %*s%u\n %*s%u\n %*s%u\n",
  163. width, "rc_2pass_vbr_bias_pct:", cfg->rc_2pass_vbr_bias_pct,
  164. width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
  165. width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
  166. av_log(avctx, level, "keyframing settings\n"
  167. " %*s%d\n %*s%u\n %*s%u\n",
  168. width, "kf_mode:", cfg->kf_mode,
  169. width, "kf_min_dist:", cfg->kf_min_dist,
  170. width, "kf_max_dist:", cfg->kf_max_dist);
  171. av_log(avctx, level, "\n");
  172. }
  173. static void coded_frame_add(void *list, struct FrameListData *cx_frame)
  174. {
  175. struct FrameListData **p = list;
  176. while (*p)
  177. p = &(*p)->next;
  178. *p = cx_frame;
  179. cx_frame->next = NULL;
  180. }
  181. static av_cold void free_coded_frame(struct FrameListData *cx_frame)
  182. {
  183. av_freep(&cx_frame->buf);
  184. if (cx_frame->buf_alpha)
  185. av_freep(&cx_frame->buf_alpha);
  186. av_freep(&cx_frame);
  187. }
  188. static av_cold void free_frame_list(struct FrameListData *list)
  189. {
  190. struct FrameListData *p = list;
  191. while (p) {
  192. list = list->next;
  193. free_coded_frame(p);
  194. p = list;
  195. }
  196. }
  197. static av_cold int codecctl_int(AVCodecContext *avctx,
  198. enum vp8e_enc_control_id id, int val)
  199. {
  200. VP8Context *ctx = avctx->priv_data;
  201. char buf[80];
  202. int width = -30;
  203. int res;
  204. snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
  205. av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, val);
  206. res = vpx_codec_control(&ctx->encoder, id, val);
  207. if (res != VPX_CODEC_OK) {
  208. snprintf(buf, sizeof(buf), "Failed to set %s codec control",
  209. ctlidstr[id]);
  210. log_encoder_error(avctx, buf);
  211. }
  212. return res == VPX_CODEC_OK ? 0 : AVERROR(EINVAL);
  213. }
  214. static av_cold int vp8_free(AVCodecContext *avctx)
  215. {
  216. VP8Context *ctx = avctx->priv_data;
  217. vpx_codec_destroy(&ctx->encoder);
  218. if (ctx->is_alpha)
  219. vpx_codec_destroy(&ctx->encoder_alpha);
  220. av_freep(&ctx->twopass_stats.buf);
  221. av_freep(&avctx->coded_frame);
  222. av_freep(&avctx->stats_out);
  223. free_frame_list(ctx->coded_frame_list);
  224. return 0;
  225. }
  226. static av_cold int vpx_init(AVCodecContext *avctx,
  227. const struct vpx_codec_iface *iface)
  228. {
  229. VP8Context *ctx = avctx->priv_data;
  230. struct vpx_codec_enc_cfg enccfg;
  231. struct vpx_codec_enc_cfg enccfg_alpha;
  232. vpx_codec_flags_t flags = (avctx->flags & CODEC_FLAG_PSNR) ? VPX_CODEC_USE_PSNR : 0;
  233. int res;
  234. av_log(avctx, AV_LOG_INFO, "%s\n", vpx_codec_version_str());
  235. av_log(avctx, AV_LOG_VERBOSE, "%s\n", vpx_codec_build_config());
  236. if (avctx->pix_fmt == AV_PIX_FMT_YUVA420P)
  237. ctx->is_alpha = 1;
  238. if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
  239. av_log(avctx, AV_LOG_ERROR, "Failed to get config: %s\n",
  240. vpx_codec_err_to_string(res));
  241. return AVERROR(EINVAL);
  242. }
  243. if(!avctx->bit_rate)
  244. if(avctx->rc_max_rate || avctx->rc_buffer_size || avctx->rc_initial_buffer_occupancy) {
  245. av_log( avctx, AV_LOG_ERROR, "Rate control parameters set without a bitrate\n");
  246. return AVERROR(EINVAL);
  247. }
  248. dump_enc_cfg(avctx, &enccfg);
  249. enccfg.g_w = avctx->width;
  250. enccfg.g_h = avctx->height;
  251. enccfg.g_timebase.num = avctx->time_base.num;
  252. enccfg.g_timebase.den = avctx->time_base.den;
  253. enccfg.g_threads = avctx->thread_count;
  254. enccfg.g_lag_in_frames= ctx->lag_in_frames;
  255. if (avctx->flags & CODEC_FLAG_PASS1)
  256. enccfg.g_pass = VPX_RC_FIRST_PASS;
  257. else if (avctx->flags & CODEC_FLAG_PASS2)
  258. enccfg.g_pass = VPX_RC_LAST_PASS;
  259. else
  260. enccfg.g_pass = VPX_RC_ONE_PASS;
  261. if (avctx->rc_min_rate == avctx->rc_max_rate &&
  262. avctx->rc_min_rate == avctx->bit_rate && avctx->bit_rate) {
  263. enccfg.rc_end_usage = VPX_CBR;
  264. } else if (ctx->crf >= 0) {
  265. enccfg.rc_end_usage = VPX_CQ;
  266. #if CONFIG_LIBVPX_VP9_ENCODER
  267. if (!avctx->bit_rate && avctx->codec_id == AV_CODEC_ID_VP9)
  268. enccfg.rc_end_usage = VPX_Q;
  269. #endif
  270. }
  271. if (avctx->bit_rate) {
  272. enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
  273. AV_ROUND_NEAR_INF);
  274. #if CONFIG_LIBVPX_VP9_ENCODER
  275. } else if (enccfg.rc_end_usage == VPX_Q) {
  276. #endif
  277. } else {
  278. if (enccfg.rc_end_usage == VPX_CQ) {
  279. enccfg.rc_target_bitrate = 1000000;
  280. } else {
  281. avctx->bit_rate = enccfg.rc_target_bitrate * 1000;
  282. av_log(avctx, AV_LOG_WARNING,
  283. "Neither bitrate nor constrained quality specified, using default bitrate of %dkbit/sec\n",
  284. enccfg.rc_target_bitrate);
  285. }
  286. }
  287. if (avctx->qmin >= 0)
  288. enccfg.rc_min_quantizer = avctx->qmin;
  289. if (avctx->qmax >= 0)
  290. enccfg.rc_max_quantizer = avctx->qmax;
  291. if (enccfg.rc_end_usage == VPX_CQ
  292. #if CONFIG_LIBVPX_VP9_ENCODER
  293. || enccfg.rc_end_usage == VPX_Q
  294. #endif
  295. ) {
  296. if (ctx->crf < enccfg.rc_min_quantizer || ctx->crf > enccfg.rc_max_quantizer) {
  297. av_log(avctx, AV_LOG_ERROR,
  298. "CQ level %d must be between minimum and maximum quantizer value (%d-%d)\n",
  299. ctx->crf, enccfg.rc_min_quantizer, enccfg.rc_max_quantizer);
  300. return AVERROR(EINVAL);
  301. }
  302. }
  303. enccfg.rc_dropframe_thresh = avctx->frame_skip_threshold;
  304. //0-100 (0 => CBR, 100 => VBR)
  305. enccfg.rc_2pass_vbr_bias_pct = round(avctx->qcompress * 100);
  306. if (avctx->bit_rate)
  307. enccfg.rc_2pass_vbr_minsection_pct =
  308. avctx->rc_min_rate * 100LL / avctx->bit_rate;
  309. if (avctx->rc_max_rate)
  310. enccfg.rc_2pass_vbr_maxsection_pct =
  311. avctx->rc_max_rate * 100LL / avctx->bit_rate;
  312. if (avctx->rc_buffer_size)
  313. enccfg.rc_buf_sz =
  314. avctx->rc_buffer_size * 1000LL / avctx->bit_rate;
  315. if (avctx->rc_initial_buffer_occupancy)
  316. enccfg.rc_buf_initial_sz =
  317. avctx->rc_initial_buffer_occupancy * 1000LL / avctx->bit_rate;
  318. enccfg.rc_buf_optimal_sz = enccfg.rc_buf_sz * 5 / 6;
  319. enccfg.rc_undershoot_pct = round(avctx->rc_buffer_aggressivity * 100);
  320. //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
  321. if (avctx->keyint_min >= 0 && avctx->keyint_min == avctx->gop_size)
  322. enccfg.kf_min_dist = avctx->keyint_min;
  323. if (avctx->gop_size >= 0)
  324. enccfg.kf_max_dist = avctx->gop_size;
  325. if (enccfg.g_pass == VPX_RC_FIRST_PASS)
  326. enccfg.g_lag_in_frames = 0;
  327. else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
  328. int decode_size, ret;
  329. if (!avctx->stats_in) {
  330. av_log(avctx, AV_LOG_ERROR, "No stats file for second pass\n");
  331. return AVERROR_INVALIDDATA;
  332. }
  333. ctx->twopass_stats.sz = strlen(avctx->stats_in) * 3 / 4;
  334. ret = av_reallocp(&ctx->twopass_stats.buf, ctx->twopass_stats.sz);
  335. if (ret < 0) {
  336. av_log(avctx, AV_LOG_ERROR,
  337. "Stat buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
  338. ctx->twopass_stats.sz);
  339. return ret;
  340. }
  341. decode_size = av_base64_decode(ctx->twopass_stats.buf, avctx->stats_in,
  342. ctx->twopass_stats.sz);
  343. if (decode_size < 0) {
  344. av_log(avctx, AV_LOG_ERROR, "Stat buffer decode failed\n");
  345. return AVERROR_INVALIDDATA;
  346. }
  347. ctx->twopass_stats.sz = decode_size;
  348. enccfg.rc_twopass_stats_in = ctx->twopass_stats;
  349. }
  350. /* 0-3: For non-zero values the encoder increasingly optimizes for reduced
  351. complexity playback on low powered devices at the expense of encode
  352. quality. */
  353. if (avctx->profile != FF_PROFILE_UNKNOWN)
  354. enccfg.g_profile = avctx->profile;
  355. enccfg.g_error_resilient = ctx->error_resilient || ctx->flags & VP8F_ERROR_RESILIENT;
  356. dump_enc_cfg(avctx, &enccfg);
  357. /* Construct Encoder Context */
  358. res = vpx_codec_enc_init(&ctx->encoder, iface, &enccfg, flags);
  359. if (res != VPX_CODEC_OK) {
  360. log_encoder_error(avctx, "Failed to initialize encoder");
  361. return AVERROR(EINVAL);
  362. }
  363. if (ctx->is_alpha) {
  364. enccfg_alpha = enccfg;
  365. res = vpx_codec_enc_init(&ctx->encoder_alpha, iface, &enccfg_alpha, flags);
  366. if (res != VPX_CODEC_OK) {
  367. log_encoder_error(avctx, "Failed to initialize alpha encoder");
  368. return AVERROR(EINVAL);
  369. }
  370. }
  371. //codec control failures are currently treated only as warnings
  372. av_log(avctx, AV_LOG_DEBUG, "vpx_codec_control\n");
  373. codecctl_int(avctx, VP8E_SET_CPUUSED, ctx->cpu_used);
  374. if (ctx->flags & VP8F_AUTO_ALT_REF)
  375. ctx->auto_alt_ref = 1;
  376. if (ctx->auto_alt_ref >= 0)
  377. codecctl_int(avctx, VP8E_SET_ENABLEAUTOALTREF, ctx->auto_alt_ref);
  378. if (ctx->arnr_max_frames >= 0)
  379. codecctl_int(avctx, VP8E_SET_ARNR_MAXFRAMES, ctx->arnr_max_frames);
  380. if (ctx->arnr_strength >= 0)
  381. codecctl_int(avctx, VP8E_SET_ARNR_STRENGTH, ctx->arnr_strength);
  382. if (ctx->arnr_type >= 0)
  383. codecctl_int(avctx, VP8E_SET_ARNR_TYPE, ctx->arnr_type);
  384. codecctl_int(avctx, VP8E_SET_NOISE_SENSITIVITY, avctx->noise_reduction);
  385. if (avctx->codec_id == AV_CODEC_ID_VP8)
  386. codecctl_int(avctx, VP8E_SET_TOKEN_PARTITIONS, av_log2(avctx->slices));
  387. codecctl_int(avctx, VP8E_SET_STATIC_THRESHOLD, avctx->mb_threshold);
  388. if (ctx->crf >= 0)
  389. codecctl_int(avctx, VP8E_SET_CQ_LEVEL, ctx->crf);
  390. if (ctx->max_intra_rate >= 0)
  391. codecctl_int(avctx, VP8E_SET_MAX_INTRA_BITRATE_PCT, ctx->max_intra_rate);
  392. #if CONFIG_LIBVPX_VP9_ENCODER
  393. if (avctx->codec_id == AV_CODEC_ID_VP9) {
  394. if (ctx->lossless >= 0)
  395. codecctl_int(avctx, VP9E_SET_LOSSLESS, ctx->lossless);
  396. if (ctx->tile_columns >= 0)
  397. codecctl_int(avctx, VP9E_SET_TILE_COLUMNS, ctx->tile_columns);
  398. if (ctx->tile_rows >= 0)
  399. codecctl_int(avctx, VP9E_SET_TILE_ROWS, ctx->tile_rows);
  400. if (ctx->frame_parallel >= 0)
  401. codecctl_int(avctx, VP9E_SET_FRAME_PARALLEL_DECODING, ctx->frame_parallel);
  402. if (ctx->aq_mode >= 0)
  403. codecctl_int(avctx, VP9E_SET_AQ_MODE, ctx->aq_mode);
  404. }
  405. #endif
  406. av_log(avctx, AV_LOG_DEBUG, "Using deadline: %d\n", ctx->deadline);
  407. //provide dummy value to initialize wrapper, values will be updated each _encode()
  408. vpx_img_wrap(&ctx->rawimg, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
  409. (unsigned char*)1);
  410. if (ctx->is_alpha)
  411. vpx_img_wrap(&ctx->rawimg_alpha, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
  412. (unsigned char*)1);
  413. avctx->coded_frame = av_frame_alloc();
  414. if (!avctx->coded_frame) {
  415. av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
  416. vp8_free(avctx);
  417. return AVERROR(ENOMEM);
  418. }
  419. return 0;
  420. }
  421. static inline void cx_pktcpy(struct FrameListData *dst,
  422. const struct vpx_codec_cx_pkt *src,
  423. const struct vpx_codec_cx_pkt *src_alpha,
  424. VP8Context *ctx)
  425. {
  426. dst->pts = src->data.frame.pts;
  427. dst->duration = src->data.frame.duration;
  428. dst->flags = src->data.frame.flags;
  429. dst->sz = src->data.frame.sz;
  430. dst->buf = src->data.frame.buf;
  431. dst->have_sse = 0;
  432. /* For alt-ref frame, don't store PSNR or increment frame_number */
  433. if (!(dst->flags & VPX_FRAME_IS_INVISIBLE)) {
  434. dst->frame_number = ++ctx->frame_number;
  435. dst->have_sse = ctx->have_sse;
  436. if (ctx->have_sse) {
  437. /* associate last-seen SSE to the frame. */
  438. /* Transfers ownership from ctx to dst. */
  439. /* WARNING! This makes the assumption that PSNR_PKT comes
  440. just before the frame it refers to! */
  441. memcpy(dst->sse, ctx->sse, sizeof(dst->sse));
  442. ctx->have_sse = 0;
  443. }
  444. } else {
  445. dst->frame_number = -1; /* sanity marker */
  446. }
  447. if (src_alpha) {
  448. dst->buf_alpha = src_alpha->data.frame.buf;
  449. dst->sz_alpha = src_alpha->data.frame.sz;
  450. }
  451. else {
  452. dst->buf_alpha = NULL;
  453. dst->sz_alpha = 0;
  454. }
  455. }
  456. /**
  457. * Store coded frame information in format suitable for return from encode2().
  458. *
  459. * Write information from @a cx_frame to @a pkt
  460. * @return packet data size on success
  461. * @return a negative AVERROR on error
  462. */
  463. static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame,
  464. AVPacket *pkt, AVFrame *coded_frame)
  465. {
  466. int ret = ff_alloc_packet2(avctx, pkt, cx_frame->sz);
  467. uint8_t *side_data;
  468. if (ret >= 0) {
  469. memcpy(pkt->data, cx_frame->buf, pkt->size);
  470. pkt->pts = pkt->dts = cx_frame->pts;
  471. coded_frame->pts = cx_frame->pts;
  472. coded_frame->key_frame = !!(cx_frame->flags & VPX_FRAME_IS_KEY);
  473. if (coded_frame->key_frame) {
  474. coded_frame->pict_type = AV_PICTURE_TYPE_I;
  475. pkt->flags |= AV_PKT_FLAG_KEY;
  476. } else
  477. coded_frame->pict_type = AV_PICTURE_TYPE_P;
  478. if (cx_frame->have_sse) {
  479. int i;
  480. /* Beware of the Y/U/V/all order! */
  481. coded_frame->error[0] = cx_frame->sse[1];
  482. coded_frame->error[1] = cx_frame->sse[2];
  483. coded_frame->error[2] = cx_frame->sse[3];
  484. coded_frame->error[3] = 0; // alpha
  485. for (i = 0; i < 4; ++i) {
  486. avctx->error[i] += coded_frame->error[i];
  487. }
  488. cx_frame->have_sse = 0;
  489. }
  490. if (cx_frame->sz_alpha > 0) {
  491. side_data = av_packet_new_side_data(pkt,
  492. AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL,
  493. cx_frame->sz_alpha + 8);
  494. if(!side_data) {
  495. av_free_packet(pkt);
  496. av_free(pkt);
  497. return AVERROR(ENOMEM);
  498. }
  499. AV_WB64(side_data, 1);
  500. memcpy(side_data + 8, cx_frame->buf_alpha, cx_frame->sz_alpha);
  501. }
  502. } else {
  503. return ret;
  504. }
  505. return pkt->size;
  506. }
  507. /**
  508. * Queue multiple output frames from the encoder, returning the front-most.
  509. * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
  510. * the frame queue. Return the head frame if available.
  511. * @return Stored frame size
  512. * @return AVERROR(EINVAL) on output size error
  513. * @return AVERROR(ENOMEM) on coded frame queue data allocation error
  514. */
  515. static int queue_frames(AVCodecContext *avctx, AVPacket *pkt_out,
  516. AVFrame *coded_frame)
  517. {
  518. VP8Context *ctx = avctx->priv_data;
  519. const struct vpx_codec_cx_pkt *pkt;
  520. const struct vpx_codec_cx_pkt *pkt_alpha = NULL;
  521. const void *iter = NULL;
  522. const void *iter_alpha = NULL;
  523. int size = 0;
  524. if (ctx->coded_frame_list) {
  525. struct FrameListData *cx_frame = ctx->coded_frame_list;
  526. /* return the leading frame if we've already begun queueing */
  527. size = storeframe(avctx, cx_frame, pkt_out, coded_frame);
  528. if (size < 0)
  529. return size;
  530. ctx->coded_frame_list = cx_frame->next;
  531. free_coded_frame(cx_frame);
  532. }
  533. /* consume all available output from the encoder before returning. buffers
  534. are only good through the next vpx_codec call */
  535. while ((pkt = vpx_codec_get_cx_data(&ctx->encoder, &iter)) &&
  536. (!ctx->is_alpha ||
  537. (ctx->is_alpha && (pkt_alpha = vpx_codec_get_cx_data(&ctx->encoder_alpha, &iter_alpha))))) {
  538. switch (pkt->kind) {
  539. case VPX_CODEC_CX_FRAME_PKT:
  540. if (!size) {
  541. struct FrameListData cx_frame;
  542. /* avoid storing the frame when the list is empty and we haven't yet
  543. provided a frame for output */
  544. av_assert0(!ctx->coded_frame_list);
  545. cx_pktcpy(&cx_frame, pkt, pkt_alpha, ctx);
  546. size = storeframe(avctx, &cx_frame, pkt_out, coded_frame);
  547. if (size < 0)
  548. return size;
  549. } else {
  550. struct FrameListData *cx_frame =
  551. av_malloc(sizeof(struct FrameListData));
  552. if (!cx_frame) {
  553. av_log(avctx, AV_LOG_ERROR,
  554. "Frame queue element alloc failed\n");
  555. return AVERROR(ENOMEM);
  556. }
  557. cx_pktcpy(cx_frame, pkt, pkt_alpha, ctx);
  558. cx_frame->buf = av_malloc(cx_frame->sz);
  559. if (!cx_frame->buf) {
  560. av_log(avctx, AV_LOG_ERROR,
  561. "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
  562. cx_frame->sz);
  563. av_free(cx_frame);
  564. return AVERROR(ENOMEM);
  565. }
  566. memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
  567. if (ctx->is_alpha) {
  568. cx_frame->buf_alpha = av_malloc(cx_frame->sz_alpha);
  569. if (!cx_frame->buf_alpha) {
  570. av_log(avctx, AV_LOG_ERROR,
  571. "Data buffer alloc (%"SIZE_SPECIFIER" bytes) failed\n",
  572. cx_frame->sz_alpha);
  573. av_free(cx_frame);
  574. return AVERROR(ENOMEM);
  575. }
  576. memcpy(cx_frame->buf_alpha, pkt_alpha->data.frame.buf, pkt_alpha->data.frame.sz);
  577. }
  578. coded_frame_add(&ctx->coded_frame_list, cx_frame);
  579. }
  580. break;
  581. case VPX_CODEC_STATS_PKT: {
  582. struct vpx_fixed_buf *stats = &ctx->twopass_stats;
  583. int err;
  584. if ((err = av_reallocp(&stats->buf,
  585. stats->sz +
  586. pkt->data.twopass_stats.sz)) < 0) {
  587. stats->sz = 0;
  588. av_log(avctx, AV_LOG_ERROR, "Stat buffer realloc failed\n");
  589. return err;
  590. }
  591. memcpy((uint8_t*)stats->buf + stats->sz,
  592. pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
  593. stats->sz += pkt->data.twopass_stats.sz;
  594. break;
  595. }
  596. case VPX_CODEC_PSNR_PKT:
  597. av_assert0(!ctx->have_sse);
  598. ctx->sse[0] = pkt->data.psnr.sse[0];
  599. ctx->sse[1] = pkt->data.psnr.sse[1];
  600. ctx->sse[2] = pkt->data.psnr.sse[2];
  601. ctx->sse[3] = pkt->data.psnr.sse[3];
  602. ctx->have_sse = 1;
  603. break;
  604. case VPX_CODEC_CUSTOM_PKT:
  605. //ignore unsupported/unrecognized packet types
  606. break;
  607. }
  608. }
  609. return size;
  610. }
  611. static int vp8_encode(AVCodecContext *avctx, AVPacket *pkt,
  612. const AVFrame *frame, int *got_packet)
  613. {
  614. VP8Context *ctx = avctx->priv_data;
  615. struct vpx_image *rawimg = NULL;
  616. struct vpx_image *rawimg_alpha = NULL;
  617. int64_t timestamp = 0;
  618. int res, coded_size;
  619. vpx_enc_frame_flags_t flags = 0;
  620. if (frame) {
  621. rawimg = &ctx->rawimg;
  622. rawimg->planes[VPX_PLANE_Y] = frame->data[0];
  623. rawimg->planes[VPX_PLANE_U] = frame->data[1];
  624. rawimg->planes[VPX_PLANE_V] = frame->data[2];
  625. rawimg->stride[VPX_PLANE_Y] = frame->linesize[0];
  626. rawimg->stride[VPX_PLANE_U] = frame->linesize[1];
  627. rawimg->stride[VPX_PLANE_V] = frame->linesize[2];
  628. if (ctx->is_alpha) {
  629. uint8_t *u_plane, *v_plane;
  630. rawimg_alpha = &ctx->rawimg_alpha;
  631. rawimg_alpha->planes[VPX_PLANE_Y] = frame->data[3];
  632. u_plane = av_malloc(frame->linesize[1] * frame->height);
  633. memset(u_plane, 0x80, frame->linesize[1] * frame->height);
  634. rawimg_alpha->planes[VPX_PLANE_U] = u_plane;
  635. v_plane = av_malloc(frame->linesize[2] * frame->height);
  636. memset(v_plane, 0x80, frame->linesize[2] * frame->height);
  637. rawimg_alpha->planes[VPX_PLANE_V] = v_plane;
  638. rawimg_alpha->stride[VPX_PLANE_Y] = frame->linesize[0];
  639. rawimg_alpha->stride[VPX_PLANE_U] = frame->linesize[1];
  640. rawimg_alpha->stride[VPX_PLANE_V] = frame->linesize[2];
  641. }
  642. timestamp = frame->pts;
  643. if (frame->pict_type == AV_PICTURE_TYPE_I)
  644. flags |= VPX_EFLAG_FORCE_KF;
  645. }
  646. res = vpx_codec_encode(&ctx->encoder, rawimg, timestamp,
  647. avctx->ticks_per_frame, flags, ctx->deadline);
  648. if (res != VPX_CODEC_OK) {
  649. log_encoder_error(avctx, "Error encoding frame");
  650. return AVERROR_INVALIDDATA;
  651. }
  652. if (ctx->is_alpha) {
  653. res = vpx_codec_encode(&ctx->encoder_alpha, rawimg_alpha, timestamp,
  654. avctx->ticks_per_frame, flags, ctx->deadline);
  655. if (res != VPX_CODEC_OK) {
  656. log_encoder_error(avctx, "Error encoding alpha frame");
  657. return AVERROR_INVALIDDATA;
  658. }
  659. }
  660. coded_size = queue_frames(avctx, pkt, avctx->coded_frame);
  661. if (!frame && avctx->flags & CODEC_FLAG_PASS1) {
  662. unsigned int b64_size = AV_BASE64_SIZE(ctx->twopass_stats.sz);
  663. avctx->stats_out = av_malloc(b64_size);
  664. if (!avctx->stats_out) {
  665. av_log(avctx, AV_LOG_ERROR, "Stat buffer alloc (%d bytes) failed\n",
  666. b64_size);
  667. return AVERROR(ENOMEM);
  668. }
  669. av_base64_encode(avctx->stats_out, b64_size, ctx->twopass_stats.buf,
  670. ctx->twopass_stats.sz);
  671. }
  672. if (rawimg_alpha) {
  673. av_free(rawimg_alpha->planes[VPX_PLANE_U]);
  674. av_free(rawimg_alpha->planes[VPX_PLANE_V]);
  675. }
  676. *got_packet = !!coded_size;
  677. return 0;
  678. }
  679. #define OFFSET(x) offsetof(VP8Context, x)
  680. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  681. #ifndef VPX_ERROR_RESILIENT_DEFAULT
  682. #define VPX_ERROR_RESILIENT_DEFAULT 1
  683. #define VPX_ERROR_RESILIENT_PARTITIONS 2
  684. #endif
  685. #define COMMON_OPTIONS \
  686. { "cpu-used", "Quality/Speed ratio modifier", OFFSET(cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
  687. { "auto-alt-ref", "Enable use of alternate reference " \
  688. "frames (2-pass only)", OFFSET(auto_alt_ref), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE}, \
  689. { "lag-in-frames", "Number of frames to look ahead for " \
  690. "alternate reference frame selection", OFFSET(lag_in_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
  691. { "arnr-maxframes", "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
  692. { "arnr-strength", "altref noise reduction filter strength", OFFSET(arnr_strength), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
  693. { "arnr-type", "altref noise reduction filter type", OFFSET(arnr_type), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE, "arnr_type"}, \
  694. { "backward", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \
  695. { "forward", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \
  696. { "centered", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \
  697. { "deadline", "Time to spend encoding, in microseconds.", OFFSET(deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
  698. { "best", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \
  699. { "good", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \
  700. { "realtime", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME}, 0, 0, VE, "quality"}, \
  701. { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, VE, "er"}, \
  702. { "max-intra-rate", "Maximum I-frame bitrate (pct) 0=unlimited", OFFSET(max_intra_rate), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
  703. { "default", "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"}, \
  704. { "partitions", "The frame partitions are independently decodable " \
  705. "by the bool decoder, meaning that partitions can be decoded even " \
  706. "though earlier partitions have been lost. Note that intra predicition" \
  707. " is still done over the partition boundary.", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"}, \
  708. { "crf", "Select the quality for constant quality mode", offsetof(VP8Context, crf), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 63, VE }, \
  709. #define LEGACY_OPTIONS \
  710. {"speed", "", offsetof(VP8Context, cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
  711. {"quality", "", offsetof(VP8Context, deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
  712. {"vp8flags", "", offsetof(VP8Context, flags), FF_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX, VE, "flags"}, \
  713. {"error_resilient", "enable error resilience", 0, FF_OPT_TYPE_CONST, {.dbl = VP8F_ERROR_RESILIENT}, INT_MIN, INT_MAX, VE, "flags"}, \
  714. {"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"}, \
  715. {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VP8Context, arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15, VE}, \
  716. {"arnr_strength", "altref noise reduction filter strength", offsetof(VP8Context, arnr_strength), AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6, VE}, \
  717. {"arnr_type", "altref noise reduction filter type", offsetof(VP8Context, arnr_type), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 3, VE}, \
  718. {"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}, \
  719. #if CONFIG_LIBVPX_VP8_ENCODER
  720. static const AVOption vp8_options[] = {
  721. COMMON_OPTIONS
  722. LEGACY_OPTIONS
  723. { NULL }
  724. };
  725. #endif
  726. #if CONFIG_LIBVPX_VP9_ENCODER
  727. static const AVOption vp9_options[] = {
  728. COMMON_OPTIONS
  729. { "lossless", "Lossless mode", OFFSET(lossless), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE},
  730. { "tile-columns", "Number of tile columns to use, log2", OFFSET(tile_columns), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 6, VE},
  731. { "tile-rows", "Number of tile rows to use, log2", OFFSET(tile_rows), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2, VE},
  732. { "frame-parallel", "Enable frame parallel decodability features", OFFSET(frame_parallel), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE},
  733. { "aq-mode", "adaptive quantization mode", OFFSET(aq_mode), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 3, VE, "aq_mode"},
  734. { "none", "Aq not used", 0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 0, VE, "aq_mode" }, \
  735. { "variance", "Variance based Aq", 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "aq_mode" }, \
  736. { "complexity", "Complexity based Aq", 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "aq_mode" }, \
  737. { "cyclic", "Cyclic Refresh Aq", 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "aq_mode" }, \
  738. LEGACY_OPTIONS
  739. { NULL }
  740. };
  741. #endif
  742. #undef COMMON_OPTIONS
  743. #undef LEGACY_OPTIONS
  744. static const AVCodecDefault defaults[] = {
  745. { "qmin", "-1" },
  746. { "qmax", "-1" },
  747. { "g", "-1" },
  748. { "keyint_min", "-1" },
  749. { NULL },
  750. };
  751. #if CONFIG_LIBVPX_VP8_ENCODER
  752. static av_cold int vp8_init(AVCodecContext *avctx)
  753. {
  754. return vpx_init(avctx, &vpx_codec_vp8_cx_algo);
  755. }
  756. static const AVClass class_vp8 = {
  757. .class_name = "libvpx-vp8 encoder",
  758. .item_name = av_default_item_name,
  759. .option = vp8_options,
  760. .version = LIBAVUTIL_VERSION_INT,
  761. };
  762. AVCodec ff_libvpx_vp8_encoder = {
  763. .name = "libvpx",
  764. .long_name = NULL_IF_CONFIG_SMALL("libvpx VP8"),
  765. .type = AVMEDIA_TYPE_VIDEO,
  766. .id = AV_CODEC_ID_VP8,
  767. .priv_data_size = sizeof(VP8Context),
  768. .init = vp8_init,
  769. .encode2 = vp8_encode,
  770. .close = vp8_free,
  771. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
  772. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_NONE },
  773. .priv_class = &class_vp8,
  774. .defaults = defaults,
  775. };
  776. #endif /* CONFIG_LIBVPX_VP8_ENCODER */
  777. #if CONFIG_LIBVPX_VP9_ENCODER
  778. static av_cold int vp9_init(AVCodecContext *avctx)
  779. {
  780. return vpx_init(avctx, &vpx_codec_vp9_cx_algo);
  781. }
  782. static const AVClass class_vp9 = {
  783. .class_name = "libvpx-vp9 encoder",
  784. .item_name = av_default_item_name,
  785. .option = vp9_options,
  786. .version = LIBAVUTIL_VERSION_INT,
  787. };
  788. AVCodec ff_libvpx_vp9_encoder = {
  789. .name = "libvpx-vp9",
  790. .long_name = NULL_IF_CONFIG_SMALL("libvpx VP9"),
  791. .type = AVMEDIA_TYPE_VIDEO,
  792. .id = AV_CODEC_ID_VP9,
  793. .priv_data_size = sizeof(VP8Context),
  794. .init = vp9_init,
  795. .encode2 = vp8_encode,
  796. .close = vp8_free,
  797. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
  798. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
  799. .priv_class = &class_vp9,
  800. .defaults = defaults,
  801. .init_static_data = ff_vp9_init_static,
  802. };
  803. #endif /* CONFIG_LIBVPX_VP9_ENCODER */