OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:videoType
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_payload_registry.cc
450
RtpVideoCodecTypes
videoType
= kRtpVideoGeneric;
453
videoType
= kRtpVideoVp8;
455
videoType
= kRtpVideoVp9;
457
videoType
= kRtpVideoH264;
459
videoType
= kRtpVideoGeneric;
462
videoType
= kRtpVideoNone;
464
videoType
= kRtpVideoGeneric;
470
payload->typeSpecific.Video.videoCodecType =
videoType
;
rtp_sender_video.cc
64
void RTPSenderVideo::SetVideoCodecType(RtpVideoCodecTypes
videoType
) {
65
_videoType =
videoType
;
77
RtpVideoCodecTypes
videoType
= kRtpVideoGeneric;
79
videoType
= kRtpVideoVp8;
81
videoType
= kRtpVideoVp9;
83
videoType
= kRtpVideoH264;
85
videoType
= kRtpVideoGeneric;
87
videoType
= kRtpVideoGeneric;
92
payload->typeSpecific.Video.videoCodecType =
videoType
;
225
int32_t RTPSenderVideo::SendVideo(const RtpVideoCodecTypes
videoType
,
[
all
...]
/developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
ChannelXMLParser.java
167
int
videoType
= TvInputPlayer.SOURCE_TYPE_HTTP_PROGRESSIVE;
184
videoType
= TvInputPlayer.SOURCE_TYPE_HTTP_PROGRESSIVE;
186
videoType
= TvInputPlayer.SOURCE_TYPE_HLS;
188
videoType
= TvInputPlayer.SOURCE_TYPE_MPEG_DASH;
197
TvContractUtils.stringToContentRatings(contentRatings), videoUrl,
videoType
, 0);
RichTvInputService.java
266
mPlayer.prepare(RichTvInputService.this, Uri.parse(info.videoUrl), info.
videoType
);
271
if (info.
videoType
!= TvInputPlayer.SOURCE_TYPE_HTTP_PROGRESSIVE) {
457
public final int
videoType
;
462
TvContentRating[] contentRatings, String videoUrl, int
videoType
, int resourceId) {
469
this.
videoType
=
videoType
;
478
public final int
videoType
;
481
public PlaybackInfo(long startTimeMs, long endTimeMs, String videoUrl, int
videoType
,
487
this.
videoType
=
videoType
;
[
all
...]
/developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java
225
int
videoType
= values.first;
227
list.add(new PlaybackInfo(startMs, endMs, videoUrl,
videoType
,
243
public static String convertVideoInfoToInternalProviderData(int
videotype
, String videoUrl) {
244
return
videotype
+ "," + videoUrl;
Completed in 233 milliseconds