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

Function hb_container_is_enabled

libhb/common.c:570–583  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

568};
569int hb_containers_count = sizeof(hb_containers) / sizeof(hb_containers[0]);
570static int hb_container_is_enabled(int format)
571{
572 switch (format)
573 {
574 case HB_MUX_AV_MP4:
575 case HB_MUX_AV_MOV:
576 case HB_MUX_AV_MKV:
577 case HB_MUX_AV_WEBM:
578 return 1;
579
580 default:
581 return 0;
582 }
583}
584
585int hb_str_ends_with(const char *base, const char *str)
586{

Callers 1

hb_common_global_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected