summaryrefslogtreecommitdiffstats
path: root/tremor/synthesis.c
diff options
context:
space:
mode:
authorbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-13 15:22:13 +0000
committerbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-13 15:22:13 +0000
commit6e695dc64f0310745a32e2399a955fbf1368cd1a (patch)
treeb2b839f1541449a8a441ae918473ac64c0ae5293 /tremor/synthesis.c
parent6e9cbdc10448203e7c8b2de41447442fcc9f7bae (diff)
downloadmpv-6e695dc64f0310745a32e2399a955fbf1368cd1a.tar.bz2
mpv-6e695dc64f0310745a32e2399a955fbf1368cd1a.tar.xz
Remove all kind of trailing whitespaces from all MPlayer's files.
This affects all kind of spaces (' ',^I,^M,^L,...): actually [:space:] regex character set. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29306 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'tremor/synthesis.c')
-rw-r--r--tremor/synthesis.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tremor/synthesis.c b/tremor/synthesis.c
index 6b33cfbde1..499111e363 100644
--- a/tremor/synthesis.c
+++ b/tremor/synthesis.c
@@ -32,7 +32,7 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
oggpack_buffer *opb=&vb->opb;
int type,mode,i;
-
+
/* first things first. Make sure decode is ready */
_vorbis_block_ripcord(vb);
oggpack_readinit(opb,op->packet,op->bytes);
@@ -46,7 +46,7 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
/* read our mode and pre/post windowsize */
mode=oggpack_read(opb,b->modebits);
if(mode==-1)return(OV_EBADPACKET);
-
+
vb->mode=mode;
vb->W=ci->mode_param[mode]->blockflag;
if(vb->W){
@@ -57,7 +57,7 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
vb->lW=0;
vb->nW=0;
}
-
+
/* more setup */
vb->granulepos=op->granulepos;
vb->sequence=op->packetno-3; /* first block is third packet */
@@ -79,7 +79,7 @@ long vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op){
codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
oggpack_buffer opb;
int mode;
-
+
oggpack_readinit(&opb,op->packet,op->bytes);
/* Check the packet type */