| 1197 | } |
| 1198 | |
| 1199 | static inline int is_close(float a, float b, float metric) |
| 1200 | { |
| 1201 | float diff = a - b; |
| 1202 | diff = (diff > 0) ? diff : -diff; |
| 1203 | return diff < metric; |
| 1204 | } |
| 1205 | |
| 1206 | char * ghb_format_quality( const char *prefix, int codec, double quality ) |
| 1207 | { |
no outgoing calls
no test coverage detected