From: Stefano Sabatini Date: Tue, 31 Mar 2009 22:53:48 +0000 (+0000) Subject: Reindent after the last patch. X-Git-Tag: v0.6~4978 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=59b053508f5114b31f05cfdc22e72eb7611fd824;p=coroid%2Flibav_saccubus.git Reindent after the last patch. Originally committed as revision 18292 to svn://svn.ffmpeg.org/ffmpeg/trunk --- 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; + } } }