MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / avtext_print_rational

Function avtext_print_rational

fftools/textformat/avtextformat.c:481–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479}
480
481void 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
488void avtext_print_time(AVTextFormatContext *tctx, const char *key,
489 int64_t ts, const AVRational *time_base, int is_duration)

Callers

nothing calls this directly

Calls 1

avtext_print_stringFunction · 0.85

Tested by

no test coverage detected