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.

561 lines
22KB

  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 "libavutil/base64.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/mathematics.h"
  32. /**
  33. * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
  34. * One encoded frame returned from the library.
  35. */
  36. struct FrameListData {
  37. void *buf; /**< compressed data buffer */
  38. size_t sz; /**< length of compressed data */
  39. int64_t pts; /**< time stamp to show frame
  40. (in timebase units) */
  41. unsigned long duration; /**< duration to show frame
  42. (in timebase units) */
  43. uint32_t flags; /**< flags for this frame */
  44. struct FrameListData *next;
  45. };
  46. typedef struct VP8EncoderContext {
  47. AVClass *av_class;
  48. struct vpx_codec_ctx encoder;
  49. struct vpx_image rawimg;
  50. struct vpx_fixed_buf twopass_stats;
  51. int deadline; //i.e., RT/GOOD/BEST
  52. struct FrameListData *coded_frame_list;
  53. int cpuused;
  54. /**
  55. * VP8 specific flags, see VP8F_* below.
  56. */
  57. int flags;
  58. #define VP8F_ERROR_RESILIENT 0x00000001 ///< Enable measures appropriate for streaming over lossy links
  59. #define VP8F_AUTO_ALT_REF 0x00000002 ///< Enable automatic alternate reference frame generation
  60. int arnr_max_frames;
  61. int arnr_strength;
  62. int arnr_type;
  63. } VP8Context;
  64. #define V AV_OPT_FLAG_VIDEO_PARAM
  65. #define E AV_OPT_FLAG_ENCODING_PARAM
  66. static const AVOption options[]={
  67. {"speed", "", offsetof(VP8Context, cpuused), FF_OPT_TYPE_INT, 3, -16, 16, V|E},
  68. {"quality", "", offsetof(VP8Context, deadline), FF_OPT_TYPE_INT, VPX_DL_GOOD_QUALITY, INT_MIN, INT_MAX, V|E, "quality"},
  69. {"best", NULL, 0, FF_OPT_TYPE_CONST, VPX_DL_BEST_QUALITY, INT_MIN, INT_MAX, V|E, "quality"},
  70. {"good", NULL, 0, FF_OPT_TYPE_CONST, VPX_DL_GOOD_QUALITY, INT_MIN, INT_MAX, V|E, "quality"},
  71. {"realtime", NULL, 0, FF_OPT_TYPE_CONST, VPX_DL_REALTIME, INT_MIN, INT_MAX, V|E, "quality"},
  72. {"vp8flags", "", offsetof(VP8Context, flags), FF_OPT_TYPE_FLAGS, 0, 0, UINT_MAX, V|E, "flags"},
  73. {"error_resilient", "enable error resilience", 0, FF_OPT_TYPE_CONST, VP8F_ERROR_RESILIENT, INT_MIN, INT_MAX, V|E, "flags"},
  74. {"altref", "enable use of alternate reference frames (VP8/2-pass only)", 0, FF_OPT_TYPE_CONST, VP8F_AUTO_ALT_REF, INT_MIN, INT_MAX, V|E, "flags"},
  75. {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VP8Context, arnr_max_frames), FF_OPT_TYPE_INT, 0, 0, 15, V|E},
  76. {"arnr_strength", "altref noise reduction filter strength", offsetof(VP8Context, arnr_strength), FF_OPT_TYPE_INT, 3, 0, 6, V|E},
  77. {"arnr_type", "altref noise reduction filter type", offsetof(VP8Context, arnr_type), FF_OPT_TYPE_INT, 3, 1, 3, V|E},
  78. {NULL}
  79. };
  80. static const AVClass class = { "libvpx", av_default_item_name, options, LIBAVUTIL_VERSION_INT };
  81. #undef V
  82. #undef E
  83. /** String mappings for enum vp8e_enc_control_id */
  84. static const char *ctlidstr[] = {
  85. [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY",
  86. [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE",
  87. [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE",
  88. [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP",
  89. [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP",
  90. [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE",
  91. [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED",
  92. [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF",
  93. [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
  94. [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS",
  95. [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD",
  96. [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS",
  97. [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER",
  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. };
  103. static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)
  104. {
  105. VP8Context *ctx = avctx->priv_data;
  106. const char *error = vpx_codec_error(&ctx->encoder);
  107. const char *detail = vpx_codec_error_detail(&ctx->encoder);
  108. av_log(avctx, AV_LOG_ERROR, "%s: %s\n", desc, error);
  109. if (detail)
  110. av_log(avctx, AV_LOG_ERROR, " Additional information: %s\n", detail);
  111. }
  112. static av_cold void dump_enc_cfg(AVCodecContext *avctx,
  113. const struct vpx_codec_enc_cfg *cfg)
  114. {
  115. int width = -30;
  116. int level = AV_LOG_DEBUG;
  117. av_log(avctx, level, "vpx_codec_enc_cfg\n");
  118. av_log(avctx, level, "generic settings\n"
  119. " %*s%u\n %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
  120. " %*s{%u/%u}\n %*s%u\n %*s%d\n %*s%u\n",
  121. width, "g_usage:", cfg->g_usage,
  122. width, "g_threads:", cfg->g_threads,
  123. width, "g_profile:", cfg->g_profile,
  124. width, "g_w:", cfg->g_w,
  125. width, "g_h:", cfg->g_h,
  126. width, "g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
  127. width, "g_error_resilient:", cfg->g_error_resilient,
  128. width, "g_pass:", cfg->g_pass,
  129. width, "g_lag_in_frames:", cfg->g_lag_in_frames);
  130. av_log(avctx, level, "rate control settings\n"
  131. " %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
  132. " %*s%d\n %*s%p(%zu)\n %*s%u\n",
  133. width, "rc_dropframe_thresh:", cfg->rc_dropframe_thresh,
  134. width, "rc_resize_allowed:", cfg->rc_resize_allowed,
  135. width, "rc_resize_up_thresh:", cfg->rc_resize_up_thresh,
  136. width, "rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
  137. width, "rc_end_usage:", cfg->rc_end_usage,
  138. width, "rc_twopass_stats_in:", cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
  139. width, "rc_target_bitrate:", cfg->rc_target_bitrate);
  140. av_log(avctx, level, "quantizer settings\n"
  141. " %*s%u\n %*s%u\n",
  142. width, "rc_min_quantizer:", cfg->rc_min_quantizer,
  143. width, "rc_max_quantizer:", cfg->rc_max_quantizer);
  144. av_log(avctx, level, "bitrate tolerance\n"
  145. " %*s%u\n %*s%u\n",
  146. width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
  147. width, "rc_overshoot_pct:", cfg->rc_overshoot_pct);
  148. av_log(avctx, level, "decoder buffer model\n"
  149. " %*s%u\n %*s%u\n %*s%u\n",
  150. width, "rc_buf_sz:", cfg->rc_buf_sz,
  151. width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
  152. width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
  153. av_log(avctx, level, "2 pass rate control settings\n"
  154. " %*s%u\n %*s%u\n %*s%u\n",
  155. width, "rc_2pass_vbr_bias_pct:", cfg->rc_2pass_vbr_bias_pct,
  156. width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
  157. width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
  158. av_log(avctx, level, "keyframing settings\n"
  159. " %*s%d\n %*s%u\n %*s%u\n",
  160. width, "kf_mode:", cfg->kf_mode,
  161. width, "kf_min_dist:", cfg->kf_min_dist,
  162. width, "kf_max_dist:", cfg->kf_max_dist);
  163. av_log(avctx, level, "\n");
  164. }
  165. static void coded_frame_add(void *list, struct FrameListData *cx_frame)
  166. {
  167. struct FrameListData **p = list;
  168. while (*p != NULL)
  169. p = &(*p)->next;
  170. *p = cx_frame;
  171. cx_frame->next = NULL;
  172. }
  173. static av_cold void free_coded_frame(struct FrameListData *cx_frame)
  174. {
  175. av_freep(&cx_frame->buf);
  176. av_freep(&cx_frame);
  177. }
  178. static av_cold void free_frame_list(struct FrameListData *list)
  179. {
  180. struct FrameListData *p = list;
  181. while (p) {
  182. list = list->next;
  183. free_coded_frame(p);
  184. p = list;
  185. }
  186. }
  187. static av_cold int codecctl_int(AVCodecContext *avctx,
  188. enum vp8e_enc_control_id id, int val)
  189. {
  190. VP8Context *ctx = avctx->priv_data;
  191. char buf[80];
  192. int width = -30;
  193. int res;
  194. snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
  195. av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, val);
  196. res = vpx_codec_control(&ctx->encoder, id, val);
  197. if (res != VPX_CODEC_OK) {
  198. snprintf(buf, sizeof(buf), "Failed to set %s codec control",
  199. ctlidstr[id]);
  200. log_encoder_error(avctx, buf);
  201. }
  202. return res == VPX_CODEC_OK ? 0 : AVERROR(EINVAL);
  203. }
  204. static av_cold int vp8_free(AVCodecContext *avctx)
  205. {
  206. VP8Context *ctx = avctx->priv_data;
  207. vpx_codec_destroy(&ctx->encoder);
  208. av_freep(&ctx->twopass_stats.buf);
  209. av_freep(&avctx->coded_frame);
  210. av_freep(&avctx->stats_out);
  211. free_frame_list(ctx->coded_frame_list);
  212. return 0;
  213. }
  214. static av_cold int vp8_init(AVCodecContext *avctx)
  215. {
  216. VP8Context *ctx = avctx->priv_data;
  217. const struct vpx_codec_iface *iface = &vpx_codec_vp8_cx_algo;
  218. struct vpx_codec_enc_cfg enccfg;
  219. int res;
  220. av_log(avctx, AV_LOG_INFO, "%s\n", vpx_codec_version_str());
  221. av_log(avctx, AV_LOG_VERBOSE, "%s\n", vpx_codec_build_config());
  222. if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
  223. av_log(avctx, AV_LOG_ERROR, "Failed to get config: %s\n",
  224. vpx_codec_err_to_string(res));
  225. return AVERROR(EINVAL);
  226. }
  227. dump_enc_cfg(avctx, &enccfg);
  228. enccfg.g_w = avctx->width;
  229. enccfg.g_h = avctx->height;
  230. enccfg.g_timebase.num = avctx->time_base.num;
  231. enccfg.g_timebase.den = avctx->time_base.den;
  232. enccfg.g_threads = avctx->thread_count;
  233. enccfg.g_lag_in_frames= FFMIN(avctx->rc_lookahead, 25); //0-25, avoids init failure
  234. if (avctx->flags & CODEC_FLAG_PASS1)
  235. enccfg.g_pass = VPX_RC_FIRST_PASS;
  236. else if (avctx->flags & CODEC_FLAG_PASS2)
  237. enccfg.g_pass = VPX_RC_LAST_PASS;
  238. else
  239. enccfg.g_pass = VPX_RC_ONE_PASS;
  240. if (avctx->rc_min_rate == avctx->rc_max_rate &&
  241. avctx->rc_min_rate == avctx->bit_rate)
  242. enccfg.rc_end_usage = VPX_CBR;
  243. else if (avctx->crf)
  244. enccfg.rc_end_usage = VPX_CQ;
  245. enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
  246. AV_ROUND_NEAR_INF);
  247. enccfg.rc_min_quantizer = avctx->qmin;
  248. enccfg.rc_max_quantizer = avctx->qmax;
  249. enccfg.rc_dropframe_thresh = avctx->frame_skip_threshold;
  250. //0-100 (0 => CBR, 100 => VBR)
  251. enccfg.rc_2pass_vbr_bias_pct = round(avctx->qcompress * 100);
  252. enccfg.rc_2pass_vbr_minsection_pct =
  253. avctx->rc_min_rate * 100LL / avctx->bit_rate;
  254. if (avctx->rc_max_rate)
  255. enccfg.rc_2pass_vbr_maxsection_pct =
  256. avctx->rc_max_rate * 100LL / avctx->bit_rate;
  257. if (avctx->rc_buffer_size)
  258. enccfg.rc_buf_sz =
  259. avctx->rc_buffer_size * 1000LL / avctx->bit_rate;
  260. if (avctx->rc_initial_buffer_occupancy)
  261. enccfg.rc_buf_initial_sz =
  262. avctx->rc_initial_buffer_occupancy * 1000LL / avctx->bit_rate;
  263. enccfg.rc_buf_optimal_sz = enccfg.rc_buf_sz * 5 / 6;
  264. enccfg.rc_undershoot_pct = round(avctx->rc_buffer_aggressivity * 100);
  265. //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
  266. if (avctx->keyint_min == avctx->gop_size)
  267. enccfg.kf_min_dist = avctx->keyint_min;
  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->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. codecctl_int(avctx, VP8E_SET_CPUUSED, ctx->cpuused);
  310. codecctl_int(avctx, VP8E_SET_NOISE_SENSITIVITY, avctx->noise_reduction);
  311. codecctl_int(avctx, VP8E_SET_TOKEN_PARTITIONS, av_log2(avctx->slices));
  312. codecctl_int(avctx, VP8E_SET_STATIC_THRESHOLD, avctx->mb_threshold);
  313. codecctl_int(avctx, VP8E_SET_CQ_LEVEL, (int)avctx->crf);
  314. codecctl_int(avctx, VP8E_SET_ENABLEAUTOALTREF, !!(ctx->flags & VP8F_AUTO_ALT_REF));
  315. codecctl_int(avctx, VP8E_SET_ARNR_MAXFRAMES, ctx->arnr_max_frames);
  316. codecctl_int(avctx, VP8E_SET_ARNR_STRENGTH, ctx->arnr_strength);
  317. codecctl_int(avctx, VP8E_SET_ARNR_TYPE, ctx->arnr_type);
  318. av_log(avctx, AV_LOG_DEBUG, "Using deadline: %d\n", ctx->deadline);
  319. //provide dummy value to initialize wrapper, values will be updated each _encode()
  320. vpx_img_wrap(&ctx->rawimg, VPX_IMG_FMT_I420, avctx->width, avctx->height, 1,
  321. (unsigned char*)1);
  322. avctx->coded_frame = avcodec_alloc_frame();
  323. if (!avctx->coded_frame) {
  324. av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
  325. vp8_free(avctx);
  326. return AVERROR(ENOMEM);
  327. }
  328. return 0;
  329. }
  330. static inline void cx_pktcpy(struct FrameListData *dst,
  331. const struct vpx_codec_cx_pkt *src)
  332. {
  333. dst->pts = src->data.frame.pts;
  334. dst->duration = src->data.frame.duration;
  335. dst->flags = src->data.frame.flags;
  336. dst->sz = src->data.frame.sz;
  337. dst->buf = src->data.frame.buf;
  338. }
  339. /**
  340. * Store coded frame information in format suitable for return from encode().
  341. *
  342. * Write buffer information from @a cx_frame to @a buf & @a buf_size.
  343. * Timing/frame details to @a coded_frame.
  344. * @return Frame size written to @a buf on success
  345. * @return AVERROR(EINVAL) on error
  346. */
  347. static int storeframe(AVCodecContext *avctx, struct FrameListData *cx_frame,
  348. uint8_t *buf, int buf_size, AVFrame *coded_frame)
  349. {
  350. if ((int) cx_frame->sz <= buf_size) {
  351. buf_size = cx_frame->sz;
  352. memcpy(buf, cx_frame->buf, buf_size);
  353. coded_frame->pts = cx_frame->pts;
  354. coded_frame->key_frame = !!(cx_frame->flags & VPX_FRAME_IS_KEY);
  355. if (coded_frame->key_frame)
  356. coded_frame->pict_type = AV_PICTURE_TYPE_I;
  357. else
  358. coded_frame->pict_type = AV_PICTURE_TYPE_P;
  359. } else {
  360. av_log(avctx, AV_LOG_ERROR,
  361. "Compressed frame larger than storage provided! (%zu/%d)\n",
  362. cx_frame->sz, buf_size);
  363. return AVERROR(EINVAL);
  364. }
  365. return buf_size;
  366. }
  367. /**
  368. * Queue multiple output frames from the encoder, returning the front-most.
  369. * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
  370. * the frame queue. Return the head frame if available.
  371. * @return Stored frame size
  372. * @return AVERROR(EINVAL) on output size error
  373. * @return AVERROR(ENOMEM) on coded frame queue data allocation error
  374. */
  375. static int queue_frames(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  376. AVFrame *coded_frame)
  377. {
  378. VP8Context *ctx = avctx->priv_data;
  379. const struct vpx_codec_cx_pkt *pkt;
  380. const void *iter = NULL;
  381. int size = 0;
  382. if (ctx->coded_frame_list) {
  383. struct FrameListData *cx_frame = ctx->coded_frame_list;
  384. /* return the leading frame if we've already begun queueing */
  385. size = storeframe(avctx, cx_frame, buf, buf_size, coded_frame);
  386. if (size < 0)
  387. return AVERROR(EINVAL);
  388. ctx->coded_frame_list = cx_frame->next;
  389. free_coded_frame(cx_frame);
  390. }
  391. /* consume all available output from the encoder before returning. buffers
  392. are only good through the next vpx_codec call */
  393. while ((pkt = vpx_codec_get_cx_data(&ctx->encoder, &iter))) {
  394. switch (pkt->kind) {
  395. case VPX_CODEC_CX_FRAME_PKT:
  396. if (!size) {
  397. struct FrameListData cx_frame;
  398. /* avoid storing the frame when the list is empty and we haven't yet
  399. provided a frame for output */
  400. assert(!ctx->coded_frame_list);
  401. cx_pktcpy(&cx_frame, pkt);
  402. size = storeframe(avctx, &cx_frame, buf, buf_size, coded_frame);
  403. if (size < 0)
  404. return AVERROR(EINVAL);
  405. } else {
  406. struct FrameListData *cx_frame =
  407. av_malloc(sizeof(struct FrameListData));
  408. if (!cx_frame) {
  409. av_log(avctx, AV_LOG_ERROR,
  410. "Frame queue element alloc failed\n");
  411. return AVERROR(ENOMEM);
  412. }
  413. cx_pktcpy(cx_frame, pkt);
  414. cx_frame->buf = av_malloc(cx_frame->sz);
  415. if (!cx_frame->buf) {
  416. av_log(avctx, AV_LOG_ERROR,
  417. "Data buffer alloc (%zu bytes) failed\n",
  418. cx_frame->sz);
  419. return AVERROR(ENOMEM);
  420. }
  421. memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
  422. coded_frame_add(&ctx->coded_frame_list, cx_frame);
  423. }
  424. break;
  425. case VPX_CODEC_STATS_PKT: {
  426. struct vpx_fixed_buf *stats = &ctx->twopass_stats;
  427. stats->buf = av_realloc(stats->buf,
  428. stats->sz + pkt->data.twopass_stats.sz);
  429. if (!stats->buf) {
  430. av_log(avctx, AV_LOG_ERROR, "Stat buffer realloc failed\n");
  431. return AVERROR(ENOMEM);
  432. }
  433. memcpy((uint8_t*)stats->buf + stats->sz,
  434. pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
  435. stats->sz += pkt->data.twopass_stats.sz;
  436. break;
  437. }
  438. case VPX_CODEC_PSNR_PKT: //FIXME add support for CODEC_FLAG_PSNR
  439. case VPX_CODEC_CUSTOM_PKT:
  440. //ignore unsupported/unrecognized packet types
  441. break;
  442. }
  443. }
  444. return size;
  445. }
  446. static int vp8_encode(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  447. void *data)
  448. {
  449. VP8Context *ctx = avctx->priv_data;
  450. AVFrame *frame = data;
  451. struct vpx_image *rawimg = NULL;
  452. int64_t timestamp = 0;
  453. int res, coded_size;
  454. if (frame) {
  455. rawimg = &ctx->rawimg;
  456. rawimg->planes[VPX_PLANE_Y] = frame->data[0];
  457. rawimg->planes[VPX_PLANE_U] = frame->data[1];
  458. rawimg->planes[VPX_PLANE_V] = frame->data[2];
  459. rawimg->stride[VPX_PLANE_Y] = frame->linesize[0];
  460. rawimg->stride[VPX_PLANE_U] = frame->linesize[1];
  461. rawimg->stride[VPX_PLANE_V] = frame->linesize[2];
  462. timestamp = frame->pts;
  463. }
  464. res = vpx_codec_encode(&ctx->encoder, rawimg, timestamp,
  465. avctx->ticks_per_frame, 0, ctx->deadline);
  466. if (res != VPX_CODEC_OK) {
  467. log_encoder_error(avctx, "Error encoding frame");
  468. return AVERROR_INVALIDDATA;
  469. }
  470. coded_size = queue_frames(avctx, buf, buf_size, avctx->coded_frame);
  471. if (!frame && avctx->flags & CODEC_FLAG_PASS1) {
  472. unsigned int b64_size = AV_BASE64_SIZE(ctx->twopass_stats.sz);
  473. avctx->stats_out = av_malloc(b64_size);
  474. if (!avctx->stats_out) {
  475. av_log(avctx, AV_LOG_ERROR, "Stat buffer alloc (%d bytes) failed\n",
  476. b64_size);
  477. return AVERROR(ENOMEM);
  478. }
  479. av_base64_encode(avctx->stats_out, b64_size, ctx->twopass_stats.buf,
  480. ctx->twopass_stats.sz);
  481. }
  482. return coded_size;
  483. }
  484. AVCodec ff_libvpx_encoder = {
  485. .name = "libvpx",
  486. .type = AVMEDIA_TYPE_VIDEO,
  487. .id = CODEC_ID_VP8,
  488. .priv_data_size = sizeof(VP8Context),
  489. .init = vp8_init,
  490. .encode = vp8_encode,
  491. .close = vp8_free,
  492. .capabilities = CODEC_CAP_DELAY,
  493. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
  494. .long_name = NULL_IF_CONFIG_SMALL("libvpx VP8"),
  495. .priv_class= &class,
  496. };