MCPcopy Create free account
hub / github.com/byhook/ffmpeg4android / print_codecs_for_id

Function print_codecs_for_id

ffmpeg-single-cmd/src/main/cpp/cmdutils.c:1483–1493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1481}
1482
1483static void print_codecs_for_id(enum AVCodecID id, int encoder)
1484{
1485 const AVCodec *codec = NULL;
1486
1487 printf(" (%s: ", encoder ? "encoders" : "decoders");
1488
1489 while ((codec = next_codec_for_id(id, codec, encoder)))
1490 printf("%s ", codec->name);
1491
1492 printf(")");
1493}
1494
1495int show_codecs(void *optctx, const char *opt, const char *arg)
1496{

Callers 1

show_codecsFunction · 0.85

Calls 1

next_codec_for_idFunction · 0.85

Tested by

no test coverage detected