Showing 1 changed files with 0 additions and 6 deletions
-6
main.c
... ...
@@ -40,10 +40,7 @@
40 40
 #endif //MAX_LISTEN
41 41
 
42 42
 #ifndef RECV_BUFF_SIZE
43
-	//~ #define RECV_BUFF_SIZE 4096
44
-	//~ #define RECV_BUFF_SIZE 8192
45 43
 	#define RECV_BUFF_SIZE 16384
46
-	//~ #define RECV_BUFF_SIZE 32768
47 44
 #endif //RECV_BUFF_SIZE
48 45
 
49 46
 #ifndef SEND_BUFF_SIZE
... ...
@@ -123,7 +120,6 @@ int32_t MsgSend(int sock, uint8_t *msg, int32_t len )
123 120
 {
124 121
 	 int nbSent = write(sock,msg,len);
125 122
 	 DEBUG_PRINT("Sent %d bytes\n", nbSent );
126
-	 //~ DEBUG_PRINT("Sent :\n%.*s\n", len, msg );
127 123
 	 return nbSent;	 
128 124
 }
129 125
 
... ...
@@ -242,8 +238,6 @@ void twolameCreate()
242 238
 	twolame_set_bitrate(encodeOptions, MP3_OUTPUT_bitrate);
243 239
 	twolame_set_mode(encodeOptions, MP3_OUTPUT_mode);
244 240
 	twolame_set_emphasis(encodeOptions,  TWOLAME_EMPHASIS_N );
245
-	//~ twolame_set_emphasis(encodeOptions,  TWOLAME_EMPHASIS_5 );
246
-	//~ twolame_set_emphasis(encodeOptions,  TWOLAME_EMPHASIS_C  );
247 241
 }
248 242
 
249 243
 void mpg123Create()