Commit 42d22099 authored by stefano's avatar stefano

Reindent after the last patch.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18292 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a5ef7d67
...@@ -118,17 +118,17 @@ static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int li ...@@ -118,17 +118,17 @@ static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int li
*dst++= val; *dst++= val;
} }
} else { } 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--){ while(w--){
int val; int val;
if(flags & PIX_FMT_BE) val= AV_RB16(p); if(flags & PIX_FMT_BE) val= AV_RB16(p);
else val= AV_RL16(p); else val= AV_RL16(p);
val = (val>>shift) & mask; val = (val>>shift) & mask;
if(flags & PIX_FMT_PAL) if(flags & PIX_FMT_PAL)
val= data[1][4*val + c]; val= data[1][4*val + c];
p+= step; p+= step;
*dst++= val; *dst++= val;
} }
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment