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

Function hb_container_get_short_name

libhb/common.c:3653–3669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3651}
3652
3653const char* hb_container_get_short_name(int format)
3654{
3655 if (!(format & HB_MUX_MASK))
3656 goto fail;
3657
3658 const hb_container_t *container = NULL;
3659 while ((container = hb_container_get_next(container)) != NULL)
3660 {
3661 if (container->format == format)
3662 {
3663 return container->short_name;
3664 }
3665 }
3666
3667fail:
3668 return NULL;
3669}
3670
3671const char* hb_container_get_long_name(int format)
3672{

Callers 2

preset_cleanFunction · 0.85
validate_audio_codec_muxFunction · 0.85

Calls 1

hb_container_get_nextFunction · 0.85

Tested by

no test coverage detected