mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
8bf429b381
Fixed detection of false positives in audio/video streams. Refactored source code.
16 lines
310 B
C
16 lines
310 B
C
/*
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __FEMONAAC_H
|
|
#define __FEMONAAC_H
|
|
|
|
#include "femonaudio.h"
|
|
|
|
bool getAACAudioInfo(uint8_t *buf, int len, audio_info_t *info);
|
|
|
|
#endif //__FEMONAAC_H
|