summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-14 17:18:41 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-14 21:58:02 +0100
commit705a2f70ee148fac26ce642b46850f30f32d3d90 (patch)
treedab855b245ff5f6468c89944dd009b477e10b2e2
parent8feeffc1d7ca1c7708e7788e44bdeb25ce3de5a5 (diff)
downloadffmpeg-streaming-705a2f70ee148fac26ce642b46850f30f32d3d90.zip
ffmpeg-streaming-705a2f70ee148fac26ce642b46850f30f32d3d90.tar.gz
swscale/slice: Fix indention
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libswscale/slice.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libswscale/slice.c b/libswscale/slice.c
index 2299eac..66fe413 100644
--- a/libswscale/slice.c
+++ b/libswscale/slice.c
@@ -149,9 +149,9 @@ int ff_init_slice_from_src(SwsSlice * s, uint8_t *src[4], int stride[4], int src
int i = 0;
const int start[4] = {lumY,
- chrY,
- chrY,
- lumY};
+ chrY,
+ chrY,
+ lumY};
const int end[4] = {lumY +lumH,
chrY + chrH,
@@ -159,9 +159,9 @@ int ff_init_slice_from_src(SwsSlice * s, uint8_t *src[4], int stride[4], int src
lumY + lumH};
const uint8_t *src_[4] = {src[0] + (relative ? 0 : start[0]) * stride[0],
- src[1] + (relative ? 0 : start[1]) * stride[0],
- src[2] + (relative ? 0 : start[2]) * stride[0],
- src[3] + (relative ? 0 : start[3]) * stride[0]};
+ src[1] + (relative ? 0 : start[1]) * stride[0],
+ src[2] + (relative ? 0 : start[2]) * stride[0],
+ src[3] + (relative ? 0 : start[3]) * stride[0]};
s->width = srcW;
OpenPOWER on IntegriCloud