Home
last modified time | relevance | path

Searched refs:videoWidth (Results 1 – 20 of 20) 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.java72 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()
DTvInputManager.java2068 int videoWidth = track.getVideoWidth();
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2071 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.cpp249 uint32_t videoWidth, videoHeight; in setDisplayProjection() local
252 videoWidth = gVideoWidth; in setDisplayProjection()
255 videoWidth = gVideoHeight; in setDisplayProjection()
258 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) { in setDisplayProjection()
260 outWidth = videoWidth; in setDisplayProjection()
261 outHeight = (uint32_t)(videoWidth * displayAspect); in setDisplayProjection()
268 offX = (videoWidth - outWidth) / 2; in setDisplayProjection()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DPlaybackFragmentGlueHost.java131 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
132 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
DPlaybackSupportFragmentGlueHost.java128 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
129 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
DPlaybackSupportFragment.java1133 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
DPlaybackFragment.java1136 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
/frameworks/av/media/libstagefright/codec2/tests/
DC2Param_test.cpp1389 uint32_t videoWidth[] = { 12u, C2NumberStreamTuning::output::typeIndex, 100 }; in TEST_F() local
1390 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F()
1395 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F()
1398 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F()
1401 p1 = C2Param::From(videoWidth, 3); in TEST_F()
1404 p1 = C2Param::From(videoWidth, 0); in TEST_F()
2078 uint32_t videoWidth[] = { 12u, C2NumbersStreamTuning::output::typeIndex, 100 }; in TEST_F() local
2079 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F()
2091 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F()
2094 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F()
[all …]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
DPlaybackGlueHost.java95 public void onVideoSizeChanged(int videoWidth, int videoHeight) { in onVideoSizeChanged() argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp117 videoWidth = previewWidth; in initialize()
121 params.setVideoSize(videoWidth, videoHeight); in initialize()
1932 newParams.getVideoSize(&validatedParams.videoWidth, in set()
1934 if (validatedParams.videoWidth != videoWidth || in set()
1939 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth, in set()
1941 validatedParams.videoWidth = videoWidth; in set()
1943 newParams.setVideoSize(videoWidth, videoHeight); in set()
1947 validatedParams.videoWidth) && in set()
1953 __FUNCTION__, validatedParams.videoWidth, in set()
2314 pictureWidth = videoWidth; in overrideJpegSizeByVideoSize()
[all …]
DStreamingProcessor.cpp324 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()
DParameters.h142 int videoWidth, videoHeight, videoFormat; 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.java302 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/
DStagefrightMetadataRetriever.cpp798 int32_t videoWidth = -1; in parseMetaData() local
827 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth)); in parseMetaData()
862 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.cpp334 result.appendFormat(" Video size: %d x %d\n", p.videoWidth, in dumpClient()