audio: GUSword is uint16_t
Signed-off-by: Juan Quintela <quintela@redhat.com> Message-id: 20170425223739.6703-18-quintela@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
		
							parent
							
								
									222e0356fa
								
							
						
					
					
						commit
						1c742f2b8e
					
				@ -28,11 +28,9 @@
 | 
				
			|||||||
/* data types (need to be adjusted if neither a VC6 nor a C99 compatible compiler is used) */
 | 
					/* data types (need to be adjusted if neither a VC6 nor a C99 compatible compiler is used) */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if defined _WIN32 && defined _MSC_VER /* doesn't support other win32 compilers yet, do it yourself... */
 | 
					#if defined _WIN32 && defined _MSC_VER /* doesn't support other win32 compilers yet, do it yourself... */
 | 
				
			||||||
 typedef unsigned short GUSword;
 | 
					 | 
				
			||||||
 typedef unsigned int GUSdword;
 | 
					 typedef unsigned int GUSdword;
 | 
				
			||||||
 typedef signed short GUSsample;
 | 
					 typedef signed short GUSsample;
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 typedef uint16_t GUSword;
 | 
					 | 
				
			||||||
 typedef uint32_t GUSdword;
 | 
					 typedef uint32_t GUSdword;
 | 
				
			||||||
 typedef int16_t GUSsample;
 | 
					 typedef int16_t GUSsample;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user