From b3a257af27f22295ba201fa3518c9a8708d6ac0b Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 10 May 2007 18:44:58 +0000 Subject: Revert r8979 (Ugly fix for r8963) Originally committed as revision 8983 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/pcm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/pcm.c') diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index c1eee1bf36..2551d12b65 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -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; -- cgit v1.2.3