Searched defs:videoHeight (Results 1 - 6 of 6) sorted by relevance

/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/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
/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/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp525 int32_t videoHeight = -1; local
554 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
588 sprintf(tmp, "%d", 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.h132 int videoWidth, videoHeight; member in struct:android::camera2::Parameters

Completed in 1449 milliseconds