obs-x264: Set sample aspect ratio to 1:1

Matches values seen when encoding with FFmpeg.
This commit is contained in:
jpark37
2021-03-28 15:59:02 -07:00
committed by Jim
parent a52562a98e
commit dd552df15c

View File

@@ -494,6 +494,8 @@ static void update_params(struct obs_x264 *obsx264, obs_data_t *settings,
break;
}
obsx264->params.vui.i_sar_height = 1;
obsx264->params.vui.i_sar_width = 1;
obsx264->params.vui.b_fullrange = info.range == VIDEO_RANGE_FULL;
obsx264->params.vui.i_colorprim =
get_x264_cs_val(colorprim, x264_colorprim_names);