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

Function hb_video_encoder_get_short_name

libhb/common.c:3140–3152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3138}
3139
3140const 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
3154const char* hb_video_encoder_get_long_name(int encoder)
3155{

Callers 3

preset_cleanFunction · 0.85
ParseOptionsFunction · 0.85
ghb_validate_videoFunction · 0.85

Calls

no outgoing calls

Tested by 1

ParseOptionsFunction · 0.68