Lines Matching defs:chunk
355 /* Copy data from chunk into a frame buffer, deinterlacing the data
357 * 720 pixel lines, as the chunk is 240 words long, which is 480 pixels.
358 * Therefore, we break down the chunk into two halves before copying,
361 * Each "chunk" is 240 words; a word in this context equals 4 bytes.
371 * line 1: chunk[0][ 0..479] chunk[0][480..959] chunk[1][ 0..479]
372 * line 3: chunk[1][480..959] chunk[2][ 0..479] chunk[2][480..959]
391 /* Called for each 256-byte image chunk.
392 * First word identifies the chunk, followed by 240 words of image
394 static void usbtv_image_chunk(struct usbtv *usbtv, __be32 *chunk)
402 if (!USBTV_MAGIC_OK(chunk))
404 frame_id = USBTV_FRAME_ID(chunk);
405 odd = USBTV_ODD(chunk);
406 chunk_no = USBTV_CHUNK_NO(chunk);
430 /* Copy the chunk data. */
431 usbtv_chunk_to_vbuf(frame, &chunk[1], chunk_no, odd);
434 /* Last chunk in a field */
436 /* Last chunk in a frame, signalling an end */