HomeSort by relevance Sort by last modified time
    Searched defs:mVideoWidth (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/av/media/libstagefright/include/media/stagefright/
CameraSourceTimeLapse.h 65 int32_t mVideoWidth;
MediaCodec.h 330 int32_t mVideoWidth;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
VideoViewCaptureActivity.java 36 private int mVideoWidth, mVideoHeight;
44 mVideoWidth = mp.getVideoWidth();
56 mVideoWidth, mVideoHeight,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
PlayVideoActivity.java 70 private int mVideoWidth;
171 mVideoWidth = width;
190 mHolder.setFixedSize(mVideoWidth, mVideoHeight);
194 float aspectRatio = ((float) mVideoWidth) / mVideoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 41 public static int mVideoWidth = profile.videoFrameWidth;
87 mVideoWidth = Integer.parseInt(videoWidth);
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.h 55 int32_t mVideoWidth;
  /packages/apps/Camera2/src/com/android/camera/data/
Metadata.java 34 private int mVideoWidth = -1;
64 return mVideoWidth;
68 mVideoWidth = videoWidth;
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.h 101 int32_t mVideoWidth, mVideoHeight;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 97 int32_t mVideoWidth;
  /frameworks/base/media/java/android/media/tv/
TvTrackInfo.java 63 private final int mVideoWidth;
81 mVideoWidth = videoWidth;
96 mVideoWidth = in.readInt();
169 return mVideoWidth;
253 dest.writeInt(mVideoWidth);
281 ? mVideoWidth == obj.mVideoWidth
315 private int mVideoWidth;
403 mVideoWidth = videoWidth;
494 mAudioSampleRate, mVideoWidth, mVideoHeight, mVideoFrameRate
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Video.java 40 private int mVideoWidth;
154 mVideoWidth = width;
208 mVideoWidth = 0;
216 holder.setFixedSize(mVideoWidth, mVideoHeight);
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ChannelInfo.java 197 private int mVideoWidth = 1920; // Width for HD video.
218 mVideoWidth = other.videoWidth;
248 mVideoWidth = videoWidth;
309 mVideoWidth, mVideoHeight, mVideoPixelAspectRatio, mAudioChannel,
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 70 private int mVideoWidth;
93 mVideoWidth = profile.videoFrameWidth;
428 Log.v(TAG, "videoWidth : " + mVideoWidth);
439 mRecorder.setVideoSize(mVideoWidth, mVideoHeight);
  /frameworks/av/media/libmedia/include/media/
mediaplayer.h 306 int mVideoWidth;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
PlaybackBaseControlGlue.java 127 int mVideoWidth = 0;
174 mVideoWidth = width;
238 if (mVideoWidth != 0 && mVideoHeight != 0) {
239 mPlayerCallback.onVideoSizeChanged(mVideoWidth, mVideoHeight);
  /packages/apps/Messaging/src/com/android/messaging/ui/
VideoThumbnailView.java 65 private int mVideoWidth;
85 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
102 mVideoWidth = mediaPlayer.getVideoWidth();
203 return mVideoWidth != ImageRequest.UNSPECIFIED_SIZE &&
227 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
235 mVideoWidth = part.getWidth();
248 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
263 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
309 desiredWidth = mVideoWidth;
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
LocalPlayer.java 67 private int mVideoWidth;
292 protected int getVideoWidth() { return mVideoWidth; }
355 mVideoWidth = width;
360 mVideoWidth = mVideoHeight = 0;
  /frameworks/base/core/java/android/widget/
VideoView.java 112 private int mVideoWidth;
151 mVideoWidth = 0;
174 int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
176 if (mVideoWidth > 0 && mVideoHeight > 0) {
189 if ( mVideoWidth * height < width * mVideoHeight ) {
191 width = height * mVideoWidth / mVideoHeight;
192 } else if ( mVideoWidth * height > width * mVideoHeight ) {
194 height = width * mVideoHeight / mVideoWidth;
199 height = width * mVideoHeight / mVideoWidth;
207 width = height * mVideoWidth / mVideoHeight
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 91 private int mVideoWidth;
110 mVideoWidth = mCamcorderProfile.videoFrameWidth;
112 Log.v(TAG, "height = " + mVideoHeight + " width= " + mVideoWidth);
460 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
481 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
503 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 64 private int mVideoWidth;
296 protected int getVideoWidth() { return mVideoWidth; }
367 mVideoWidth = width;
372 mVideoWidth = mVideoHeight = 0;
  /packages/apps/TV/src/com/android/tv/data/
Program.java 169 program.mVideoWidth = in.readInt();
211 private int mVideoWidth;
314 return mVideoWidth;
397 mTitle, mSeriesId, mEpisodeTitle, mDescription, mLongDescription, mVideoWidth,
419 && mVideoWidth == program.mVideoWidth
450 .append(", videoWidth=").append(mVideoWidth)
540 mVideoWidth = other.mVideoWidth;
724 mProgram.mVideoWidth = width
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/data/
RecordedProgram.java 150 if (recordedProgram.mVideoWidth == 0) {
153 values.put(RecordedPrograms.COLUMN_VIDEO_WIDTH, recordedProgram.mVideoWidth);
204 private int mVideoWidth;
318 mVideoWidth = videoWidth;
420 mLongDescription, mVideoWidth, mVideoHeight, mAudioLanguage, mContentRatings,
493 private final int mVideoWidth;
536 mVideoWidth = videoWidth;
734 return mVideoWidth;
757 Objects.equals(mVideoWidth, that.mVideoWidth) &
    [all...]
  /packages/apps/TV/src/com/android/tv/tuner/tvinput/
TunerRecordingSessionWorker.java 468 private final int mVideoWidth;
506 mVideoWidth = cursor.getInt(index++);
526 mVideoWidth = 0;
555 values.put(PROJECTION[index++], mVideoWidth);

Completed in 725 milliseconds

1 2