| 3152 | } |
| 3153 | |
| 3154 | const char* hb_video_encoder_get_long_name(int encoder) |
| 3155 | { |
| 3156 | int i; |
| 3157 | for (i = 0; i < hb_video_encoders_count; i++) |
| 3158 | { |
| 3159 | if (hb_video_encoders[i].item.codec == encoder && hb_video_encoders[i].deprecated == 0) |
| 3160 | { |
| 3161 | return hb_video_encoders[i].item.long_name; |
| 3162 | } |
| 3163 | } |
| 3164 | |
| 3165 | return NULL; |
| 3166 | } |
| 3167 | |
| 3168 | const char* hb_video_encoder_sanitize_name(const char *name) |
| 3169 | { |
no outgoing calls
no test coverage detected