Lines Matching defs:compno

351     int compno;
358 for (compno = 0; compno < numcomps; ++compno) {
359 if (image->comps[compno].w > linesize[0] / numcomps) {
365 for (compno = 0; compno < numcomps; ++compno) {
367 image_line = image->comps[compno].data + y * image->comps[compno].w;
368 frame_index = y * linesize[0] + compno;
373 for (; x < image->comps[compno].w; ++x) {
377 for (; y < image->comps[compno].h; ++y) {
378 image_line = image->comps[compno].data + y * image->comps[compno].w;
379 for (x = 0; x < image->comps[compno].w; ++x) {
380 image_line[x] = image_line[x - (int)image->comps[compno].w];
392 int compno;
399 for (compno = 0; compno < numcomps; ++compno) {
400 if (image->comps[compno].w > linesize[0] / numcomps) {
406 for (compno = 0; compno < numcomps; ++compno) {
408 image_line = image->comps[compno].data + y * image->comps[compno].w;
409 frame_index = y * (linesize[0] / 2) + compno;
414 for (; x < image->comps[compno].w; ++x) {
418 for (; y < image->comps[compno].h; ++y) {
419 image_line = image->comps[compno].data + y * image->comps[compno].w;
420 for (x = 0; x < image->comps[compno].w; ++x) {
421 image_line[x] = image_line[x - (int)image->comps[compno].w];
432 int compno;
440 for (compno = 0; compno < numcomps; ++compno) {
441 if (image->comps[compno].w > linesize[0] / numcomps) {
447 for (compno = 0; compno < numcomps; ++compno) {
449 image_line = image->comps[compno].data + y * image->comps[compno].w;
450 frame_index = y * (linesize[0] / 2) + compno;
455 for (; x < image->comps[compno].w; ++x) {
459 for (; y < image->comps[compno].h; ++y) {
460 image_line = image->comps[compno].data + y * image->comps[compno].w;
461 for (x = 0; x < image->comps[compno].w; ++x) {
462 image_line[x] = image_line[x - (int)image->comps[compno].w];
473 int compno;
482 for (compno = 0; compno < numcomps; ++compno) {
483 if (image->comps[compno].w > linesize[compno]) {
489 for (compno = 0; compno < numcomps; ++compno) {
490 width = (avctx->width + image->comps[compno].dx - 1) / image->comps[compno].dx;
491 height = (avctx->height + image->comps[compno].dy - 1) / image->comps[compno].dy;
493 image_line = image->comps[compno].data + y * image->comps[compno].w;
494 frame_index = y * linesize[compno];
496 image_line[x] = src[compno][frame_index++];
497 for (; x < image->comps[compno].w; ++x) {
501 for (; y < image->comps[compno].h; ++y) {
502 image_line = image->comps[compno].data + y * image->comps[compno].w;
503 for (x = 0; x < image->comps[compno].w; ++x) {
504 image_line[x] = image_line[x - (int)image->comps[compno].w];
515 int compno;
524 for (compno = 0; compno < numcomps; ++compno) {
525 if (image->comps[compno].w > linesize[compno]) {
531 for (compno = 0; compno < numcomps; ++compno) {
532 const uint16_t *frame_ptr = (const uint16_t *)src[compno];
533 width = (avctx->width + image->comps[compno].dx - 1) / image->comps[compno].dx;
534 height = (avctx->height + image->comps[compno].dy - 1) / image->comps[compno].dy;
536 image_line = image->comps[compno].data + y * image->comps[compno].w;
537 frame_index = y * (linesize[compno] / 2);
540 for (; x < image->comps[compno].w; ++x) {
544 for (; y < image->comps[compno].h; ++y) {
545 image_line = image->comps[compno].data + y * image->comps[compno].w;
546 for (x = 0; x < image->comps[compno].w; ++x) {
547 image_line[x] = image_line[x - (int)image->comps[compno].w];