| 3669 | } |
| 3670 | |
| 3671 | const 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 | |
| 3685 | fail: |
| 3686 | return NULL; |
| 3687 | } |
| 3688 | |
| 3689 | const char* hb_container_get_default_extension(int format) |
| 3690 | { |
no test coverage detected