blob: 0b8bb81a16cbd3a067f25c87017fb0c38e9ed4a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* File: avdetector.h
* Author: savop
*
* Created on 26. Oktober 2009, 13:02
*/
#ifndef _AVDETECTOR_H
#define _AVDETECTOR_H
#include "../database/object.h"
class cAudioVideoDetector {
public:
cAudioVideoDetector(){};
virtual ~cAudioVideoDetector(){};
int detectVideoProperties(cUPnPResource* Resource, const char* Filename);
private:
};
#endif /* _AVDETECTOR_H */
|