| 249 | } |
| 250 | |
| 251 | int main(void) |
| 252 | { |
| 253 | printf("Testing av_parse_video_rate()\n"); |
| 254 | test_av_parse_video_rate(); |
| 255 | |
| 256 | printf("\nTesting av_parse_color()\n"); |
| 257 | test_av_parse_color(); |
| 258 | |
| 259 | printf("\nTesting av_small_strptime()\n"); |
| 260 | test_av_small_strptime(); |
| 261 | |
| 262 | printf("\nTesting av_parse_time()\n"); |
| 263 | test_av_parse_time(); |
| 264 | |
| 265 | printf("\nTesting av_get_known_color_name()\n"); |
| 266 | test_av_get_known_color_name(); |
| 267 | |
| 268 | printf("\nTesting av_find_info_tag()\n"); |
| 269 | test_av_find_info_tag(); |
| 270 | return 0; |
| 271 | } |
nothing calls this directly
no test coverage detected