/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
D | MediaRecorderStressTestRunner.java | 68 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/ |
D | TvTrackInfo.java | 72 int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, in TvTrackInfo() argument 81 mVideoWidth = videoWidth; in TvTrackInfo() 399 public final Builder setVideoWidth(int videoWidth) { in setVideoWidth() argument 403 mVideoWidth = videoWidth; in setVideoWidth()
|
D | TvInputManager.java | 2079 int videoWidth = track.getVideoWidth(); 2081 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) { 2082 mVideoWidth = videoWidth;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
D | MediaRecorderStressTest.java | 177 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/ |
D | CamcorderProfile.java | 545 int videoWidth, in CamcorderProfile() argument 558 this.videoFrameWidth = videoWidth; in CamcorderProfile()
|
/frameworks/av/cmds/screenrecord/ |
D | screenrecord.cpp | 290 uint32_t videoWidth, videoHeight; in setDisplayProjection() local 293 videoWidth = gVideoWidth; in setDisplayProjection() 296 videoWidth = gVideoHeight; in setDisplayProjection() 299 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) { in setDisplayProjection() 301 outWidth = videoWidth; in setDisplayProjection() 302 outHeight = (uint32_t)(videoWidth * displayAspect); in setDisplayProjection() 309 offX = (videoWidth - outWidth) / 2; in setDisplayProjection()
|
/frameworks/av/media/codec2/tests/ |
D | C2Param_test.cpp | 1675 uint32_t videoWidth[] = { 12u, C2NumberStreamTuning::output::PARAM_TYPE, 100 }; in TEST_F() local 1676 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F() 1681 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F() 1684 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F() 1687 p1 = C2Param::From(videoWidth, 3); in TEST_F() 1690 p1 = C2Param::From(videoWidth, 0); in TEST_F() 2374 uint32_t videoWidth[] = { 12u, C2NumbersStreamTuning::output::PARAM_TYPE, 100 }; in TEST_F() local 2375 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F() 2387 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F() 2390 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F() [all …]
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
D | MediaRecorderTest.java | 313 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/av/services/camera/libcameraservice/api1/client2/ |
D | Parameters.cpp | 128 videoWidth = previewWidth; in initialize() 132 params.setVideoSize(videoWidth, videoHeight); in initialize() 1984 newParams.getVideoSize(&validatedParams.videoWidth, in set() 1986 if (validatedParams.videoWidth != videoWidth || in set() 1991 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth, in set() 1993 validatedParams.videoWidth = videoWidth; in set() 1995 newParams.setVideoSize(videoWidth, videoHeight); in set() 1999 validatedParams.videoWidth) && in set() 2005 __FUNCTION__, validatedParams.videoWidth, in set() 2383 pictureWidth = videoWidth; in overrideJpegSizeByVideoSize() [all …]
|
D | StreamingProcessor.cpp | 324 streamInfo.width != (uint32_t)params.videoWidth || in recordingStreamNeedsUpdate() 356 if (streamInfo.width != (uint32_t)params.videoWidth || in updateRecordingStream() 380 params.videoWidth, params.videoHeight, in updateRecordingStream()
|
D | Parameters.h | 145 int videoWidth, videoHeight, videoFormat; member
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | CodecTest.java | 302 public static int videoWidth(String filePath) throws Exception { in videoWidth() method in CodecTest 304 int videoWidth = 0; in videoWidth() local 328 videoWidth = mMediaPlayer.getVideoWidth(); in videoWidth() 333 return videoWidth; in videoWidth()
|
/frameworks/av/media/libstagefright/ |
D | StagefrightMetadataRetriever.cpp | 528 int32_t videoWidth = -1; in parseMetaData() local 579 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth)); in parseMetaData() 631 sprintf(tmp, "%d", videoWidth); in parseMetaData()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/ |
D | MediaPlayerApiTest.java | 315 width = CodecTest.videoWidth(MediaNames.VIDEO_LARGE_SIZE_3GP); in testLargeVideoWidth()
|
/frameworks/av/services/camera/libcameraservice/api1/ |
D | Camera2Client.cpp | 334 result.appendFormat(" Video size: %d x %d\n", p.videoWidth, in dumpClient()
|