Commit ffcb968b authored by ramiro's avatar ramiro

Revert r8979 (Ugly fix for r8963)

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8983 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f29d14ca
......@@ -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