blob: 867de6659f4bdc46aabbf402720e4389e1dd5e6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* profile.h
*
* Created on: 05.08.2012
* Author: savop
*/
#ifndef PROFILE_H_
#define PROFILE_H_
#include <string>
#include <stdint.h>
using namespace std;
namespace upnp {
namespace video {
}
namespace audio {
}
namespace image {
struct cIcon {
const char* mime; ///< the mime type of the image
uint16_t width; ///< image width in pixel
uint16_t height; ///< image height in pixel
uint8_t bitDepth; ///< bit depth in bits per pixel
};
/* JPEG Icons */
//extern cIcon DLNA_ICON_JEPG_TN; ///< DLNA jpeg thumbnail profile of images
extern cIcon DLNA_ICON_JPEG_SM_24; ///< DLNA icon profile of small jpeg images
extern cIcon DLNA_ICON_JPEG_LRG_24; ///< DLNA icon profile of large jpeg images
/* PNG Icons */
extern cIcon DLNA_ICON_PNG_SM_24A; ///< DLNA icon profile of small png images
extern cIcon DLNA_ICON_PNG_LRG_24A; ///< DLNA icon profile of large png images
//extern cIcon DLNA_ICON_PNG_TN; ///< DLNA png thumbnail profile of images
} /* NS:image */
} /* NS:upnp */
#endif /* PROFILE_H_ */
|