Searched refs:mb_distance (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dratecontrol.c556 int mb_distance; local
580 mb_distance = mb_width/5 - mb_x;
581 mb_factor = (float)mb_distance / (float)(mb_width/5);
583 mb_distance = mb_x - 4*mb_width/5;
584 mb_factor = (float)mb_distance / (float)(mb_width/5);
587 mb_distance = mb_height/5 - mb_y;
588 mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
590 mb_distance = mb_y - 4*mb_height/5;
591 mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dratecontrol.c641 int mb_distance; local
663 mb_distance = mb_width / 5 - mb_x;
664 mb_factor = (float)mb_distance / (float)(mb_width / 5);
666 mb_distance = mb_x - 4 * mb_width / 5;
667 mb_factor = (float)mb_distance / (float)(mb_width / 5);
670 mb_distance = mb_height / 5 - mb_y;
672 (float)mb_distance / (float)(mb_height / 5));
674 mb_distance = mb_y - 4 * mb_height / 5;
676 (float)mb_distance / (float)(mb_height / 5));

Completed in 55 milliseconds