gui/movieinfo.cpp: add fields for youtube feeds player

This commit is contained in:
[CST] Focus
2013-05-30 09:59:10 +04:00
parent f4a07e730e
commit f4aa8a0d12
2 changed files with 7 additions and 1 deletions

View File

@@ -902,6 +902,9 @@ void CMovieInfo::clearMovieInfo(MI_MOVIE_INFO * movie_info)
movie_info->bookmarks.user[i].length = 0;
movie_info->bookmarks.user[i].name = "";
}
movie_info->tfile.clear();
movie_info->ytdate.clear();
movie_info->ytid.clear();
}
/************************************************************************

View File

@@ -169,6 +169,9 @@ typedef struct
int epgVideoPid; // currently not used, we just do not want to loose this info if movie info is saved backed
int VideoType;
int epgVTXPID; // currently not used, we just do not want to loose this info if movie info is saved backed
std::string tfile; // thumbnail/cover file name
std::string ytdate; // yt published
std::string ytid; // yt published
} MI_MOVIE_INFO;