/* * Copyright (C) 2005-2009 Team XBMC * http://xbmc.org * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This Program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with XBMC Remote; see the file license. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * http://www.gnu.org/copyleft/gpl.html * */ package org.xbmc.api.info; public class VideoInfo { public static final int VIDEOPLAYER_TITLE = 250; public static final int VIDEOPLAYER_GENRE = 251; public static final int VIDEOPLAYER_DIRECTOR = 252; public static final int VIDEOPLAYER_YEAR = 253; public static final int VIDEOPLAYER_COVER = 258; public static final int VIDEOPLAYER_USING_OVERLAYS = 259; public static final int VIDEOPLAYER_ISFULLSCREEN = 260; public static final int VIDEOPLAYER_HASMENU = 261; public static final int VIDEOPLAYER_PLAYLISTLEN = 262; public static final int VIDEOPLAYER_PLAYLISTPOS = 263; public static final int VIDEOPLAYER_EVENT = 264; public static final int VIDEOPLAYER_ORIGINALTITLE = 265; public static final int VIDEOPLAYER_PLOT = 266; public static final int VIDEOPLAYER_PLOT_OUTLINE = 267; public static final int VIDEOPLAYER_EPISODE = 268; public static final int VIDEOPLAYER_SEASON = 269; public static final int VIDEOPLAYER_RATING = 270; public static final int VIDEOPLAYER_TVSHOW = 271; public static final int VIDEOPLAYER_PREMIERED = 272; public static final int VIDEOPLAYER_CONTENT = 273; public static final int VIDEOPLAYER_STUDIO = 274; public static final int VIDEOPLAYER_MPAA = 275; public static final int VIDEOPLAYER_CAST = 276; public static final int VIDEOPLAYER_CAST_AND_ROLE = 277; public static final int VIDEOPLAYER_ARTIST = 278; public static final int VIDEOPLAYER_ALBUM = 279; public static final int VIDEOPLAYER_WRITER = 280; public static final int VIDEOPLAYER_TAGLINE = 281; public static final int VIDEOPLAYER_HAS_INFO = 282; public static final int VIDEOPLAYER_TOP250 = 283; public static final int VIDEOPLAYER_RATING_AND_VOTES = 284; public static final int VIDEOPLAYER_TRAILER = 285; public static final int VIDEOPLAYER_VIDEO_CODEC = 286; public static final int VIDEOPLAYER_VIDEO_RESOLUTION = 287; public static final int VIDEOPLAYER_AUDIO_CODEC = 288; public static final int VIDEOPLAYER_AUDIO_CHANNELS = 289; }