HomeSort by relevance Sort by last modified time
    Searched refs:videoWidth (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.idl 31 readonly attribute unsigned long videoWidth;
HTMLVideoElement.h 44 unsigned videoWidth() const;
HTMLVideoElement.cpp 133 unsigned HTMLVideoElement::videoWidth() const
  /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/libvideoeditor/lvpp/
VideoEditorPreviewController.h 141 M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight,
146 M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
VideoEditorTools.h 55 M4OSA_UInt32 videoWidth;
VideoEditorPreviewController.cpp     [all...]
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 313 int videoWidth,
326 this.videoFrameWidth = videoWidth;
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
MediaPlayerWrapper.java 247 int videoWidth = mMediaPlayer.getVideoWidth();
249 if (videoWidth > 0 && videoHeight > 0) {
251 mCallback.onSizeChanged(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);
  /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/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);
  /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/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 497 int32_t videoWidth = -1;
526 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth));
558 sprintf(tmp, "%d", videoWidth);
  /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;
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
video_player.js 235 var aspect = video.videoWidth / video.videoHeight;
236 var newWidth = video.videoWidth;
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.h 129 int32_t videoWidth, int32_t videoHeight,
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h 122 int videoWidth, videoHeight;
Parameters.cpp 68 videoWidth = previewWidth;
72 params.setVideoSize(videoWidth, videoHeight);
    [all...]
  /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;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 329 int videoWidth,
350 onVideoSizeChanged(videoWidth, videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
MediaPlayerApiTest.java 315 width = CodecTest.videoWidth(MediaNames.VIDEO_LARGE_SIZE_3GP);
  /device/lge/mako/camera/
QualcommCameraHardware.cpp     [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp     [all...]

Completed in 1634 milliseconds

1 2