Lines Matching refs:p2
133 int p1, p2, line=avctx->height - 1, pos=0, i;
144 p2 = bytestream2_get_byte(gb);
145 if(p2 == 0) { //End-of-line
160 } else if(p2 == 1) { //End-of-picture
162 } else if(p2 == 2) { //Skip
164 p2 = bytestream2_get_byte(gb);
165 line -= p2;
176 if (output + p2 * (depth >> 3) > output_end) {
179 } else if (bytestream2_get_bytes_left(gb) < p2 * (depth >> 3)) {
185 bytestream2_get_bufferu(gb, output, p2 * (depth >> 3));
186 output += p2 * (depth >> 3);
189 if(depth == 8 && (p2 & 1)) {
193 for(i = 0; i < p2; i++) {
198 for(i = 0; i < p2; i++) {
203 pos += p2;