Searched defs:videoWidth (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java412 int videoWidth,
425 this.videoFrameWidth = videoWidth;
406 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.java53 int audioSampleRate, int videoWidth, int videoHeight, float videoFrameRate,
60 mVideoWidth = videoWidth;
274 * @param videoWidth The width of the video.
276 public final Builder setVideoWidth(int videoWidth) { argument
280 mVideoWidth = videoWidth;
52 TvTrackInfo(int type, String id, String language, int audioChannelCount, int audioSampleRate, int videoWidth, int videoHeight, float videoFrameRate, Bundle extra) argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java294 public static int videoWidth(String filePath) throws Exception { method in class:CodecTest
295 Log.v(TAG, "videoWidth - " + filePath);
296 int videoWidth = 0;
320 videoWidth = mMediaPlayer.getVideoWidth();
325 return videoWidth;
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp524 int32_t videoWidth = -1; local
553 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
585 sprintf(tmp, "%d", videoWidth);
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp245 uint32_t videoWidth, videoHeight; local
248 videoWidth = gVideoWidth;
251 videoWidth = gVideoHeight;
254 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
256 outWidth = videoWidth;
257 outHeight = (uint32_t)(videoWidth * displayAspect);
264 offX = (videoWidth - outWidth) / 2;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.h132 int videoWidth, videoHeight; member in struct:android::camera2::Parameters

Completed in 1212 milliseconds