libobs: Fix height return value condition

This should fix "Output fails" when Rescale Output height set to 0.
This commit is contained in:
SuslikV 2017-11-27 15:27:14 +02:00 committed by GitHub
parent d51e2a019b
commit d4676e27dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -611,7 +611,7 @@ uint32_t obs_encoder_get_height(const obs_encoder_t *encoder)
if (!encoder->media)
return 0;
return encoder->scaled_width != 0 ?
return encoder->scaled_height != 0 ?
encoder->scaled_height :
video_output_get_height(encoder->media);
}