From 42d22099ae136c9d811ecadfef95c90eeff5354a Mon Sep 17 00:00:00 2001 From: stefano Date: Tue, 31 Mar 2009 22:53:48 +0000 Subject: [PATCH] Reindent after the last patch. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18292 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/pixdesc.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavcodec/pixdesc.h b/libavcodec/pixdesc.h index 6ff07fb34..bc0c5559c 100644 --- a/libavcodec/pixdesc.h +++ b/libavcodec/pixdesc.h @@ -118,17 +118,17 @@ static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int li *dst++= val; } } else { - const uint8_t *p = data[plane]+ y*linesize[plane] + x*step + comp.offset_plus1-1; + const uint8_t *p = data[plane]+ y*linesize[plane] + x*step + comp.offset_plus1-1; - while(w--){ - int val; - if(flags & PIX_FMT_BE) val= AV_RB16(p); - else val= AV_RL16(p); - val = (val>>shift) & mask; - if(flags & PIX_FMT_PAL) - val= data[1][4*val + c]; + while(w--){ + int val; + if(flags & PIX_FMT_BE) val= AV_RB16(p); + else val= AV_RL16(p); + val = (val>>shift) & mask; + if(flags & PIX_FMT_PAL) + val= data[1][4*val + c]; p+= step; - *dst++= val; - } + *dst++= val; + } } } -- 2.39.2