Lines Matching refs:stripe_fill
7433 unsigned int stripe_fill;
7646 stripe_fill = 0;
7665 DBG (5, "reader_process: stripe filled: %d\n", stripe_fill);
7669 processed_bytes < total_size && stripe_fill < stripe_size &&
7672 size_t this_read = stripe_size - stripe_fill;
7697 status = read_data (s, stripe_data + stripe_fill, &this_read);
7724 fwrite (stripe_data + stripe_fill, this_read, 1, raw_fp);
7737 stripe_fill += (unsigned int) this_read;
7744 size_t this_read = stripe_size - stripe_fill;
7758 got = fread (stripe_data + stripe_fill, 1, this_read, rear_fp);
7759 stripe_fill += (unsigned int) got;
7765 DBG (5, "reader_process: stripe filled: %d\n", stripe_fill);
7767 useful_bytes = stripe_fill;
7780 unsigned int absline = (unsigned int) ((processed_bytes - stripe_fill) / (size_t) s->avdimen.hw_bytes_per_line);
7795 (size_t) (stripe_data + stripe_fill - ptr - s->avdimen.hw_bytes_per_line));
7799 stripe_fill -= (unsigned int) s->avdimen.hw_bytes_per_line;
7804 DBG (9, "reader_process: after deinterlacing: useful_bytes: %d, stripe_fill: %d\n",
7805 useful_bytes, stripe_fill);
7809 unsigned int absline = (unsigned int) ((processed_bytes - stripe_fill) / (size_t) s->avdimen.hw_bytes_per_line);
7816 stripe_fill -= (unsigned int) s->avdimen.hw_bytes_per_line;
7819 DBG (9, "reader_process: after page flip: useful_bytes: %d, stripe_fill: %d\n",
7820 useful_bytes, stripe_fill);
8155 stripe_fill -= useful_bytes;
8156 if (stripe_fill > 0)
8157 memcpy (stripe_data, stripe_data + useful_bytes, stripe_fill);