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/faad.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/faad.c')
-rw-r--r-- | libavcodec/faad.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/faad.c b/libavcodec/faad.c index 413b282140..1a65379aa5 100644 --- a/libavcodec/faad.c +++ b/libavcodec/faad.c @@ -88,10 +88,10 @@ typedef struct { unsigned long buffer_size); char* FAADAPI (*faacDecGetErrorMessage)(unsigned char errcode); #endif - + void FAADAPI (*faacDecClose)(faacDecHandle hDecoder); - - + + } FAACContext; static const unsigned long faac_srates[] = @@ -143,10 +143,10 @@ static int faac_decode_frame(AVCodecContext *avctx, if(buf_size == 0) return 0; #ifndef FAAD2_VERSION - out = s->faacDecDecode(s->faac_handle, - (unsigned char*)buf, - &bytesconsumed, - data, + out = s->faacDecDecode(s->faac_handle, + (unsigned char*)buf, + &bytesconsumed, + data, &samples); samples *= s->sample_size; if (data_size) @@ -154,7 +154,7 @@ static int faac_decode_frame(AVCodecContext *avctx, return (buf_size < (int)bytesconsumed) ? buf_size : (int)bytesconsumed; #else - + out = s->faacDecDecode(s->faac_handle, &frame_info, (unsigned char*)buf, (unsigned long)buf_size); if (frame_info.error > 0) { |