MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_container_get_long_name

Function hb_container_get_long_name

libhb/common.c:3671–3687  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3669}
3670
3671const char* hb_container_get_long_name(int format)
3672{
3673 if (!(format & HB_MUX_MASK))
3674 goto fail;
3675
3676 const hb_container_t *container = NULL;
3677 while ((container = hb_container_get_next(container)) != NULL)
3678 {
3679 if (container->format == format)
3680 {
3681 return container->long_name;
3682 }
3683 }
3684
3685fail:
3686 return NULL;
3687}
3688
3689const char* hb_container_get_default_extension(int format)
3690{

Callers 1

hb_display_job_infoFunction · 0.85

Calls 1

hb_container_get_nextFunction · 0.85

Tested by

no test coverage detected