Lines Matching defs:width
43 const int width = avctx->width;
46 int stride = avctx->width * 8 / 3;
48 if (width <= 1 || avctx->height <= 0) {
49 av_log(avctx, AV_LOG_ERROR, "Dimensions %dx%d not supported.\n", width, avctx->height);
55 && avpkt->size / avctx->height * 3 >= width * 8)
80 for (x = 0; x < width; x += 6) {
83 if (width - x < 6 || line_end - src < 16) {
125 if (width - x < 6)
129 if (x < width) {
133 memcpy(y, y_temp, sizeof(*y) * (width - x));
134 memcpy(u, u_temp, sizeof(*u) * ((width - x + 1) / 2));
135 memcpy(v, v_temp, sizeof(*v) * ((width - x + 1) / 2));