OSDN Git Service

Revert r8979 (Ugly fix for r8963)
authorRamiro Polla <ramiro.polla@gmail.com>
Thu, 10 May 2007 18:44:58 +0000 (18:44 +0000)
committerRamiro Polla <ramiro.polla@gmail.com>
Thu, 10 May 2007 18:44:58 +0000 (18:44 +0000)
Originally committed as revision 8983 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/pcm.c

index c1eee1b..2551d12 100644 (file)
@@ -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;