Home
last modified time | relevance | path

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

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
DMediaRecorderStressTestRunner.java68 String videoWidth = (String) icicle.get("video_width"); in onCreate() local
86 if (videoWidth != null) { in onCreate()
87 mVideoWidth = Integer.parseInt(videoWidth); in onCreate()
/frameworks/base/media/java/android/media/tv/
DTvTrackInfo.java58 int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, in TvTrackInfo() argument
66 mVideoWidth = videoWidth; in TvTrackInfo()
315 public final Builder setVideoWidth(int videoWidth) { in setVideoWidth() argument
319 mVideoWidth = videoWidth; in setVideoWidth()
DTvInputManager.java1685 int videoWidth = track.getVideoWidth();
1687 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
1688 mVideoWidth = videoWidth;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DMediaRecorderStressTest.java177 int videoWidth; in recordVideoAndPlayback() local
188 videoWidth = camcorderProfile.videoFrameWidth; in recordVideoAndPlayback()
195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth; in recordVideoAndPlayback()
224 Log.v(TAG, "video width : " + videoWidth); in recordVideoAndPlayback()
235 mRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoAndPlayback()
/frameworks/base/media/java/android/media/
DCamcorderProfile.java476 int videoWidth, in CamcorderProfile() argument
489 this.videoFrameWidth = videoWidth; in CamcorderProfile()
/frameworks/av/cmds/screenrecord/
Dscreenrecord.cpp248 uint32_t videoWidth, videoHeight; in setDisplayProjection() local
251 videoWidth = gVideoWidth; in setDisplayProjection()
254 videoWidth = gVideoHeight; in setDisplayProjection()
257 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) { in setDisplayProjection()
259 outWidth = videoWidth; in setDisplayProjection()
260 outHeight = (uint32_t)(videoWidth * displayAspect); in setDisplayProjection()
267 offX = (videoWidth - outWidth) / 2; in setDisplayProjection()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp116 videoWidth = previewWidth; in initialize()
120 params.setVideoSize(videoWidth, videoHeight); in initialize()
1828 newParams.getVideoSize(&validatedParams.videoWidth, in set()
1830 if (validatedParams.videoWidth != videoWidth || in set()
1835 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth, in set()
1837 validatedParams.videoWidth = videoWidth; in set()
1839 newParams.setVideoSize(videoWidth, videoHeight); in set()
1843 validatedParams.videoWidth) && in set()
1849 __FUNCTION__, validatedParams.videoWidth, in set()
2196 pictureWidth = videoWidth; in overrideJpegSizeByVideoSize()
[all …]
DStreamingProcessor.cpp399 currentWidth != (uint32_t)params.videoWidth || in recordingStreamNeedsUpdate()
454 if (currentWidth != (uint32_t)params.videoWidth || in updateRecordingStream()
480 params.videoWidth, params.videoHeight, in updateRecordingStream()
DParameters.h134 int videoWidth, videoHeight; member
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java313 int videoWidth = highQuality? videoCap.mMaxFrameWidth: videoCap.mMinFrameWidth; in recordVideoWithPara() local
339 Log.v(TAG, "videoWidth : " + videoWidth); in recordVideoWithPara()
353 mMediaRecorder.setVideoSize(videoWidth, videoHeight); in recordVideoWithPara()
366 recordSuccess = validateVideo(filename, videoWidth, videoHeight); in recordVideoWithPara()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
DCodecTest.java295 public static int videoWidth(String filePath) throws Exception { in videoWidth() method in CodecTest
297 int videoWidth = 0; in videoWidth() local
321 videoWidth = mMediaPlayer.getVideoWidth(); in videoWidth()
326 return videoWidth; in videoWidth()
/frameworks/av/media/libstagefright/
DStagefrightMetadataRetriever.cpp625 int32_t videoWidth = -1; in parseMetaData() local
654 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth)); in parseMetaData()
686 sprintf(tmp, "%d", videoWidth); in parseMetaData()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
DMediaPlayerApiTest.java315 width = CodecTest.videoWidth(MediaNames.VIDEO_LARGE_SIZE_3GP); in testLargeVideoWidth()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp328 result.appendFormat(" Video size: %d x %d\n", p.videoWidth, in dump()