Searched defs:mVideoWidth (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DVideoViewCaptureActivity.java36 private int mVideoWidth, mVideoHeight; field in class:VideoViewCaptureActivity
44 mVideoWidth = mp.getVideoWidth();
56 mVideoWidth, mVideoHeight,
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h339 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DCameraSourceTimeLapse.h65 int32_t mVideoWidth; member in class:android::CameraSourceTimeLapse
H A DMediaCodec.h339 int32_t mVideoWidth; member in struct:android::MediaCodec
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java41 public static int mVideoWidth = profile.videoFrameWidth; field in class:MediaRecorderStressTestRunner
87 mVideoWidth = Integer.parseInt(videoWidth);
/frameworks/av/media/libmediaplayer2/include/mediaplayer2/
H A Dmediaplayer2.h159 int mVideoWidth; member in class:android::MediaPlayer2
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DNuPlayer2Decoder.h98 int32_t mVideoWidth; member in struct:android::NuPlayer2::Decoder
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h97 int32_t mVideoWidth; member in struct:android::NuPlayer::Decoder
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h107 int32_t mVideoWidth, mVideoHeight; member in struct:android::StagefrightRecorder
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java63 private final int mVideoWidth; field in class:TvTrackInfo
81 mVideoWidth = videoWidth;
96 mVideoWidth = in.readInt();
169 return mVideoWidth;
253 dest.writeInt(mVideoWidth);
281 ? mVideoWidth == obj.mVideoWidth
315 private int mVideoWidth; field in class:TvTrackInfo.Builder
403 mVideoWidth = videoWidth;
494 mAudioSampleRate, mVideoWidth, mVideoHeigh
[all...]
H A DTvInputManager.java1747 private int mVideoWidth; field in class:TvInputManager.Session
1883 mVideoWidth = 0;
2073 if (mVideoWidth != videoWidth || mVideoHeight != videoHeight) {
2074 mVideoWidth = videoWidth;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java91 private int mVideoWidth; field in class:MediaPlayerPerformance
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/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DLocalPlayer.java65 private int mVideoWidth; field in class:LocalPlayer
297 protected int getVideoWidth() { return mVideoWidth; }
368 mVideoWidth = width;
373 mVideoWidth = mVideoHeight = 0;
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DLocalPlayer.java65 private int mVideoWidth; field in class:LocalPlayer
297 protected int getVideoWidth() { return mVideoWidth; }
368 mVideoWidth = width;
373 mVideoWidth = mVideoHeight = 0;
/frameworks/av/include/media/
H A Dmediaplayer.h305 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h305 int mVideoWidth; member in class:android::MediaPlayer
/frameworks/support/leanback/src/main/java/androidx/leanback/media/
H A DPlaybackBaseControlGlue.java128 int mVideoWidth = 0; field in class:PlaybackBaseControlGlue
175 mVideoWidth = width;
239 if (mVideoWidth != 0 && mVideoHeight != 0) {
240 mPlayerCallback.onVideoSizeChanged(mVideoWidth, mVideoHeight);
/frameworks/base/core/java/android/widget/
H A DVideoView.java112 private int mVideoWidth; field in class:VideoView
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 / mVideoHeigh
[all...]
/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DVideoView2Impl.java155 private int mVideoWidth; field in class:VideoView2Impl
260 mVideoWidth = 0;
792 mVideoWidth = 0;
1145 mVideoWidth = mp.getVideoWidth();
1148 Log.d(TAG, "onVideoSizeChanged(): mVideoSize:" + mVideoWidth + "/"
1151 if (mVideoWidth != 0 && mVideoHeight != 0) {
1231 if (videoWidth != mVideoWidth || videoHeight != mVideoHeight) {
1240 mVideoWidth = videoWidth;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
H A DVideoView2ImplBase.java152 private int mVideoWidth; field in class:VideoView2ImplBase
257 mVideoWidth = 0;
979 mVideoWidth = 0;
1279 mVideoWidth = mp.getVideoWidth();
1282 Log.d(TAG, "onVideoSizeChanged(): mVideoSize:" + mVideoWidth + "/"
1285 if (mVideoWidth != 0 && mVideoHeight != 0) {
1380 if (videoWidth != mVideoWidth || videoHeight != mVideoHeight) {
1381 mVideoWidth = videoWidth;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
H A DVideoView2ImplBaseWithMp1.java147 private int mVideoWidth; field in class:VideoView2ImplBaseWithMp1
246 mVideoWidth = 0;
935 mVideoWidth = 0;
1209 mVideoWidth = mp.getVideoWidth();
1212 Log.d(TAG, "onVideoSizeChanged(): mVideoSize:" + mVideoWidth + "/"
1215 if (mVideoWidth != 0 && mVideoHeight != 0) {
1252 if (videoWidth != mVideoWidth || videoHeight != mVideoHeight) {
1253 mVideoWidth = videoWidth;

Completed in 346 milliseconds