diff libmpdemux/aac_hdr.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents fa91545f01bb
children cbbbe3d58f4c
line wrap: on
line diff
--- a/libmpdemux/aac_hdr.c	Tue May 12 19:25:35 2009 +0000
+++ b/libmpdemux/aac_hdr.c	Wed May 13 02:58:57 2009 +0000
@@ -31,10 +31,10 @@
 {
 	int i = 0, sr, fl = 0, id;
 	static int srates[] = {96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 0, 0, 0};
-	
+
 	if((buf[i] != 0xFF) || ((buf[i+1] & 0xF6) != 0xF0))
 		return 0;
-	
+
 	id = (buf[i+1] >> 3) & 0x01;	//id=1 mpeg2, 0: mpeg4
 	sr = (buf[i+2] >> 2)  & 0x0F;
 	if(sr > 11)