Searched refs:videoHeight (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java69 String videoHeight = (String) icicle.get("video_height");
89 if (videoHeight != null) {
90 mVideoHeight = Integer.parseInt(videoHeight);
/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java477 int videoHeight,
490 this.videoFrameHeight = videoHeight;
470 CamcorderProfile(int duration, int quality, int fileFormat, int videoCodec, int videoBitRate, int videoFrameRate, int videoWidth, int videoHeight, int audioCodec, int audioBitRate, int audioSampleRate, int audioChannels) argument
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java72 int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight,
82 mVideoHeight = videoHeight;
411 * @param videoHeight The height of the video.
414 public final Builder setVideoHeight(int videoHeight) { argument
418 mVideoHeight = videoHeight;
71 TvTrackInfo(int type, String id, String language, CharSequence description, int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, float videoFrameRate, float videoPixelAspectRatio, byte videoActiveFormatDescription, Bundle extra) argument
H A DTvInputManager.java1983 int videoHeight = track.getVideoHeight();
1984 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1986 mVideoHeight = videoHeight;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java178 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/
H A Dscreenrecord.cpp248 uint32_t videoWidth, videoHeight; local
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;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java314 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/
H A DStagefrightMetadataRetriever.cpp646 int32_t videoHeight = -1; local
675 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
712 sprintf(tmp, "%d", videoHeight);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp333 currentHeight != (uint32_t)params.videoHeight ||
369 currentHeight != (uint32_t)params.videoHeight ||
392 params.videoWidth, params.videoHeight,
H A DParameters.cpp118 videoHeight = previewHeight;
121 params.setVideoSize(videoWidth, videoHeight);
1829 &validatedParams.videoHeight);
1831 validatedParams.videoHeight != videoHeight) {
1835 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth,
1836 validatedParams.videoHeight);
1838 validatedParams.videoHeight = videoHeight;
1839 newParams.setVideoSize(videoWidth, videoHeight);
[all...]
H A DParameters.h134 int videoWidth, videoHeight, videoFormat; member in struct:android::camera2::Parameters
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java260 public static int videoHeight(String filePath) throws Exception { method in class:CodecTest
261 Log.v(TAG, "videoHeight - " + filePath);
262 int videoHeight = 0;
285 videoHeight = mMediaPlayer.getVideoHeight();
291 return videoHeight;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
H A DMediaPlayerApiTest.java307 height = CodecTest.videoHeight(MediaNames.VIDEO_LARGE_SIZE_3GP);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp313 p.videoHeight);

Completed in 2895 milliseconds