提交 dccabd4c 编写于 作者: R Ramiro Polla

Fix r8963

Originally committed as revision 8979 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册