| 479 | } |
| 480 | |
| 481 | void avtext_print_rational(AVTextFormatContext *tctx, const char *key, AVRational q, char sep) |
| 482 | { |
| 483 | char buf[44]; |
| 484 | snprintf(buf, sizeof(buf), "%d%c%d", q.num, sep, q.den); |
| 485 | avtext_print_string(tctx, key, buf, 0); |
| 486 | } |
| 487 | |
| 488 | void avtext_print_time(AVTextFormatContext *tctx, const char *key, |
| 489 | int64_t ts, const AVRational *time_base, int is_duration) |
nothing calls this directly
no test coverage detected