Lines Matching defs:decoder
12 // Simple Decoder
15 // This is an example of a simple decoder loop. It takes an input file
17 // decoder, and writes the decompressed frames to disk. Other decoder
38 // The decoder is initialized by the following code. This is an example for
39 // the VP8 decoder, but the code is analogous for all algorithms. Replace
105 const VpxInterface *decoder = NULL;
122 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
123 if (!decoder)
126 printf("Using %s\n", vpx_codec_iface_name(decoder->interface()));
128 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0))
129 die_codec(&codec, "Failed to initialize decoder.");