Lines Matching defs:resolution
55 cJSON *resolution = NULL;
84 resolution = cJSON_CreateObject();
85 if (resolution == NULL)
89 cJSON_AddItemToArray(resolutions, resolution);
96 cJSON_AddItemToObject(resolution, "width", width);
103 cJSON_AddItemToObject(resolution, "height", height);
143 cJSON *resolution = cJSON_CreateObject();
145 if (cJSON_AddNumberToObject(resolution, "width", resolution_numbers[index][0]) == NULL)
150 if(cJSON_AddNumberToObject(resolution, "height", resolution_numbers[index][1]) == NULL)
155 cJSON_AddItemToArray(resolutions, resolution);
171 const cJSON *resolution = NULL;
194 cJSON_ArrayForEach(resolution, resolutions)
196 cJSON *width = cJSON_GetObjectItemCaseSensitive(resolution, "width");
197 cJSON *height = cJSON_GetObjectItemCaseSensitive(resolution, "height");