Commit dccabd4c authored by Ramiro Polla's avatar Ramiro Polla

Fix r8963

Originally committed as revision 8979 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7a0daaf1
......@@ -177,8 +177,8 @@ static inline void encode_from16(int bps, int le, int us,
for(;n>0;n--) {
register int v = *(*samples)++;
v += usum;
if (le) AV_WL16(*dst, v);
else AV_WB16(*dst, v);
if (le) {AV_WL16(*dst, v);}
else {AV_WB16(*dst, v);}
*dst += bps;
}
if (le) *dst -= bps - 2;
......
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