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 /**
22 * @file
23 * VP8 encoder support via libvpx
24 */
25
26 #define VPX_DISABLE_CTRL_TYPECHECKS 1
27 #define VPX_CODEC_DISABLE_COMPAT 1
28 #include <vpx/vpx_encoder.h>
29 #include <vpx/vp8cx.h>
30
40
41 /**
42 * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
43 * One encoded frame returned from the library.
44 */
46 void *
buf;
/**< compressed data buffer */
47 size_t sz;
/**< length of compressed data */
50 int64_t
pts;
/**< time stamp to show frame
51 (in timebase units) */
52 unsigned long duration;
/**< duration to show frame
53 (in timebase units) */
54 uint32_t
flags;
/**< flags for this frame */
56 int have_sse;
/**< true if we have pending sse[] */
59 };
60
61 typedef struct VP8EncoderContext {
63 struct vpx_codec_ctx encoder;
64 struct vpx_image rawimg;
65 struct vpx_codec_ctx encoder_alpha;
66 struct vpx_image rawimg_alpha;
68 struct vpx_fixed_buf twopass_stats;
71 int have_sse;
/**< true if we have pending sse[] */
74
76 /**
77 * VP8 specific flags, see VP8F_* below.
78 */
80 #define VP8F_ERROR_RESILIENT 0x00000001 ///< Enable measures appropriate for streaming over lossy links
81 #define VP8F_AUTO_ALT_REF 0x00000002
///< Enable automatic alternate reference frame generation
82
84
88
94
95 // VP9-only
102
103 /** String mappings for enum vp8e_enc_control_id */
105 [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY",
106 [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE",
107 [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE",
108 [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP",
109 [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP",
110 [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE",
111 [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED",
112 [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF",
113 [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
114 [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS",
115 [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD",
116 [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS",
117 [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER",
118 [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES",
119 [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH",
120 [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE",
121 [VP8E_SET_CQ_LEVEL] = "VP8E_SET_CQ_LEVEL",
122 [VP8E_SET_MAX_INTRA_BITRATE_PCT] = "VP8E_SET_MAX_INTRA_BITRATE_PCT",
123 #if CONFIG_LIBVPX_VP9_ENCODER
124 [VP9E_SET_LOSSLESS] = "VP9E_SET_LOSSLESS",
125 [VP9E_SET_TILE_COLUMNS] = "VP9E_SET_TILE_COLUMNS",
126 [VP9E_SET_TILE_ROWS] = "VP9E_SET_TILE_ROWS",
127 [VP9E_SET_FRAME_PARALLEL_DECODING] = "VP9E_SET_FRAME_PARALLEL_DECODING",
128 [VP9E_SET_AQ_MODE] = "VP9E_SET_AQ_MODE",
129 #endif
130 };
131
133 {
135 const char *error = vpx_codec_error(&ctx->
encoder);
136 const char *detail = vpx_codec_error_detail(&ctx->
encoder);
137
139 if (detail)
141 }
142
144 const struct vpx_codec_enc_cfg *cfg)
145 {
148
149 av_log(avctx, level,
"vpx_codec_enc_cfg\n");
150 av_log(avctx, level,
"generic settings\n"
151 " %*s%u\n %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
152 " %*s{%u/%u}\n %*s%u\n %*s%d\n %*s%u\n",
153 width, "g_usage:", cfg->g_usage,
154 width, "g_threads:", cfg->g_threads,
155 width, "g_profile:", cfg->g_profile,
156 width, "g_w:", cfg->g_w,
157 width, "g_h:", cfg->g_h,
158 width, "g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
159 width, "g_error_resilient:", cfg->g_error_resilient,
160 width, "g_pass:", cfg->g_pass,
161 width, "g_lag_in_frames:", cfg->g_lag_in_frames);
162 av_log(avctx, level,
"rate control settings\n"
163 " %*s%u\n %*s%u\n %*s%u\n %*s%u\n"
165 width, "rc_dropframe_thresh:", cfg->rc_dropframe_thresh,
166 width, "rc_resize_allowed:", cfg->rc_resize_allowed,
167 width, "rc_resize_up_thresh:", cfg->rc_resize_up_thresh,
168 width, "rc_resize_down_thresh:", cfg->rc_resize_down_thresh,
169 width, "rc_end_usage:", cfg->rc_end_usage,
170 width, "rc_twopass_stats_in:", cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
171 width, "rc_target_bitrate:", cfg->rc_target_bitrate);
172 av_log(avctx, level,
"quantizer settings\n"
173 " %*s%u\n %*s%u\n",
174 width, "rc_min_quantizer:", cfg->rc_min_quantizer,
175 width, "rc_max_quantizer:", cfg->rc_max_quantizer);
176 av_log(avctx, level,
"bitrate tolerance\n"
177 " %*s%u\n %*s%u\n",
178 width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
179 width, "rc_overshoot_pct:", cfg->rc_overshoot_pct);
180 av_log(avctx, level,
"decoder buffer model\n"
181 " %*s%u\n %*s%u\n %*s%u\n",
182 width, "rc_buf_sz:", cfg->rc_buf_sz,
183 width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
184 width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
185 av_log(avctx, level,
"2 pass rate control settings\n"
186 " %*s%u\n %*s%u\n %*s%u\n",
187 width, "rc_2pass_vbr_bias_pct:", cfg->rc_2pass_vbr_bias_pct,
188 width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
189 width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
190 av_log(avctx, level,
"keyframing settings\n"
191 " %*s%d\n %*s%u\n %*s%u\n",
192 width, "kf_mode:", cfg->kf_mode,
193 width, "kf_min_dist:", cfg->kf_min_dist,
194 width, "kf_max_dist:", cfg->kf_max_dist);
195 av_log(avctx, level,
"\n");
196 }
197
199 {
201
202 while (*p)
204 *p = cx_frame;
206 }
207
209 {
214 }
215
217 {
219
220 while (p) {
223 p = list;
224 }
225 }
226
228 enum vp8e_enc_control_id
id,
int val)
229 {
233 int res;
234
237
238 res = vpx_codec_control(&ctx->
encoder,
id, val);
239 if (res != VPX_CODEC_OK) {
240 snprintf(buf,
sizeof(buf),
"Failed to set %s codec control",
243 }
244
245 return res == VPX_CODEC_OK ? 0 :
AVERROR(EINVAL);
246 }
247
249 {
251
252 vpx_codec_destroy(&ctx->
encoder);
259 return 0;
260 }
261
263 const struct vpx_codec_iface *iface)
264 {
266 struct vpx_codec_enc_cfg enccfg;
267 struct vpx_codec_enc_cfg enccfg_alpha;
269 int res;
270
273
276
277 if ((res = vpx_codec_enc_config_default(iface, &enccfg, 0)) != VPX_CODEC_OK) {
279 vpx_codec_err_to_string(res));
281 }
282
287 }
288
290
291 enccfg.g_w = avctx->
width;
292 enccfg.g_h = avctx->
height;
297
299 enccfg.g_pass = VPX_RC_FIRST_PASS;
301 enccfg.g_pass = VPX_RC_LAST_PASS;
302 else
303 enccfg.g_pass = VPX_RC_ONE_PASS;
304
307 enccfg.rc_end_usage = VPX_CBR;
308 }
else if (ctx->
crf >= 0) {
309 enccfg.rc_end_usage = VPX_CQ;
310 #if CONFIG_LIBVPX_VP9_ENCODER
312 enccfg.rc_end_usage = VPX_Q;
313 #endif
314 }
315
319 #if CONFIG_LIBVPX_VP9_ENCODER
320 } else if (enccfg.rc_end_usage == VPX_Q) {
321 #endif
322 } else {
323 if (enccfg.rc_end_usage == VPX_CQ) {
324 enccfg.rc_target_bitrate = 1000000;
325 } else {
326 avctx->
bit_rate = enccfg.rc_target_bitrate * 1000;
328 "Neither bitrate nor constrained quality specified, using default bitrate of %dkbit/sec\n",
329 enccfg.rc_target_bitrate);
330 }
331 }
332
333 if (avctx->
qmin >= 0)
334 enccfg.rc_min_quantizer = avctx->
qmin;
335 if (avctx->
qmax >= 0)
336 enccfg.rc_max_quantizer = avctx->
qmax;
337
338 if (enccfg.rc_end_usage == VPX_CQ
339 #if CONFIG_LIBVPX_VP9_ENCODER
340 || enccfg.rc_end_usage == VPX_Q
341 #endif
342 ) {
343 if (ctx->
crf < enccfg.rc_min_quantizer || ctx->
crf > enccfg.rc_max_quantizer) {
345 "CQ level %d must be between minimum and maximum quantizer value (%d-%d)\n",
346 ctx->
crf, enccfg.rc_min_quantizer, enccfg.rc_max_quantizer);
348 }
349 }
350
352
353 //0-100 (0 => CBR, 100 => VBR)
356 enccfg.rc_2pass_vbr_minsection_pct =
359 enccfg.rc_2pass_vbr_maxsection_pct =
361
363 enccfg.rc_buf_sz =
366 enccfg.rc_buf_initial_sz =
368 enccfg.rc_buf_optimal_sz = enccfg.rc_buf_sz * 5 / 6;
370
371 //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
375 enccfg.kf_max_dist = avctx->
gop_size;
376
377 if (enccfg.g_pass == VPX_RC_FIRST_PASS)
378 enccfg.g_lag_in_frames = 0;
379 else if (enccfg.g_pass == VPX_RC_LAST_PASS) {
380 int decode_size;
381
385 }
386
394 }
397 if (decode_size < 0) {
400 }
401
404 }
405
406 /* 0-3: For non-zero values the encoder increasingly optimizes for reduced
407 complexity playback on low powered devices at the expense of encode
408 quality. */
410 enccfg.g_profile = avctx->
profile;
411
413
415 /* Construct Encoder Context */
416 res = vpx_codec_enc_init(&ctx->
encoder, iface, &enccfg, flags);
417 if (res != VPX_CODEC_OK) {
420 }
421
423 enccfg_alpha = enccfg;
424 res = vpx_codec_enc_init(&ctx->
encoder_alpha, iface, &enccfg_alpha, flags);
425 if (res != VPX_CODEC_OK) {
428 }
429 }
430
431 //codec control failures are currently treated only as warnings
447 #if FF_API_MPV_OPT
451 "use the static-thresh private option instead.\n");
453 }
455 #endif
461
462 #if CONFIG_LIBVPX_VP9_ENCODER
474 }
475 #endif
476
478
479 //provide dummy value to initialize wrapper, values will be updated each _encode()
481 (unsigned char*)1);
482
485 (unsigned char*)1);
486
492 }
493 return 0;
494 }
495
497 const struct vpx_codec_cx_pkt *
src,
498 const struct vpx_codec_cx_pkt *src_alpha,
500 {
501 dst->
pts = src->data.frame.pts;
502 dst->
duration = src->data.frame.duration;
503 dst->
flags = src->data.frame.flags;
504 dst->
sz = src->data.frame.sz;
505 dst->
buf = src->data.frame.buf;
507 /* For alt-ref frame, don't store PSNR or increment frame_number */
508 if (!(dst->
flags & VPX_FRAME_IS_INVISIBLE)) {
512 /* associate last-seen SSE to the frame. */
513 /* Transfers ownership from ctx to dst. */
514 /* WARNING! This makes the assumption that PSNR_PKT comes
515 just before the frame it refers to! */
516 memcpy(dst->
sse, ctx->
sse,
sizeof(dst->
sse));
518 }
519 } else {
521 }
522 if (src_alpha) {
523 dst->
buf_alpha = src_alpha->data.frame.buf;
524 dst->
sz_alpha = src_alpha->data.frame.sz;
525 }
526 else {
529 }
530 }
531
532 /**
533 * Store coded frame information in format suitable for return from encode2().
534 *
535 * Write information from @a cx_frame to @a pkt
536 * @return packet data size on success
537 * @return a negative AVERROR on error
538 */
541 {
544 if (ret >= 0) {
547 coded_frame->
pts = cx_frame->
pts;
549
553 } else
555
557 int i;
558 /* Beware of the Y/U/V/all order! */
559 coded_frame->
error[0] = cx_frame->
sse[1];
560 coded_frame->
error[1] = cx_frame->
sse[2];
561 coded_frame->
error[2] = cx_frame->
sse[3];
562 coded_frame->
error[3] = 0;
// alpha
563 for (i = 0; i < 4; ++i) {
565 }
567 }
572 if(!side_data) {
576 }
579 }
580 } else {
582 }
584 }
585
586 /**
587 * Queue multiple output frames from the encoder, returning the front-most.
588 * In cases where vpx_codec_get_cx_data() returns more than 1 frame append
589 * the frame queue. Return the head frame if available.
590 * @return Stored frame size
591 * @return AVERROR(EINVAL) on output size error
592 * @return AVERROR(ENOMEM) on coded frame queue data allocation error
593 */
596 {
598 const struct vpx_codec_cx_pkt *
pkt;
599 const struct vpx_codec_cx_pkt *pkt_alpha =
NULL;
600 const void *iter =
NULL;
601 const void *iter_alpha =
NULL;
603
606 /* return the leading frame if we've already begun queueing */
607 size =
storeframe(avctx, cx_frame, pkt_out, coded_frame);
608 if (size < 0)
612 }
613
614 /* consume all available output from the encoder before returning. buffers
615 are only good through the next vpx_codec call */
616 while ((pkt = vpx_codec_get_cx_data(&ctx->
encoder, &iter)) &&
619 switch (pkt->kind) {
620 case VPX_CODEC_CX_FRAME_PKT:
621 if (!size) {
623
624 /* avoid storing the frame when the list is empty and we haven't yet
625 provided a frame for output */
627 cx_pktcpy(&cx_frame, pkt, pkt_alpha, ctx);
628 size =
storeframe(avctx, &cx_frame, pkt_out, coded_frame);
629 if (size < 0)
631 } else {
634
635 if (!cx_frame) {
637 "Frame queue element alloc failed\n");
639 }
640 cx_pktcpy(cx_frame, pkt, pkt_alpha, ctx);
642
643 if (!cx_frame->
buf) {
649 }
650 memcpy(cx_frame->
buf, pkt->data.frame.buf, pkt->data.frame.sz);
659 }
660 memcpy(cx_frame->
buf_alpha, pkt_alpha->data.frame.buf, pkt_alpha->data.frame.sz);
661 }
663 }
664 break;
665 case VPX_CODEC_STATS_PKT: {
667 int err;
669 stats->sz +
670 pkt->data.twopass_stats.sz)) < 0) {
671 stats->sz = 0;
673 return err;
674 }
675 memcpy((
uint8_t*)stats->buf + stats->sz,
676 pkt->data.twopass_stats.buf, pkt->data.twopass_stats.sz);
677 stats->sz += pkt->data.twopass_stats.sz;
678 break;
679 }
680 case VPX_CODEC_PSNR_PKT:
682 ctx->
sse[0] = pkt->data.psnr.sse[0];
683 ctx->
sse[1] = pkt->data.psnr.sse[1];
684 ctx->
sse[2] = pkt->data.psnr.sse[2];
685 ctx->
sse[3] = pkt->data.psnr.sse[3];
687 break;
688 case VPX_CODEC_CUSTOM_PKT:
689 //ignore unsupported/unrecognized packet types
690 break;
691 }
692 }
693
695 }
696
699 {
701 struct vpx_image *rawimg =
NULL;
702 struct vpx_image *rawimg_alpha =
NULL;
703 int64_t timestamp = 0;
704 int res, coded_size;
705 vpx_enc_frame_flags_t
flags = 0;
706
707 if (frame) {
709 rawimg->planes[VPX_PLANE_Y] = frame->
data[0];
710 rawimg->planes[VPX_PLANE_U] = frame->
data[1];
711 rawimg->planes[VPX_PLANE_V] = frame->
data[2];
712 rawimg->stride[VPX_PLANE_Y] = frame->
linesize[0];
713 rawimg->stride[VPX_PLANE_U] = frame->
linesize[1];
714 rawimg->stride[VPX_PLANE_V] = frame->
linesize[2];
718 rawimg_alpha->planes[VPX_PLANE_Y] = frame->
data[3];
721 if (!u_plane || !v_plane) {
725 }
727 rawimg_alpha->planes[VPX_PLANE_U] = u_plane;
729 rawimg_alpha->planes[VPX_PLANE_V] = v_plane;
730 rawimg_alpha->stride[VPX_PLANE_Y] = frame->
linesize[0];
731 rawimg_alpha->stride[VPX_PLANE_U] = frame->
linesize[1];
732 rawimg_alpha->stride[VPX_PLANE_V] = frame->
linesize[2];
733 }
734 timestamp = frame->
pts;
736 flags |= VPX_EFLAG_FORCE_KF;
737 }
738
739 res = vpx_codec_encode(&ctx->
encoder, rawimg, timestamp,
741 if (res != VPX_CODEC_OK) {
744 }
745
747 res = vpx_codec_encode(&ctx->
encoder_alpha, rawimg_alpha, timestamp,
749 if (res != VPX_CODEC_OK) {
752 }
753 }
754
756
759
763 b64_size);
765 }
768 }
769
770 if (rawimg_alpha) {
771 av_freep(&rawimg_alpha->planes[VPX_PLANE_U]);
772 av_freep(&rawimg_alpha->planes[VPX_PLANE_V]);
773 }
774
775 *got_packet = !!coded_size;
776 return 0;
777 }
778
779 #define OFFSET(x) offsetof(VP8Context, x)
780 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
781
782 #ifndef VPX_ERROR_RESILIENT_DEFAULT
783 #define VPX_ERROR_RESILIENT_DEFAULT 1
784 #define VPX_ERROR_RESILIENT_PARTITIONS 2
785 #endif
786
787 #define COMMON_OPTIONS \
788 { "cpu-used", "Quality/Speed ratio modifier", OFFSET(cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
789 { "auto-alt-ref", "Enable use of alternate reference " \
790 "frames (2-pass only)", OFFSET(auto_alt_ref), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, VE}, \
791 { "lag-in-frames", "Number of frames to look ahead for " \
792 "alternate reference frame selection", OFFSET(lag_in_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
793 { "arnr-maxframes", "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
794 { "arnr-strength", "altref noise reduction filter strength", OFFSET(arnr_strength), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
795 { "arnr-type", "altref noise reduction filter type", OFFSET(arnr_type), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE, "arnr_type"}, \
796 { "backward", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \
797 { "forward", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \
798 { "centered", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \
799 { "deadline", "Time to spend encoding, in microseconds.", OFFSET(deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
800 { "best", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \
801 { "good", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \
802 { "realtime", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME}, 0, 0, VE, "quality"}, \
803 { "error-resilient", "Error resilience configuration", OFFSET(error_resilient), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, VE, "er"}, \
804 { "max-intra-rate", "Maximum I-frame bitrate (pct) 0=unlimited", OFFSET(max_intra_rate), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE}, \
805 { "default", "Improve resiliency against losses of whole frames", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_DEFAULT}, 0, 0, VE, "er"}, \
806 { "partitions", "The frame partitions are independently decodable " \
807 "by the bool decoder, meaning that partitions can be decoded even " \
808 "though earlier partitions have been lost. Note that intra predicition" \
809 " is still done over the partition boundary.", 0, AV_OPT_TYPE_CONST, {.i64 = VPX_ERROR_RESILIENT_PARTITIONS}, 0, 0, VE, "er"}, \
810 { "crf", "Select the quality for constant quality mode", offsetof(VP8Context, crf), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 63, VE }, \
811 { "static-thresh", "A change threshold on blocks below which they will be skipped by the encoder", OFFSET(static_thresh), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, \
812
813 #define LEGACY_OPTIONS \
814 {"speed", "", offsetof(VP8Context, cpu_used), AV_OPT_TYPE_INT, {.i64 = 1}, -16, 16, VE}, \
815 {"quality", "", offsetof(VP8Context, deadline), AV_OPT_TYPE_INT, {.i64 = VPX_DL_GOOD_QUALITY}, INT_MIN, INT_MAX, VE, "quality"}, \
816 {"vp8flags", "", offsetof(VP8Context, flags), FF_OPT_TYPE_FLAGS, {.i64 = 0}, 0, UINT_MAX, VE, "flags"}, \
817 {"error_resilient", "enable error resilience", 0, FF_OPT_TYPE_CONST, {.dbl = VP8F_ERROR_RESILIENT}, INT_MIN, INT_MAX, VE, "flags"}, \
818 {"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"}, \
819 {"arnr_max_frames", "altref noise reduction max frame count", offsetof(VP8Context, arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 15, VE}, \
820 {"arnr_strength", "altref noise reduction filter strength", offsetof(VP8Context, arnr_strength), AV_OPT_TYPE_INT, {.i64 = 3}, 0, 6, VE}, \
821 {"arnr_type", "altref noise reduction filter type", offsetof(VP8Context, arnr_type), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 3, VE}, \
822 {"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}, \
823
824 #if CONFIG_LIBVPX_VP8_ENCODER
825 static const AVOption vp8_options[] = {
829 };
830 #endif
831
832 #if CONFIG_LIBVPX_VP9_ENCODER
833 static const AVOption vp9_options[] = {
836 {
"tile-columns",
"Number of tile columns to use, log2",
OFFSET(tile_columns),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 6,
VE},
837 {
"tile-rows",
"Number of tile rows to use, log2",
OFFSET(tile_rows),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 2,
VE},
838 {
"frame-parallel",
"Enable frame parallel decodability features",
OFFSET(frame_parallel),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1,
VE},
839 {
"aq-mode",
"adaptive quantization mode",
OFFSET(aq_mode),
AV_OPT_TYPE_INT, {.i64 = -1}, -1, 3,
VE,
"aq_mode"},
841 {
"variance",
"Variance based Aq", 0,
AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0,
VE,
"aq_mode" }, \
842 {
"complexity",
"Complexity based Aq", 0,
AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0,
VE,
"aq_mode" }, \
843 {
"cyclic",
"Cyclic Refresh Aq", 0,
AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0,
VE,
"aq_mode" }, \
844 LEGACY_OPTIONS
846 };
847 #endif
848
849 #undef COMMON_OPTIONS
850 #undef LEGACY_OPTIONS
851
853 { "qmin", "-1" },
854 { "qmax", "-1" },
855 { "g", "-1" },
856 { "keyint_min", "-1" },
858 };
859
860 #if CONFIG_LIBVPX_VP8_ENCODER
862 {
863 return vpx_init(avctx, vpx_codec_vp8_cx());
864 }
865
866 static const AVClass class_vp8 = {
869 .option = vp8_options,
871 };
872
873 AVCodec ff_libvpx_vp8_encoder = {
884 .priv_class = &class_vp8,
886 };
887 #endif /* CONFIG_LIBVPX_VP8_ENCODER */
888
889 #if CONFIG_LIBVPX_VP9_ENCODER
891 {
892 return vpx_init(avctx, vpx_codec_vp9_cx());
893 }
894
895 static const AVClass class_vp9 = {
898 .option = vp9_options,
900 };
901
902 AVCodec ff_libvpx_vp9_encoder = {
903 .
name =
"libvpx-vp9",
913 .priv_class = &class_vp9,
916 };
917 #endif /* CONFIG_LIBVPX_VP9_ENCODER */