diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-06-22 20:57:37 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-06-22 20:57:37 +0000 |
commit | 2b6a950361d8d0346216fc75f012ad97a19f7856 (patch) | |
tree | a85ef164affa24e3abcef45fb03bd926cb04c656 /libavcodec/h264pred.c | |
parent | 157cb0694a3b21db8af7db80462c8091c0bb32b0 (diff) | |
download | ffmpeg-2b6a950361d8d0346216fc75f012ad97a19f7856.tar.gz |
Reindent after r23721.
Originally committed as revision 23722 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 52cf14c22e..6e471949c7 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -110,9 +110,9 @@ static void pred4x4_vertical_vp8_c(uint8_t *src, const uint8_t *topright, int st LOAD_TOP_EDGE LOAD_TOP_RIGHT_EDGE uint32_t v = PACK4UINT8((lt + 2*t0 + t1 + 2) >> 2, - (t0 + 2*t1 + t2 + 2) >> 2, - (t1 + 2*t2 + t3 + 2) >> 2, - (t2 + 2*t3 + t4 + 2) >> 2); + (t0 + 2*t1 + t2 + 2) >> 2, + (t1 + 2*t2 + t3 + 2) >> 2, + (t2 + 2*t3 + t4 + 2) >> 2); AV_WN32A(src+0*stride, v); AV_WN32A(src+1*stride, v); |