Searched refs:videoHeight (Results 1 - 19 of 19) 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/support/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackFragmentGlueHost.java128 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
129 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
H A DPlaybackSupportFragmentGlueHost.java131 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
132 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
H A DPlaybackFragment.java1131 * @param videoHeight Intrinsic height of video
1133 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { argument
H A DPlaybackSupportFragment.java1134 * @param videoHeight Intrinsic height of video
1136 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { 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.java2069 int videoHeight = track.getVideoHeight();
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2072 mVideoHeight = videoHeight;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackGlueHost.java93 * @param videoHeight
95 public void onVideoSizeChanged(int videoWidth, int videoHeight) { 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.cpp249 uint32_t videoWidth, videoHeight; local
253 videoHeight = gVideoHeight;
256 videoHeight = gVideoWidth;
258 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
264 outHeight = videoHeight;
265 outWidth = (uint32_t)(videoHeight / displayAspect);
269 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/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp328 currentHeight != (uint32_t)params.videoHeight ||
364 currentHeight != (uint32_t)params.videoHeight ||
387 params.videoWidth, params.videoHeight,
H A DParameters.cpp118 videoHeight = previewHeight;
121 params.setVideoSize(videoWidth, videoHeight);
1932 &validatedParams.videoHeight);
1934 validatedParams.videoHeight != videoHeight) {
1938 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth,
1939 validatedParams.videoHeight);
1941 validatedParams.videoHeight = videoHeight;
1942 newParams.setVideoSize(videoWidth, videoHeight);
[all...]
H A DParameters.h142 int videoWidth, videoHeight, videoFormat; member in struct:android::camera2::Parameters
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java267 public static int videoHeight(String filePath) throws Exception { method in class:CodecTest
268 Log.v(TAG, "videoHeight - " + filePath);
269 int videoHeight = 0;
292 videoHeight = mMediaPlayer.getVideoHeight();
298 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/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp683 int32_t videoHeight = -1; local
712 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
749 sprintf(tmp, "%d", videoHeight);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp319 p.videoHeight);

Completed in 408 milliseconds