Commit d3778f0f authored by reimar's avatar reimar

Fix indentation.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22721 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ca971c2f
...@@ -226,7 +226,7 @@ static int dv_init_dynamic_tables(const DVprofile *d) ...@@ -226,7 +226,7 @@ static int dv_init_dynamic_tables(const DVprofile *d)
} else { } else {
iweight1 = &dv_iweight_1080_y[0]; iweight1 = &dv_iweight_1080_y[0];
iweight2 = &dv_iweight_1080_c[0]; iweight2 = &dv_iweight_1080_c[0];
} }
if (DV_PROFILE_IS_HD(d)) { if (DV_PROFILE_IS_HD(d)) {
for (c = 0; c < 4; c++) { for (c = 0; c < 4; c++) {
for (s = 0; s < 16; s++) { for (s = 0; s < 16; s++) {
...@@ -244,12 +244,12 @@ static int dv_init_dynamic_tables(const DVprofile *d) ...@@ -244,12 +244,12 @@ static int dv_init_dynamic_tables(const DVprofile *d)
for (; i < dv_quant_areas[c]; i++) { for (; i < dv_quant_areas[c]; i++) {
*factor1 = iweight1[i] << (dv_quant_shifts[s][c] + 1); *factor1 = iweight1[i] << (dv_quant_shifts[s][c] + 1);
*factor2++ = (*factor1++) << 1; *factor2++ = (*factor1++) << 1;
} }
} }
}
} }
} }
} }
}
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment