Add empty DACP property get for media-kind and extended-media-kind

This commit is contained in:
ejurgensen 2013-11-07 22:45:12 +01:00
parent afa35ac55c
commit 0d5fef60e6
2 changed files with 33 additions and 16 deletions

View File

@ -26,3 +26,5 @@ struct dacp_prop_map;
"dacp.visualizer", dacp_propget_visualizer, NULL
"com.apple.itunes.itms-songid", dacp_propget_itms_songid, NULL
"com.apple.itunes.has-chapter-data", dacp_propget_haschapterdata, NULL
"com.apple.itunes.mediakind", dacp_propget_mediakind, NULL
"com.apple.itunes.extended-media-kind", dacp_propget_extendedmediakind, NULL

View File

@ -115,6 +115,10 @@ static void
dacp_propget_itms_songid(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi);
static void
dacp_propget_haschapterdata(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi);
static void
dacp_propget_mediakind(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi);
static void
dacp_propget_extendedmediakind(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi);
/* Forward - properties setters */
static void
@ -481,6 +485,17 @@ dacp_propget_haschapterdata(struct evbuffer *evbuf, struct player_status *status
// TODO
}
static void
dacp_propget_mediakind(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi)
{
// TODO
}
static void
dacp_propget_extendedmediakind(struct evbuffer *evbuf, struct player_status *status, struct media_file_info *mfi)
{
// TODO
}
/* Properties setters */
static void