blob: 80e25ecc0985120dd9e2036c43828ade7eaf529a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* File: profiles_wma.h
* Author: savop
*
* Created on 7. Dezember 2009, 13:32
*/
#ifndef _PROFILES_WMA_H
#define _PROFILES_WMA_H
#include "profile_data.h"
extern DLNAProfile DLNA_PROFILE_WMABASE; ///< WMA with less than 193Kbit/s
extern DLNAProfile DLNA_PROFILE_WMAFULL; ///< WMA
extern DLNAProfile DLNA_PROFILE_WMAPRO; ///< WMA Professional
#endif /* _PROFILES_WMA_H */
|