HomeSort by relevance Sort by last modified time
    Searched defs:videoWidth (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 68 String videoWidth = (String) icicle.get("video_width");
86 if (videoWidth != null) {
87 mVideoWidth = Integer.parseInt(videoWidth);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
ChannelXMLParser.java 122 int videoWidth = 0;
138 videoWidth = Integer.parseInt(value);
159 videoWidth, videoHeight, programs);
RichTvInputService.java 432 public final int videoWidth;
437 int transportStreamId, int serviceId, int videoWidth, int videoHeight,
445 this.videoWidth = videoWidth;
  /packages/apps/TV/src/com/android/tv/search/
LocalSearchProvider.java 114 row.add(result.videoWidth == 0 ? null : String.valueOf(result.videoWidth));
161 public int videoWidth;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 40 private int videoWidth;
141 videoWidth = width;
230 return videoWidth;
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ChannelInfo.java 58 public final int videoWidth;
113 int videoWidth, int videoHeight, float videoPixelAspectRatio, int audioChannel,
121 this.videoWidth = videoWidth;
146 + ", videoWidth=" + videoWidth
168 Objects.equals(videoWidth, that.videoWidth) &&
218 mVideoWidth = other.videoWidth;
247 public Builder setVideoWidth(int videoWidth) {
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
ConnectActivity.java 282 int videoWidth = 0;
289 videoWidth = Integer.parseInt(dimensions[0]);
292 videoWidth = 0;
352 intent.putExtra(CallActivity.EXTRA_VIDEO_WIDTH, videoWidth);
PeerConnectionClient.java 135 public final int videoWidth;
150 int videoWidth, int videoHeight, int videoFps, int videoStartBitrate,
157 this.videoWidth = videoWidth;
369 int videoWidth = peerConnectionParameters.videoWidth;
374 if ((videoWidth == 0 || videoHeight == 0)
377 videoWidth = HD_VIDEO_WIDTH;
382 if (videoWidth > 0 && videoHeight > 0) {
383 videoWidth = Math.min(videoWidth, MAX_VIDEO_WIDTH)
    [all...]
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 248 uint32_t videoWidth, videoHeight;
251 videoWidth = gVideoWidth;
254 videoWidth = gVideoHeight;
257 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
259 outWidth = videoWidth;
260 outHeight = (uint32_t)(videoWidth * displayAspect);
267 offX = (videoWidth - outWidth) / 2;
    [all...]
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 651 int32_t videoWidth = -1;
680 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
715 sprintf(tmp, "%d", videoWidth);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 177 int videoWidth;
188 videoWidth = camcorderProfile.videoFrameWidth;
195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth;
224 Log.v(TAG, "video width : " + videoWidth);
235 mRecorder.setVideoSize(videoWidth, videoHeight);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.java 281 public static int videoWidth(String filePath) throws Exception {
282 Log.v(TAG, "videoWidth - " + filePath);
283 int videoWidth = 0;
307 videoWidth = mMediaPlayer.getVideoWidth();
312 return videoWidth;
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
VideoRendererGui.java 142 // |screenHeight|, |videoWidth|, |videoHeight|, |rotationDegree|, |scalingType|, and |mirror|.
150 private int videoWidth;
212 + displayLayout.width() + " x " + displayLayout.height() + ". Video: " + videoWidth
215 ? (float) videoWidth / videoHeight
216 : (float) videoHeight / videoWidth;
345 private void setSize(final int videoWidth, final int videoHeight, final int rotation) {
346 if (videoWidth == this.videoWidth && videoHeight == this.videoHeight
352 ". Reporting frame resolution changed to " + videoWidth + " x " + videoHeight);
353 rendererEvents.onFrameResolutionChanged(videoWidth, videoHeight, rotation)
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h 134 int videoWidth, videoHeight, videoFormat;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 295 public static int videoWidth(String filePath) throws Exception {
296 Log.v(TAG, "videoWidth - " + filePath);
297 int videoWidth = 0;
321 videoWidth = mMediaPlayer.getVideoWidth();
326 return videoWidth;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 313 int videoWidth = highQuality? videoCap.mMaxFrameWidth: videoCap.mMinFrameWidth;
339 Log.v(TAG, "videoWidth : " + videoWidth);
353 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
366 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
  /hardware/intel/img/hwcomposer/merrifield/common/devices/
VirtualDevice.cpp     [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraHWI.h 774 int videoWidth, videoHeight;
    [all...]
  /external/opencv3/modules/videoio/src/
cap_msmf.cpp     [all...]
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 

Completed in 2288 milliseconds

1 2