Lines Matching defs:linesize
64 int width, height, components, format, compression, pix_fmt, linesize, data_size;
110 linesize = avctx->width * 3;
113 linesize = avctx->width * 4;
128 linesize = avctx->coded_width / 2;
132 linesize = avctx->coded_width;
143 if (image_len < linesize * avctx->coded_height) {
157 uint8_t *flipped = frame->data[0] + frame->linesize[0] * (frame->height - 1);
158 av_image_copy_plane(flipped, -frame->linesize[0], image_buf ? image_buf : gb->buffer, linesize, linesize, frame->height);
163 ctx->dec.frame_data.out = frame->data[0] + frame->linesize[0] * (frame->height - 1);
164 ctx->dec.stride = -frame->linesize[0];