| 2990 | } |
| 2991 | |
| 2992 | static void print_fps(double d, const char *postfix){ |
| 2993 | uint64_t v= lrintf(d*100); |
| 2994 | if (v% 100 ) av_log(NULL, AV_LOG_INFO, ", %3.2f %s", d, postfix); |
| 2995 | else if(v%(100*1000)) av_log(NULL, AV_LOG_INFO, ", %1.0f %s", d, postfix); |
| 2996 | else av_log(NULL, AV_LOG_INFO, ", %1.0fk %s", d/1000, postfix); |
| 2997 | } |
| 2998 | |
| 2999 | static void dump_metadata(void *ctx, AVMetadata *m, const char *indent) |
| 3000 | { |
no test coverage detected