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/tv/
H A DTvTrackInfo.java53 int audioSampleRate, int videoWidth, int videoHeight, float videoFrameRate,
61 mVideoHeight = videoHeight;
288 * @param videoHeight The height of the video.
290 public final Builder setVideoHeight(int videoHeight) { argument
294 mVideoHeight = videoHeight;
52 TvTrackInfo(int type, String id, String language, int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, float videoFrameRate, Bundle extra) argument
H A DTvInputManager.java1517 int videoHeight = track.getVideoHeight();
1518 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1520 mVideoHeight = videoHeight;
/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java413 int videoHeight,
426 this.videoFrameHeight = videoHeight;
406 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/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.cpp245 uint32_t videoWidth, videoHeight; local
249 videoHeight = gVideoHeight;
252 videoHeight = gVideoWidth;
254 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
260 outHeight = videoHeight;
261 outWidth = (uint32_t)(videoHeight / displayAspect);
265 offY = (videoHeight - outHeight) / 2;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp103 videoHeight = previewHeight;
106 params.setVideoSize(videoWidth, videoHeight);
1800 &validatedParams.videoHeight);
1802 validatedParams.videoHeight != videoHeight) {
1806 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth,
1807 validatedParams.videoHeight);
1809 validatedParams.videoHeight = videoHeight;
1810 newParams.setVideoSize(videoWidth, videoHeight);
[all...]
H A DParameters.h132 int videoWidth, videoHeight; member in struct:android::camera2::Parameters
H A DStreamingProcessor.cpp352 currentHeight != (uint32_t)params.videoHeight) {
402 currentHeight != (uint32_t)params.videoHeight || newConsumer) {
424 params.videoWidth, params.videoHeight,
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java299 int videoHeight = highQuality? videoCap.mMaxFrameHeight: videoCap.mMinFrameHeight;
325 Log.v(TAG, "videoHeight : " + videoHeight);
338 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
351 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp525 int32_t videoHeight = -1; local
554 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
588 sprintf(tmp, "%d", videoHeight);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java259 public static int videoHeight(String filePath) throws Exception { method in class:CodecTest
260 Log.v(TAG, "videoHeight - " + filePath);
261 int videoHeight = 0;
284 videoHeight = mMediaPlayer.getVideoHeight();
290 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.cpp329 p.videoHeight);

Completed in 266 milliseconds