summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2009-01-31 01:37:31 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2009-01-31 01:37:31 +0000
commit76bd5997a9463a573190e428f4eb17c21e6e3738 (patch)
treee481ade5c86cc8a0e976f1014b2963016196835c
parent9b8390bfbe748b999b69cce6d601acacdd558c7e (diff)
Cosmetics: fixing the indentation
Originally committed as revision 16876 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/dv.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index d1e845ae1f..6980a882d2 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -1049,19 +1049,19 @@ static int dv_encode_video_segment(AVCodecContext *avctx, DVwork_chunk *work_chu
/* don't ask Fabrice why they inverted Cb and Cr ! */
data = s->picture.data [6 - j] + c_offset;
linesize = s->picture.linesize[6 - j];
- if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
- uint8_t* d;
- uint8_t* b = scratch;
- for (i = 0; i < 8; i++) {
- d = data + 8 * linesize;
- b[0] = data[0]; b[1] = data[1]; b[2] = data[2]; b[3] = data[3];
- b[4] = d[0]; b[5] = d[1]; b[6] = d[2]; b[7] = d[3];
- data += linesize;
- b += 8;
- }
- data = scratch;
- linesize = 8;
- }
+ if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
+ uint8_t* d;
+ uint8_t* b = scratch;
+ for (i = 0; i < 8; i++) {
+ d = data + 8 * linesize;
+ b[0] = data[0]; b[1] = data[1]; b[2] = data[2]; b[3] = data[3];
+ b[4] = d[0]; b[5] = d[1]; b[6] = d[2]; b[7] = d[3];
+ data += linesize;
+ b += 8;
+ }
+ data = scratch;
+ linesize = 8;
+ }
}
}