| 568 | }; |
| 569 | int hb_containers_count = sizeof(hb_containers) / sizeof(hb_containers[0]); |
| 570 | static 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 | |
| 585 | int hb_str_ends_with(const char *base, const char *str) |
| 586 | { |
no outgoing calls
no test coverage detected