Lines Matching defs:height
37 int width, height;
95 height = bytestream_get_le32(&buf);
99 height = bytestream_get_le16(&buf);
135 ret = ff_set_dimensions(avctx, width, height > 0 ? height : -(unsigned)height);
137 av_log(avctx, AV_LOG_ERROR, "Failed to set dimensions %d %d\n", width, height);
221 if (n * avctx->height > dsize && comp != BMP_RLE4 && comp != BMP_RLE8) {
223 if (n * avctx->height > dsize) {
225 dsize, n * avctx->height);
233 memset(p->data[0], 0, avctx->height * p->linesize[0]);
235 if (height > 0) {
236 ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
278 if (comp == BMP_RLE8 && height < 0) {
279 p->data[0] += p->linesize[0] * (avctx->height - 1);
284 if (height < 0) {
285 p->data[0] += p->linesize[0] * (avctx->height - 1);
291 for (i = 0; i < avctx->height; i++) {
313 for (i = 0; i < avctx->height; i++) {
320 for (i = 0; i < avctx->height; i++) {
331 for (i = 0; i < avctx->height; i++) {
348 for (i = 0; i < avctx->height; i++) {
358 if (i == avctx->height)