OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:video_width
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java
68
String
video_width
= (String) icicle.get("
video_width
");
local
86
if (
video_width
!= null) {
87
mVideoWidth = Integer.parseInt(
video_width
);
/cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java
43
private static final int
VIDEO_WIDTH
= 176;
161
mMediaRecorder.setVideoSize(
VIDEO_WIDTH
, VIDEO_HEIGHT);
186
mMediaRecorder.setVideoSize(
VIDEO_WIDTH
, VIDEO_HEIGHT);
278
mMediaRecorder.setVideoSize(
VIDEO_WIDTH
, VIDEO_HEIGHT);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java
322
int
video_width
= MediaRecorderStressTestRunner.mVideoWidth;
local
352
Log.v(TAG, "
video_width
: " +
video_width
);
363
mRecorder.setVideoSize(
video_width
, video_height);
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
VideoDumpView.java
463
int
video_width
= mMediaPlayer.getVideoWidth();
local
465
Log.d(TAG, "Video size: " +
video_width
468
// TODO: adjust
video_width
and video_height with the surface size.
469
GLES20.glViewport(0, 0,
video_width
, video_height);
471
mWidth = Math.min(VideoDumpConfig.MAX_DUMP_WIDTH,
video_width
);
473
mStartX =
video_width
/ mWidth / 2 * mWidth;
/frameworks/base/media/java/android/media/
Metadata.java
190
public static final int
VIDEO_WIDTH
= 29; // Integer
Completed in 3007 milliseconds