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
308 B
C
16 lines
308 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 __FEMONAC3_H
|
|
#define __FEMONAC3_H
|
|
|
|
#include "femonaudio.h"
|
|
|
|
bool getAC3AudioInfo(uint8_t *buf, int len, ac3_info_t *info);
|
|
|
|
#endif //__FEMONAC3_H
|