26 #define VPX_CODEC_DISABLE_COMPAT 1
27 #include <vpx/vpx_decoder.h>
28 #include <vpx/vp8dx.h>
34 typedef struct VP8DecoderContext {
41 const struct vpx_codec_iface *iface = &vpx_codec_vp8_dx_algo;
42 struct vpx_codec_dec_cfg deccfg = {
50 if (vpx_codec_dec_init(&ctx->
decoder, iface, &deccfg, 0) != VPX_CODEC_OK) {
51 const char *error = vpx_codec_error(&ctx->
decoder);
66 const void *iter =
NULL;
67 struct vpx_image *
img;
71 const char *error = vpx_codec_error(&ctx->
decoder);
72 const char *detail = vpx_codec_error_detail(&ctx->
decoder);
81 if ((img = vpx_codec_get_frame(&ctx->
decoder, &iter))) {
82 if (img->fmt != VPX_IMG_FMT_I420) {
88 if ((
int) img->d_w != avctx->
width || (
int) img->d_h != avctx->
height) {
95 picture->
data[0] = img->planes[0];
96 picture->
data[1] = img->planes[1];
97 picture->
data[2] = img->planes[2];
99 picture->
linesize[0] = img->stride[0];
100 picture->
linesize[1] = img->stride[1];
101 picture->
linesize[2] = img->stride[2];
111 vpx_codec_destroy(&ctx->
decoder);