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.

601 lines
23KB

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