diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
commit | 115329f16062074e11ccf3b89ead6176606c9696 (patch) | |
tree | e98aa993905a702688bf821737ab9a443969fc28 /libavcodec/ra144.c | |
parent | d76319b1ab716320f6e6a4d690b85fe4504ebd5b (diff) | |
download | ffmpeg-115329f16062074e11ccf3b89ead6176606c9696.tar.gz |
COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 79cce2cef6..6f94841352 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -107,10 +107,10 @@ static void do_voice(int *a1, int *a2) int *b1,*b2; int x,y; int *ptr,*tmp; - + b1=buffer; b2=a2; - + for (x=0;x<10;x++) { b1[x]=(*a1)<<4; @@ -123,7 +123,7 @@ static void do_voice(int *a1, int *a2) b1=b2; b2=tmp; a1++; - } + } ptr=a2+10; while (ptr>a2) (*a2++)>>=4; } @@ -190,7 +190,7 @@ static void add_wav(Real144_internal *glob, int n, int f, int m1, int m2, int m3 ptr=glob->wavtable1+n*9; ptr2=glob->wavtable2+n*9; if (f!=0) { - a=((*ptr)*m1)>>((*ptr2)+1); + a=((*ptr)*m1)>>((*ptr2)+1); } else { a=0; } @@ -299,7 +299,7 @@ static void unpack_input(unsigned char *input, unsigned int *output) *(output++)=ptr[x]; *(output++)=ptr[x+2]; *(output++)=ptr[x+3]; - *(output++)=ptr[x+1]; + *(output++)=ptr[x+1]; } } @@ -438,10 +438,10 @@ static int ra144_decode_frame(AVCodecContext * avctx, if(buf_size==0) return 0; - + datao = data; unpack_input(buf,glob->unpacked); - + glob->iptr=glob->unpacked; glob->val=decodetable[0][(*(glob->iptr++))<<1]; |