Searched refs:videoFormat (Results 1 – 5 of 5) sorted by relevance
247 String videoFormat = channel.getVideoFormat(); in isHdChannel() local248 return videoFormat != null in isHdChannel()249 && (Channels.VIDEO_FORMAT_720P.equals(videoFormat) in isHdChannel()250 || Channels.VIDEO_FORMAT_1080I.equals(videoFormat) in isHdChannel()251 || Channels.VIDEO_FORMAT_1080P.equals(videoFormat) in isHdChannel()252 || Channels.VIDEO_FORMAT_2160P.equals(videoFormat) in isHdChannel()253 || Channels.VIDEO_FORMAT_4320P.equals(videoFormat)); in isHdChannel()
214 String videoFormat) { in forNetwork() argument229 if (videoFormat != null) { in forNetwork()230 tunerChannel.setVideoFormat(videoFormat); in forNetwork()452 public synchronized void setVideoFormat(String videoFormat) { in setVideoFormat() argument453 mProto.videoFormat = videoFormat == null ? "" : videoFormat; in setVideoFormat()457 return mProto.videoFormat; in getVideoFormat()
90 String videoFormat = channel.getVideoFormat(); in updateChannels() local91 if (videoFormat != null) { in updateChannels()92 values.put(Channels.COLUMN_VIDEO_FORMAT, videoFormat); in updateChannels()
527 public Builder setVideoFormat(String videoFormat) { in setVideoFormat() argument528 mChannel.mVideoFormat = videoFormat; in setVideoFormat()
556 public static String getVideoDefinitionLevelString(Context context, int videoFormat) { in getVideoDefinitionLevelString() argument557 switch (videoFormat) { in getVideoDefinitionLevelString()