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.

730 lines
29KB

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