OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:videoHeight
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
MediaResourceGetter.java
118
String
videoHeight
= retriever.extractMetadata(
120
if (duration == null || videoWidth == null ||
videoHeight
== null) {
125
height = Integer.parseInt(
videoHeight
);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.cpp
138
unsigned HTMLVideoElement::
videoHeight
() const
/frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.h
56
M4OSA_UInt32
videoHeight
;
/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/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/av/media/libstagefright/
StagefrightMetadataRetriever.cpp
498
int32_t
videoHeight
= -1;
527
CHECK(trackMeta->findInt32(kKeyHeight, &
videoHeight
));
561
sprintf(tmp, "%d",
videoHeight
);
/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
);
/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
);
VideoEditorStressTest.java
665
final int
videoHeight
= MediaProperties.HEIGHT_720;
698
videoHeight
, mediaItem1.getHeight());
[
all
...]
/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
;
/frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h
121
int videoWidth,
videoHeight
;
/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
;
/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 3004 milliseconds