OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:videoProfile
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/telecom/src/android/telecom/cts/
DataObjectUnitTests.java
39
import android.telecom.
VideoProfile
;
137
VideoProfile
.STATE_AUDIO_ONLY);
143
assertEquals(
VideoProfile
.STATE_AUDIO_ONLY, request.getVideoState());
157
assertEquals(
VideoProfile
.STATE_AUDIO_ONLY, parcelRequest.getVideoState());
284
VideoProfile
videoProfile
= new
VideoProfile
(
VideoProfile
.STATE_BIDIRECTIONAL,
285
VideoProfile
.QUALITY_HIGH);
286
assertEquals(
VideoProfile
.STATE_BIDIRECTIONAL, videoProfile.getVideoState())
[
all
...]
RemoteConnectionTest.java
35
import android.telecom.
VideoProfile
;
107
call.answer(
VideoProfile
.STATE_AUDIO_ONLY);
457
mRemoteConnection.setVideoState(
VideoProfile
.STATE_BIDIRECTIONAL);
460
assertEquals(
VideoProfile
.STATE_BIDIRECTIONAL, callbackInvoker.getArgs(0)[1]);
683
VideoProfile
videoProfile
) {
684
super.onSessionModifyRequestReceived(videoProvider,
videoProfile
);
685
callbackInvoker.invoke(videoProvider,
videoProfile
);
692
VideoProfile
requestedProfile,
693
VideoProfile
responseProfile)
[
all
...]
/frameworks/av/services/mediaanalytics/
statsd_recorder.cpp
69
int32_t
videoProfile
= -1;
70
if (item->getInt32("android.media.mediarecorder.video-encoder-profile", &
videoProfile
)) {
71
metrics_proto.set_video_profile(
videoProfile
);
/cts/tests/camera/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java
551
CamcorderProfile
videoProfile
= CamcorderProfile.get(idx, profile);
552
Size profileSize = new Size(
videoProfile
.videoFrameWidth,
553
videoProfile
.videoFrameHeight);
[
all
...]
Completed in 107 milliseconds