HomeSort by relevance Sort by last modified time
    Searched defs:videoWidth (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.cpp 133 unsigned HTMLVideoElement::videoWidth() const
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.h 55 M4OSA_UInt32 videoWidth;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 68 String videoWidth = (String) icicle.get("video_width");
86 if (videoWidth != null) {
87 mVideoWidth = Integer.parseInt(videoWidth);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 40 private int videoWidth;
141 videoWidth = width;
230 return videoWidth;
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 236 uint32_t videoWidth, videoHeight;
239 videoWidth = gVideoWidth;
242 videoWidth = gVideoHeight;
245 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
247 outWidth = videoWidth;
248 outHeight = (uint32_t)(videoWidth * displayAspect);
255 offX = (videoWidth - outWidth) / 2;
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 497 int32_t videoWidth = -1;
526 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
558 sprintf(tmp, "%d", videoWidth);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 628 int videoWidth = naturalSize().width();
633 if (videoWidth != m_bitmap.width() || videoHeight != m_bitmap.height() || !m_texture.get()) {
636 desc.fWidth = videoWidth;
646 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, videoWidth, videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 113 int videoWidth = highQuality? videoCap.mMaxFrameWidth: videoCap.mMinFrameWidth;
139 Log.v(TAG, "videoWidth : " + videoWidth);
153 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
166 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 177 int videoWidth;
188 videoWidth = camcorderProfile.videoFrameWidth;
195 videoWidth = MediaRecorderStressTestRunner.mVideoWidth;
224 Log.v(TAG, "video width : " + videoWidth);
235 mRecorder.setVideoSize(videoWidth, videoHeight);
VideoEditorStressTest.java 666 final int videoWidth = 1080;
700 videoWidth, mediaItem1.getWidth());
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.java 281 public static int videoWidth(String filePath) throws Exception {
282 Log.v(TAG, "videoWidth - " + filePath);
283 int videoWidth = 0;
307 videoWidth = mMediaPlayer.getVideoWidth();
312 return videoWidth;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h 120 int videoWidth, videoHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 294 public static int videoWidth(String filePath) throws Exception {
295 Log.v(TAG, "videoWidth - " + filePath);
296 int videoWidth = 0;
320 videoWidth = mMediaPlayer.getVideoWidth();
325 return videoWidth;
  /device/lge/mako/camera/QCamera/HAL/core/inc/
QCameraHWI.h 687 int videoWidth, videoHeight;
  /device/lge/mako/camera/
QualcommCameraHardware.h 331 bool initLiveSnapshot(int videowidth, int videoheight);
603 int videoWidth, videoHeight;

Completed in 579 milliseconds