Searched refs:target_num_pixels (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/talk/media/base/ |
D | videoadapter.cc | 91 int target_num_pixels) { in FindScale() argument 93 if (!target_num_pixels) { in FindScale() 107 float diff = target_num_pixels - test_num_pixels; in FindScale() 127 int target_num_pixels) { in FindClosestScale() argument 129 width, height, target_num_pixels); in FindClosestScale() 134 int target_num_pixels) { in FindClosestViewScale() argument 136 width, height, target_num_pixels); in FindClosestViewScale() 143 int target_num_pixels) { in FindLowerScale() argument 145 width, height, target_num_pixels); in FindLowerScale()
|
D | videoadapter.h | 71 float FindClosestScale(int width, int height, int target_num_pixels); 72 float FindClosestViewScale(int width, int height, int target_num_pixels); 73 float FindLowerScale(int width, int height, int target_num_pixels); 79 int target_num_pixels);
|
D | videocommon.cc | 83 static float FindLowerScale(int width, int height, int target_num_pixels) { in FindLowerScale() argument 84 if (!target_num_pixels) { in FindLowerScale() 92 int diff = target_num_pixels - test_num_pixels; in FindLowerScale()
|