Lines Matching defs:height
50 * @param[in] height Height of this buffer
53 static void decode_rowskip(uint8_t* plane, int width, int height, int stride,
58 for (y = 0; y < height; y++) {
71 * @param[in] height Height of this buffer
75 static void decode_colskip(uint8_t* plane, int width, int height, int stride,
82 for (y = 0; y < height; y++)
85 for (y = 0; y < height; y++)
104 int width, height, stride;
107 height = v->s.mb_height >> v->field_mode;
120 if ((height * width) & 1) {
131 for (; y < height * width; y += 2) {
149 if (!(height % 3) && (width % 3)) { // use 2x3 decoding
150 for (y = 0; y < height; y += 3) {
167 decode_colskip(data, 1, height, stride, &v->s.gb);
169 planep += (height & 1) * stride;
170 for (y = height & 1; y < height; y += 2) {
188 decode_colskip(data, x, height, stride, &v->s.gb);
189 if (height & 1)
194 decode_rowskip(data, width, height, stride, &v->s.gb);
197 decode_colskip(data, width, height, stride, &v->s.gb);
209 for (y = 1; y < height; y++) {
219 for (x = 0; x < stride * height; x++)
456 v->s.avctx->height > v->max_coded_height) {
461 v->s.avctx->height * w,
886 av_assert0( v->s.mb_height == v->s.height + 15 >> 4
887 || v->s.mb_height == FFALIGN(v->s.height + 15 >> 4, 2));
889 v->s.mb_height = FFALIGN(v->s.height + 15 >> 4, 2);
896 v->s.mb_height = v->s.height + 15 >> 4;