libvpxenc.c 23 KB

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