mirror of
				https://github.com/rofafor/vdr-plugin-femon.git
				synced 2023-10-10 11:36:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			474 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			474 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * aac.h: Frontend Status Monitor plugin for the Video Disk Recorder
 | |
|  *
 | |
|  * See the README file for copyright information and how to reach the author.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef __FEMON_AAC_H
 | |
| #define __FEMON_AAC_H
 | |
| 
 | |
| #include "audio.h"
 | |
| 
 | |
| class cFemonAAC {
 | |
| private:
 | |
|   cFemonAudioIf *audioHandlerM;
 | |
| 
 | |
|   static int sampleRateS[16];
 | |
| 
 | |
| public:
 | |
|   cFemonAAC(cFemonAudioIf *audioHandlerP);
 | |
|   virtual ~cFemonAAC();
 | |
| 
 | |
|   bool processAudio(const uint8_t *bufP, int lenP);
 | |
|   };
 | |
| 
 | |
| #endif //__FEMON_AAC_H
 |