Lines Matching refs:line
40 int line = avctx->height - 1;
43 while (line >= 0 && pixel_ptr <= avctx->width) {
47 avctx->width - pixel_ptr, line);
55 /* line is done, goto the next one */
56 line--;
66 line -= stream_byte;
83 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte >> 4;
89 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte & 0x0F;
109 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte >> 4;
111 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte & 0x0F;
133 int p1, p2, line=avctx->height - 1, pos=0, i;
145 if(p2 == 0) { //End-of-line
146 if (--line < 0) {
151 "Next line is beyond picture bounds (%d bytes left)\n",
156 output = pic->data[0] + line * pic->linesize[0];
165 line -= p2;
167 if (line < 0 || pos >= width){
171 output = pic->data[0] + line * pic->linesize[0] + pos * (depth >> 3);
172 output_end = pic->data[0] + line * pic->linesize[0] + FFABS(pic->linesize[0]);