Searched refs:videoWidth (Results 1 - 20 of 20) 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/support/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackFragmentGlueHost.java128 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
129 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
H A DPlaybackSupportFragmentGlueHost.java131 public void onVideoSizeChanged(int videoWidth, int videoHeight) {
132 mFragment.onVideoSizeChanged(videoWidth, videoHeight);
H A DPlaybackFragment.java1130 * @param videoWidth Intrinsic width of video
1133 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { argument
H A DPlaybackSupportFragment.java1133 * @param videoWidth Intrinsic width of video
1136 protected void onVideoSizeChanged(int videoWidth, int videoHeight) { 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.java2068 int videoWidth = track.getVideoWidth();
2070 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2071 mVideoWidth = videoWidth;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackGlueHost.java92 * @param videoWidth
95 public void onVideoSizeChanged(int videoWidth, int videoHeight) { argument
/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.cpp249 uint32_t videoWidth, videoHeight; local
252 videoWidth = gVideoWidth;
255 videoWidth = gVideoHeight;
258 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
260 outWidth = videoWidth;
261 outHeight = (uint32_t)(videoWidth * displayAspect);
268 offX = (videoWidth - outWidth) / 2;
/frameworks/av/media/libstagefright/codec2/tests/
H A DC2Param_test.cpp1389 uint32_t videoWidth[] = { 12u, C2NumberStreamTuning::output::typeIndex, 100 }; local
1390 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth));
1395 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2);
1398 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2);
1401 p1 = C2Param::From(videoWidth, 3);
1404 p1 = C2Param::From(videoWidth, 0);
2078 uint32_t videoWidth[] local
2105 uint32_t videoWidth[] = { 16u, C2NumbersPortTuning::input::typeIndex, 101, 102 }; local
[all...]
/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/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp327 currentWidth != (uint32_t)params.videoWidth ||
363 if (currentWidth != (uint32_t)params.videoWidth ||
387 params.videoWidth, params.videoHeight,
H A DParameters.cpp117 videoWidth = previewWidth;
121 params.setVideoSize(videoWidth, videoHeight);
1931 newParams.getVideoSize(&validatedParams.videoWidth,
1933 if (validatedParams.videoWidth != videoWidth ||
1938 __FUNCTION__, videoWidth, videoHeight, validatedParams.videoWidth,
1940 validatedParams.videoWidth = videoWidth;
1942 newParams.setVideoSize(videoWidth, videoHeigh
[all...]
H A DParameters.h142 int videoWidth, videoHeight, videoFormat; member in struct:android::camera2::Parameters
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java302 public static int videoWidth(String filePath) throws Exception { method in class:CodecTest
303 Log.v(TAG, "videoWidth - " + filePath);
304 int videoWidth = 0;
328 videoWidth = mMediaPlayer.getVideoWidth();
333 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/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp682 int32_t videoWidth = -1; local
711 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
746 sprintf(tmp, "%d", videoWidth);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp318 result.appendFormat(" Video size: %d x %d\n", p.videoWidth,

Completed in 462 milliseconds