Lines Matching defs:width
54 int *depth, int *width, int *height,
80 if (pgx_get_number(avctx, g, width))
96 int width, int height, int sign, int depth) \
102 for (j = 0; j < width; j++) { \
118 int width, height, depth;
123 if ((ret = pgx_decode_header(avctx, &g, &depth, &width, &height, &sign)) < 0)
126 if ((ret = ff_set_dimensions(avctx, width, height)) < 0)
139 if (bytestream2_get_bytes_left(&g) < width * height * (bpp >> 3))
147 write_frame_8(p, &g, width, height, sign, depth);
149 write_frame_16(p, &g, width, height, sign, depth);