case HB_VCODEC_X265_16BIT:
return hb_h265_profile_names_16bit;
+#ifdef USE_VCE
case HB_VCODEC_FFMPEG_VCE_H264:
- return hb_h264_profile_names_8bit;
+ return hb_h264_profile_names;
case HB_VCODEC_FFMPEG_VCE_H265:
- return hb_h265_profile_names_8bit;
-
+ return hb_h265_profile_names;
+#endif
+
case HB_VCODEC_FFMPEG_NVENC_H264:
case HB_VCODEC_FFMPEG_NVENC_H265:
return hb_av_profile_get_names(encoder);
int hb_vce_h264_available();
int hb_vce_h265_available();
+
+static const char * const hb_h264_profile_names[] = { "baseline", "main", "high", NULL, };
+static const char * const hb_h265_profile_names[] = { "main", NULL, };
\ No newline at end of file