diff options
author | Denis Loh <denis.loh@gmail.com> | 2010-01-25 12:10:01 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2010-01-25 12:10:01 +0100 |
commit | 724cb5e3783311f6b8c808852dbe2de59f2399b0 (patch) | |
tree | be1f2d617b4a3e2e156b7a2d6ba9ee335cde63cf /inc/profiles/jpeg.h | |
parent | 0152f33daffe3fe943d6a134409d02df7ecaa982 (diff) | |
download | vdr-plugin-upnp-724cb5e3783311f6b8c808852dbe2de59f2399b0.tar.gz vdr-plugin-upnp-724cb5e3783311f6b8c808852dbe2de59f2399b0.tar.bz2 |
Fixed small bug which leads to an empty TV folder
Diffstat (limited to 'inc/profiles/jpeg.h')
-rw-r--r-- | inc/profiles/jpeg.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/inc/profiles/jpeg.h b/inc/profiles/jpeg.h new file mode 100644 index 0000000..42d2420 --- /dev/null +++ b/inc/profiles/jpeg.h @@ -0,0 +1,24 @@ +/* + * File: profiles_jpeg.h + * Author: savop + * + * Created on 7. Dezember 2009, 12:59 + */ + +#ifndef _PROFILES_JPEG_H +#define _PROFILES_JPEG_H + +#include "profile_data.h" + +/* Images */ +extern DLNAProfile DLNA_PROFILE_JPEG_SM; ///< JPEG small resolution +extern DLNAProfile DLNA_PROFILE_JPEG_MED; ///< JPEG medium resolution +extern DLNAProfile DLNA_PROFILE_JPEG_LRG; ///< JPEG high resolution + +/* Icons */ +extern DLNAIconProfile DLNA_ICON_JEPG_TN; ///< DLNA jpeg thumbnail profile of images +extern DLNAIconProfile DLNA_ICON_JPEG_SM_24; ///< DLNA icon profile of small jpeg images +extern DLNAIconProfile DLNA_ICON_JPEG_LRG_24; ///< DLNA icon profile of large jpeg images + +#endif /* _PROFILES_JPEG_H */ + |