mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-25 17:02:22 -04:00
obs-ffmpeg: Fix compilation when ENABLE_HEVC is not set
When ENABLE_HEVC is not set the 'bool hevc' function parameter is not being used in this function causing a warning and aborting compilation.
This commit is contained in:
committed by
Ryan Foster
parent
e55171f28c
commit
eb80be5bf9
@@ -287,6 +287,8 @@ static bool vaapi_update(void *data, obs_data_t *settings, bool hevc)
|
||||
|
||||
hevc_vaapi_video_info(enc, &info);
|
||||
} else
|
||||
#else
|
||||
UNUSED_PARAMETER(hevc);
|
||||
#endif
|
||||
{
|
||||
h264_vaapi_video_info(enc, &info);
|
||||
@@ -564,6 +566,8 @@ static bool vaapi_encode_internal(void *data, struct encoder_frame *frame,
|
||||
&enc->header_size, &enc->sei,
|
||||
&enc->sei_size);
|
||||
} else
|
||||
#else
|
||||
UNUSED_PARAMETER(hevc);
|
||||
#endif
|
||||
{
|
||||
obs_extract_avc_headers(
|
||||
@@ -649,6 +653,8 @@ static void vaapi_defaults_internal(obs_data_t *settings, bool hevc)
|
||||
FF_PROFILE_HEVC_MAIN);
|
||||
|
||||
} else
|
||||
#else
|
||||
UNUSED_PARAMETER(hevc);
|
||||
#endif
|
||||
{
|
||||
obs_data_set_default_int(settings, "profile",
|
||||
|
||||
Reference in New Issue
Block a user