Lines Matching defs:avctx
35 static int txd_decode_frame(AVCodecContext *avctx, AVFrame *p,
63 avpriv_report_missing_feature(avctx, "Texture data version %u", version);
68 avctx->pix_fmt = AV_PIX_FMT_PAL8;
72 avctx->pix_fmt = AV_PIX_FMT_RGBA;
86 avctx->pix_fmt = AV_PIX_FMT_RGBA;
90 avpriv_report_missing_feature(avctx, "Color depth of %u", depth);
94 if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
97 avctx->coded_width = FFALIGN(w, 4);
98 avctx->coded_height = FFALIGN(h, 4);
100 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
124 for (j = 0; j < avctx->height; j += 4) {
125 for (i = 0; i < avctx->width; i += 4) {
133 for (j = 0; j < avctx->height; j += 4) {
134 for (i = 0; i < avctx->width; i += 4) {
163 avpriv_report_missing_feature(avctx, "d3d format (%08x)", d3d_format);