| 3138 | } |
| 3139 | |
| 3140 | const char* hb_video_encoder_get_short_name(int encoder) |
| 3141 | { |
| 3142 | int i; |
| 3143 | for (i = 0; i < hb_video_encoders_count; i++) |
| 3144 | { |
| 3145 | if (hb_video_encoders[i].item.codec == encoder && hb_video_encoders[i].deprecated == 0) |
| 3146 | { |
| 3147 | return hb_video_encoders[i].item.short_name; |
| 3148 | } |
| 3149 | } |
| 3150 | |
| 3151 | return NULL; |
| 3152 | } |
| 3153 | |
| 3154 | const char* hb_video_encoder_get_long_name(int encoder) |
| 3155 | { |
no outgoing calls