HomeSort by relevance Sort by last modified time
    Searched refs:videoHeight (Results 1 - 25 of 32) sorted by null

1 2

  /packages/apps/Camera2/src/com/android/camera/data/
Metadata.java 75 public void setVideoHeight(int videoHeight) {
76 mVideoHeight = videoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 69 String videoHeight = (String) icicle.get("video_height");
89 if (videoHeight != null) {
90 mVideoHeight = Integer.parseInt(videoHeight);
  /cts/tests/tests/media/src/android/media/cts/
ClearKeySystemTest.java 288 public boolean isResolutionSupported(int videoWidth, int videoHeight) {
290 if (videoHeight <= 144) {
292 } else if (videoHeight <= 240) {
294 } else if (videoHeight <= 288) {
296 } else if (videoHeight <= 480) {
298 } else if (videoHeight <= 720) {
300 } else if (videoHeight <= 1080) {
308 MIME_VIDEO_AVC, videoWidth, videoHeight);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 41 private int videoHeight;
142 videoHeight = height;
234 return videoHeight;
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 477 int videoHeight,
490 this.videoFrameHeight = videoHeight;
  /frameworks/base/media/java/android/media/tv/
TvTrackInfo.java 58 int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight,
67 mVideoHeight = videoHeight;
327 * @param videoHeight The height of the video.
329 public final Builder setVideoHeight(int videoHeight) {
333 mVideoHeight = videoHeight;
TvInputManager.java     [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
ChannelXMLParser.java 123 int videoHeight = 0;
140 videoHeight = Integer.parseInt(value);
159 videoWidth, videoHeight, programs);
RichTvInputService.java 433 public final int videoHeight;
437 int transportStreamId, int serviceId, int videoWidth, int videoHeight,
446 this.videoHeight = videoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 178 int videoHeight;
189 videoHeight = camcorderProfile.videoFrameHeight;
196 videoHeight = MediaRecorderStressTestRunner.mVideoHeight;
225 Log.v(TAG, "video height : " + videoHeight);
235 mRecorder.setVideoSize(videoWidth, videoHeight);
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 248 uint32_t videoWidth, videoHeight;
252 videoHeight = gVideoHeight;
255 videoHeight = gVideoWidth;
257 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
263 outHeight = videoHeight;
264 outWidth = (uint32_t)(videoHeight / displayAspect);
268 offY = (videoHeight - outHeight) / 2;
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java 100 String videoFormat = getVideoFormat(channel.videoHeight);
149 private static String getVideoFormat(int videoHeight) {
150 return VIDEO_HEIGHT_TO_FORMAT_MAP.get(videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 314 int videoHeight = highQuality? videoCap.mMaxFrameHeight: videoCap.mMinFrameHeight;
340 Log.v(TAG, "videoHeight : " + videoHeight);
353 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
366 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 626 int32_t videoHeight = -1;
655 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
689 sprintf(tmp, "%d", videoHeight);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.java 246 public static int videoHeight(String filePath) throws Exception {
247 Log.v(TAG, "videoHeight - " + filePath);
248 int videoHeight = 0;
271 videoHeight = mMediaPlayer.getVideoHeight();
277 return videoHeight;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.cpp 117 videoHeight = previewHeight;
120 params.setVideoSize(videoWidth, videoHeight);
    [all...]
Parameters.h 134 int videoWidth, videoHeight;
StreamingProcessor.cpp 400 currentHeight != (uint32_t)params.videoHeight ||
455 currentHeight != (uint32_t)params.videoHeight ||
480 params.videoWidth, params.videoHeight,
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 260 public static int videoHeight(String filePath) throws Exception {
261 Log.v(TAG, "videoHeight - " + filePath);
262 int videoHeight = 0;
285 videoHeight = mMediaPlayer.getVideoHeight();
291 return videoHeight;
  /hardware/intel/img/hwcomposer/merrifield/common/devices/
VirtualDevice.cpp     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
MediaPlayerApiTest.java 307 height = CodecTest.videoHeight(MediaNames.VIDEO_LARGE_SIZE_3GP);
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp     [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraHWI.h 774 int videoWidth, videoHeight;
    [all...]
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCameraHWI.h 711 int videoWidth, videoHeight;
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 389 int videoWidth, int videoHeight) throws Exception {
391 videoWidth * videoHeight; // Temporary until new API definitions
413 ", video size is " + videoWidth + " x " + videoHeight);
415 videoWidth + " x " + videoHeight + " (" +
    [all...]

Completed in 2131 milliseconds

1 2