Home | History | Annotate | Download | only in examples

Lines Matching defs:encoder

15 // This is an example demonstrating how to control the VP8 encoder's
163 const VpxInterface *encoder = NULL;
172 encoder = get_vpx_encoder_by_name(argv[1]);
173 if (!encoder)
176 info.codec_fourcc = encoder->fourcc;
194 printf("Using %s\n", vpx_codec_iface_name(encoder->interface()));
196 res = vpx_codec_enc_config_default(encoder->interface(), &cfg, 0);
215 if (vpx_codec_enc_init(&codec, encoder->interface(), &cfg, 0))
216 die_codec(&codec, "Failed to initialize encoder");
221 if (frame_count == 22 && encoder->fourcc == VP8_FOURCC) {