vp8/encoder/onyx_if.c: apply clang-format

after:
955b3b6 vp8: Allow for cyclic refresh even if error_resilience it off.

Change-Id: Iba189b18c84be8f5140754280c6801cfc387cfcd
This commit is contained in:
clang-format 2016-10-04 21:12:06 -07:00 committed by James Zern
parent 955b3b66bd
commit 891a87dccd

View File

@ -1769,8 +1769,10 @@ struct VP8_COMP *vp8_create_compressor(VP8_CONFIG *oxcf) {
* Currently there is no external control for this.
* Enable it for error_resilient_mode, or for 1 pass CBR mode.
*/
cpi->cyclic_refresh_mode_enabled = (cpi->oxcf.error_resilient_mode ||
(cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER && cpi->oxcf.Mode <= 2));
cpi->cyclic_refresh_mode_enabled =
(cpi->oxcf.error_resilient_mode ||
(cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER &&
cpi->oxcf.Mode <= 2));
cpi->cyclic_refresh_mode_max_mbs_perframe =
(cpi->common.mb_rows * cpi->common.mb_cols) / 7;
if (cpi->oxcf.number_of_layers == 1) {