mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	initial commit
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@3 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
		
							parent
							
								
									b1c00dcd0a
								
							
						
					
					
						commit
						9cb0b933e2
					
				
					 47 changed files with 3425 additions and 0 deletions
				
			
		
							
								
								
									
										25
									
								
								src/inputstream.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								src/inputstream.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,25 @@
 | 
			
		|||
#ifndef fooinputstreamhfoo
 | 
			
		||||
#define fooinputstreamhfoo
 | 
			
		||||
 | 
			
		||||
#include <inttypes.h>
 | 
			
		||||
 | 
			
		||||
#include "sink.h"
 | 
			
		||||
#include "sample.h"
 | 
			
		||||
#include "memblockq.h"
 | 
			
		||||
 | 
			
		||||
struct input_stream {
 | 
			
		||||
    char *name;
 | 
			
		||||
    uint32_t index;
 | 
			
		||||
 | 
			
		||||
    struct sink *sink;
 | 
			
		||||
    struct sample_spec spec;
 | 
			
		||||
    
 | 
			
		||||
    struct memblockq *memblockq;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct input_stream* input_stream_new(struct sink *s, struct sample_spec *spec, const char *name);
 | 
			
		||||
void input_stream_free(struct input_stream* i);
 | 
			
		||||
 | 
			
		||||
void input_stream_notify(struct input_stream *i);
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue