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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.idl 32 readonly attribute unsigned long videoHeight;
HTMLVideoElement.h 45 unsigned videoHeight() const;
HTMLVideoElement.cpp 140 unsigned HTMLVideoElement::videoHeight() const
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 69 String videoHeight = (String) icicle.get("video_height");
89 if (videoHeight != null) {
90 mVideoHeight = Integer.parseInt(videoHeight);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 41 private int videoHeight;
142 videoHeight = height;
234 return videoHeight;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 141 M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight,
147 M4OSA_UInt32 videoHeight, M4OSA_Void* outPtr);
VideoEditorTools.h 56 M4OSA_UInt32 videoHeight;
VideoEditorPreviewController.cpp     [all...]
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 314 int videoHeight,
327 this.videoFrameHeight = videoHeight;
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
MediaPlayerWrapper.java 248 int videoHeight = mMediaPlayer.getVideoHeight();
249 if (videoWidth > 0 && videoHeight > 0) {
251 mCallback.onSizeChanged(videoWidth, videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 178 int videoHeight;
189 videoHeight = camcorderProfile.videoFrameHeight;
196 videoHeight = MediaRecorderStressTestRunner.mVideoHeight;
225 Log.v(TAG, "video height : " + videoHeight);
235 mRecorder.setVideoSize(videoWidth, videoHeight);
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 236 uint32_t videoWidth, videoHeight;
240 videoHeight = gVideoHeight;
243 videoHeight = gVideoWidth;
245 if (videoHeight > (uint32_t)(videoWidth * displayAspect)) {
251 outHeight = videoHeight;
252 outWidth = (uint32_t)(videoHeight / displayAspect);
256 offY = (videoHeight - outHeight) / 2;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 114 int videoHeight = highQuality? videoCap.mMaxFrameHeight: videoCap.mMinFrameHeight;
140 Log.v(TAG, "videoHeight : " + videoHeight);
153 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
166 recordSuccess = validateVideo(filename, videoWidth, videoHeight);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 629 int videoHeight = naturalSize().height();
633 if (videoWidth != m_bitmap.width() || videoHeight != m_bitmap.height() || !m_texture.get()) {
637 desc.fHeight = videoHeight;
646 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, videoWidth, videoHeight);
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 498 int32_t videoHeight = -1;
527 CHECK(trackMeta->findInt32(kKeyHeight, &videoHeight));
561 sprintf(tmp, "%d", videoHeight);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
CodecTest.java 246 public static int videoHeight(String filePath) throws Exception {
247 Log.v(TAG, "videoHeight - " + filePath);
248 int videoHeight = 0;
271 videoHeight = mMediaPlayer.getVideoHeight();
277 return videoHeight;
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
video_player.js 235 var aspect = video.videoWidth / video.videoHeight;
237 var newHeight = video.videoHeight + TITLE_HEIGHT;
  /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 69 videoHeight = previewHeight;
72 params.setVideoSize(videoWidth, videoHeight);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 259 public static int videoHeight(String filePath) throws Exception {
260 Log.v(TAG, "videoHeight - " + filePath);
261 int videoHeight = 0;
284 videoHeight = mMediaPlayer.getVideoHeight();
290 return videoHeight;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 330 int videoHeight,
350 onVideoSizeChanged(videoWidth, videoHeight);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
MediaPlayerApiTest.java 307 height = CodecTest.videoHeight(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 696 milliseconds

1 2