| 502 | } |
| 503 | |
| 504 | void avtext_print_ts(AVTextFormatContext *tctx, const char *key, int64_t ts, int is_duration) |
| 505 | { |
| 506 | if ((!is_duration && ts == AV_NOPTS_VALUE) || (is_duration && ts == 0)) |
| 507 | avtext_print_string(tctx, key, "N/A", AV_TEXTFORMAT_PRINT_STRING_OPTIONAL); |
| 508 | else |
| 509 | avtext_print_integer(tctx, key, ts, 0); |
| 510 | } |
| 511 | |
| 512 | static void print_data_xxd(AVBPrint *bp, const uint8_t *data, int size) |
| 513 | { |
nothing calls this directly
no test coverage detected