Lines Matching defs:cursor_h
161 int cursor_w, cursor_h, cursor_x, cursor_y;
1210 uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
1216 cursor_h = bytestream2_get_byte(gb);
1224 cursor_h < 1 || cursor_h > 256) {
1226 cursor_w, cursor_h);
1229 if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
1233 cursor_hot_y = FFMIN(cursor_hot_y, cursor_h - 1);
1236 c->cursor_w * c->cursor_h / 4 > cur_size) {
1247 if ((err = av_reallocp(&c->cursor, cursor_stride * cursor_h)) < 0) {
1253 c->cursor_h = cursor_h;
1262 for (j = 0; j < c->cursor_h; j++) {
1274 for (j = 0; j < c->cursor_h; j++) {
1306 bytestream2_skip(gb, c->cursor_h * (FFALIGN(c->cursor_w, 32) >> 3));
1307 for (j = 0; j < c->cursor_h; j++) {
1340 h = c->cursor_h;