summaryrefslogtreecommitdiff
path: root/services/tvscrapper.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-08-24 09:18:45 +0200
committerlouis <louis.braun@gmx.de>2013-08-24 09:18:45 +0200
commit128a04a3039c5dffd08b29e97c9dd00625aa977d (patch)
tree6df80a44bca1d9486b08b793a640446c7151edc3 /services/tvscrapper.h
parentac9ae79a214ca4707a83229d854c0ca5180be398 (diff)
downloadskin-nopacity-128a04a3039c5dffd08b29e97c9dd00625aa977d.tar.gz
skin-nopacity-128a04a3039c5dffd08b29e97c9dd00625aa977d.tar.bz2
fixed an possible uninitialised variable in recordings menu
Diffstat (limited to 'services/tvscrapper.h')
-rw-r--r--services/tvscrapper.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/services/tvscrapper.h b/services/tvscrapper.h
deleted file mode 100644
index 5541608..0000000
--- a/services/tvscrapper.h
+++ /dev/null
@@ -1,56 +0,0 @@
-enum tvMediaType {
- typeSeries,
- typeMovie,
- typeNone,
-};
-
-struct tvMedia {
- std::string path;
- int width;
- int height;
-};
-
-struct tvActor {
- std::string name;
- std::string role;
- tvMedia thumb;
-};
-
-// Data structure for service "TVScrapper-GetPosterOrBanner"
-struct TVScrapperGetPosterOrBanner
-{
-// in
- const cEvent *event; // search image for this event
-//out
- tvMediaType type; //typeSeries or typeMovie
- tvMedia media; //banner or poster
-};
-
-// Data structure for service "TVScrapper-GetPoster"
-struct TVScrapperGetPoster
-{
-// in
- const cEvent *event; // search image for this event
- bool isRecording; // search in current EPG or recordings
-//out
- tvMedia media; //poster
-};
-
-
-/* Data structure for service "TVScrapper-GetFullEPGInformation"
-if type == typeMovie a poster and a fanart image is delivered
-if type == typeSeries a banner and up to three posters and fanarts are delivered
-*/
-struct TVScrapperGetFullInformation
-{
-// in
- const cEvent *event; // search all media for this event
- bool isRecording; // search in current EPG or recordings
-//out
- tvMediaType type;
- tvMedia banner;
- std::vector<tvMedia> posters;
- std::vector<tvMedia> fanart;
- std::vector<tvActor> actors;
- std::string description;
-}; \ No newline at end of file