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

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java68 String videoWidth = (String) icicle.get("video_width");
86 if (videoWidth != null) {
87 mVideoWidth = Integer.parseInt(videoWidth);
/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java476 int videoWidth,
489 this.videoFrameWidth = videoWidth;
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,
81 mVideoWidth = videoWidth;
396 * @param videoWidth The width of the video.
399 public final Builder setVideoWidth(int videoWidth) { argument
403 mVideoWidth = videoWidth;
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.java1982 int videoWidth = track.getVideoWidth();
1984 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1985 mVideoWidth = videoWidth;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java177 int videoWidth;
188 videoWidth = camcorderProfile.videoFrameWidth;
195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth;
224 Log.v(TAG, "video width : " + videoWidth);
235 mRecorder.setVideoSize(videoWidth, videoHeight);
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp248 uint32_t videoWidth, videoHeight; local
251 videoWidth = gVideoWidth;
254 videoWidth = gVideoHeight;
257 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
259 outWidth = videoWidth;
260 outHeight = (uint32_t)(videoWidth * displayAspect);
267 offX = (videoWidth - outWidth) / 2;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java313 int videoWidth = highQuality? videoCap.mMaxFrameWidth: videoCap.mMinFrameWidth;
339 Log.v(TAG, "videoWidth : " + videoWidth);
353 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
366 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp645 int32_t videoWidth = -1; local
674 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
709 sprintf(tmp, "%d", videoWidth);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp332 currentWidth != (uint32_t)params.videoWidth ||
368 if (currentWidth != (uint32_t)params.videoWidth ||
392 params.videoWidth, params.videoHeight,
H A DParameters.cpp117 videoWidth = previewWidth;
121 params.setVideoSize(videoWidth, videoHeight);
1828 newParams.getVideoSize(&validatedParams.videoWidth,
1830 if (validatedParams.videoWidth != videoWidth ||
1835 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth,
1837 validatedParams.videoWidth = videoWidth;
1839 newParams.setVideoSize(videoWidth, videoHeigh
[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.java295 public static int videoWidth(String filePath) throws Exception { method in class:CodecTest
296 Log.v(TAG, "videoWidth - " + filePath);
297 int videoWidth = 0;
321 videoWidth = mMediaPlayer.getVideoWidth();
326 return videoWidth;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
H A DMediaPlayerApiTest.java315 width = CodecTest.videoWidth(MediaNames.VIDEO_LARGE_SIZE_3GP);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp312 result.appendFormat(" Video size: %d x %d\n", p.videoWidth,

Completed in 523 milliseconds