Lines Matching refs:decoder
12 /* This is a simple program showing how to initialize the decoder in XMA mode */
83 vpx_codec_ctx_t decoder;
154 * size the decoder can decode.
159 /* Initialize the decoder in XMA mode. */
160 if (vpx_codec_dec_init(&decoder, iface, &cfg, VPX_CODEC_USE_XMA))
162 printf("Failed to initialize decoder in XMA mode: %s\n", vpx_codec_error(&decoder));
176 res = vpx_codec_get_mem_map(&decoder, &mmap, &iter);
195 if (vpx_codec_set_mem_map(&decoder, &mmap, 1))
197 printf("Failed to set mmap: %s\n", vpx_codec_error(&decoder));
203 printf("Failed to get mmap: %s\n", vpx_codec_error(&decoder));
210 decoder.name, alloc_sz, cfg.w, cfg.h);
211 vpx_codec_destroy(&decoder);