summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2010-03-29 20:58:19 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2010-03-29 20:58:19 +0000
commit5b9c11ff96d3a98f2aaee4a81524b67bcccd2242 (patch)
treecbdc105583afd251704493e0b67e044babd0c136 /libavcodec/dv.c
parentc2bfd81605f348c65290106b66a75e5d48fddb1f (diff)
Fix indentation.
Originally committed as revision 22721 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index 6711274704..e3b1064a95 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -226,7 +226,7 @@ static int dv_init_dynamic_tables(const DVprofile *d)
} else {
iweight1 = &dv_iweight_1080_y[0];
iweight2 = &dv_iweight_1080_c[0];
- }
+ }
if (DV_PROFILE_IS_HD(d)) {
for (c = 0; c < 4; c++) {
for (s = 0; s < 16; s++) {
@@ -244,12 +244,12 @@ static int dv_init_dynamic_tables(const DVprofile *d)
for (; i < dv_quant_areas[c]; i++) {
*factor1 = iweight1[i] << (dv_quant_shifts[s][c] + 1);
*factor2++ = (*factor1++) << 1;
- }
- }
+ }
+ }
+ }
}
}
}
-}
return 0;
}