Searched defs:rotation (Results 1 - 25 of 75) sorted by relevance

123

/external/webrtc/webrtc/modules/rtp_rtcp/include/
H A Drtp_cvo.h13 #include "webrtc/common_video/rotation.h"
18 // 12.07.00_60/ts_126114v120700p.pdf Section 7.4.5. The rotation of a frame is
21 inline uint8_t ConvertVideoRotationToCVOByte(VideoRotation rotation) { argument
22 switch (rotation) {
36 inline VideoRotation ConvertCVOByteToVideoRotation(uint8_t rotation) { argument
37 switch (rotation) {
/external/valgrind/memcheck/tests/
H A Dbug287260.c5 signed int rotation : 10; member in struct:__anon29616
13 r.rotation = 45;
14 fprintf (stderr, "%d\n", r.rotation);
/external/webrtc/webrtc/test/
H A Dfake_texture_frame.cc21 VideoRotation rotation) {
24 timestamp, render_time_ms, rotation);
16 CreateFrame(FakeNativeHandle* native_handle, int width, int height, uint32_t timestamp, int64_t render_time_ms, VideoRotation rotation) argument
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
H A DBatchRunConfiguration.java33 public BatchRunConfiguration(String glConfig, String rotation, String surfaceType, argument
36 mRotation = rotation;
45 return String.format("{glformat=%s,rotation=%s,surfacetype=%s,required=%b}",
57 * Get the screen rotation used in this configuration.
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/
H A DSize.java49 * @param rotation Degrees {0, 90, 180, 270} to rotate the size.
52 public static Size getRotatedSize(final Size size, final int rotation) { argument
53 if (rotation % 180 != 0) {
/external/webrtc/webrtc/modules/video_coding/
H A Dencoded_frame.h76 * Get frame rotation
78 VideoRotation rotation() const { return _rotation; } function in class:webrtc::VCMEncodedFrame
124 // Video rotation is only set along with the last packet for each frame
H A Dgeneric_decoder.h30 VideoRotation rotation; member in struct:webrtc::VCMFrameInformation
H A Dgeneric_encoder.h70 void SetRotation(VideoRotation rotation) { _rotation = rotation; } argument
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_to_argb.cc26 // Convert camera sample to ARGB with cropping, rotation and vertical flip.
37 enum RotationMode rotation,
47 // One pass rotation is available for some formats. For the rest, convert
52 LIBYUV_BOOL need_buf = (rotation && format != FOURCC_ARGB) ||
294 crop_width, abs_crop_height, rotation);
32 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
H A Dconvert_to_i420.cc22 // Convert camera sample to I420 with cropping, rotation and vertical flip.
36 enum RotationMode rotation,
46 LIBYUV_BOOL need_buf = (rotation && format != FOURCC_I420 &&
65 // One pass rotation is available for some formats. For the rest, convert
192 crop_width, inv_crop_height, rotation);
204 crop_width, inv_crop_height, rotation);
239 crop_width, inv_crop_height, rotation);
326 crop_width, abs_crop_height, rotation);
28 ConvertToI420(const uint8* sample, size_t sample_size, uint8* y, int y_stride, uint8* u, int u_stride, uint8* v, int v_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/libyuv/files/source/
H A Dconvert_to_argb.cc26 // Convert camera sample to ARGB with cropping, rotation and vertical flip.
42 enum RotationMode rotation,
52 // One pass rotation is available for some formats. For the rest, convert
58 (rotation && format != FOURCC_ARGB) || crop_argb == sample;
105 if (!need_buf && !rotation) {
255 crop_width, abs_crop_height, rotation);
258 } else if (rotation) {
261 inv_crop_height, rotation);
32 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
H A Dconvert_to_i420.cc22 // Convert camera sample to I420 with cropping, rotation and vertical flip.
42 enum RotationMode rotation,
53 (rotation && format != FOURCC_I420 && format != FOURCC_NV12 &&
71 // One pass rotation is available for some formats. For the rest, convert
159 inv_crop_height, rotation);
168 inv_crop_height, rotation);
196 inv_crop_height, rotation);
252 abs_crop_height, rotation);
28 ConvertToI420(const uint8* sample, size_t sample_size, uint8* y, int y_stride, uint8* u, int u_stride, uint8* v, int v_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DInputSystem.java66 // The order of orientation axes changes depending on the rotation of the screen.
69 // space into screen space depending on the rotation of the screen from
120 public void setScreenRotation(int rotation) { argument
121 mScreenRotation = rotation;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDisplay.java25 private int rotation = Surface.ROTATION_0; field in class:ShadowDisplay
61 return rotation;
125 public void setRotation(int rotation) { argument
126 this.rotation = rotation;
/external/skia/example/
H A DSkiaSDLExample.cpp257 int rotation = 0; local
274 canvas->rotate(rotation++);
/external/skqp/example/
H A DSkiaSDLExample.cpp257 int rotation = 0; local
274 canvas->rotate(rotation++);
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
H A DClassifierActivity.java107 public void onPreviewSizeChosen(final Size size, final int rotation) { argument
127 sensorOrientation = rotation - getScreenOrientation();
/external/webrtc/talk/app/webrtc/
H A Dandroidvideocapturer.cc59 int rotation,
61 RTC_DCHECK(rotation == 0 || rotation == 90 || rotation == 180 ||
62 rotation == 270);
67 captured_frame_.rotation = static_cast<webrtc::VideoRotation>(rotation);
91 captured_frame->time_stamp, captured_frame->rotation));
111 apply_rotation_ ? input_frame->rotation :
115 apply_rotation_ ? webrtc::kVideoRotation_0 : input_frame->rotation);
57 UpdateCapturedFrame( const rtc::scoped_refptr<webrtc::VideoFrameBuffer>& buffer, int rotation, int64_t time_stamp_in_ns) argument
223 OnIncomingFrame( const rtc::scoped_refptr<webrtc::VideoFrameBuffer>& buffer, int rotation, int64_t time_stamp) argument
[all...]
/external/webrtc/talk/app/webrtc/java/jni/
H A Dnative_handle_impl.cc42 void RotateMatrix(float a[16], webrtc::VideoRotation rotation) { argument
44 // row in each rotation matrix is needed for proper translation, e.g, to
46 switch (rotation) {
167 webrtc::VideoRotation rotation) {
169 rotation == webrtc::kVideoRotation_0) {
172 int rotated_width = (rotation % 180 == 0) ? dst_widht : dst_height;
173 int rotated_height = (rotation % 180 == 0) ? dst_height : dst_widht;
182 RotateMatrix(buffer->native_handle_.sampling_matrix, rotation);
165 ScaleAndRotate(int dst_widht, int dst_height, webrtc::VideoRotation rotation) argument
/external/webrtc/talk/media/base/
H A Dfakevideocapturer.h128 frame.rotation = rotation_;
166 void SetRotation(webrtc::VideoRotation rotation) { argument
167 rotation_ = rotation;
/external/webrtc/talk/media/webrtc/
H A Dfakewebrtcdeviceinfo.h94 webrtc::VideoRotation& rotation) {
93 GetOrientation(const char* device_id, webrtc::VideoRotation& rotation) argument
/external/webrtc/webrtc/
H A Dvideo_frame.h17 #include "webrtc/common_video/rotation.h"
28 VideoRotation rotation);
65 VideoRotation rotation);
74 VideoRotation rotation);
122 // "pending rotation" or "pending" = a frame that has a VideoRotation > 0.
126 // "apply rotation" = modify a frame from being "pending" to being "not
127 // pending" rotation (a no-op for "unrotated").
129 VideoRotation rotation() const { return rotation_; } function in class:webrtc::VideoFrame
130 void set_rotation(VideoRotation rotation) { argument
131 rotation_ = rotation;
[all...]
/external/deqp/scripts/
H A Dbuild_android_mustpass.py61 rotation = "unspecified", variable
68 rotation = "unspecified", variable
78 rotation = "unspecified", variable
85 rotation = "unspecified", variable
96 rotation = "unspecified", variable
104 rotation = "unspecified", variable
112 rotation = "unspecified", variable
118 rotation = "0", variable
120 filters = [include("gles3-master.txt"), include("gles3-rotation.txt")]),
123 rotation variable
128 rotation = "180", variable
133 rotation = "270", variable
140 rotation = "unspecified", variable
149 rotation = "unspecified", variable
159 rotation = "unspecified", variable
166 rotation = "0", variable
171 rotation = "90", variable
176 rotation = "180", variable
181 rotation = "270", variable
188 rotation = "unspecified", variable
195 rotation = "unspecified", variable
207 rotation = "unspecified", variable
220 rotation = "unspecified", variable
233 rotation = "unspecified", variable
240 rotation = "0", variable
246 rotation = "90", variable
252 rotation = "180", variable
258 rotation = "270", variable
266 rotation = "unspecified", variable
274 rotation = "unspecified", variable
287 rotation = "unspecified", variable
295 rotation = "0", variable
301 rotation = "90", variable
307 rotation = "180", variable
313 rotation = "270", variable
321 rotation = "unspecified", variable
329 rotation = "unspecified", variable
355 rotation = "unspecified", variable
372 rotation = "unspecified", variable
380 rotation = "unspecified", variable
398 rotation = "unspecified", variable
406 rotation = "unspecified", variable
413 rotation = "0", variable
419 rotation = "90", variable
425 rotation = "180", variable
431 rotation = "270", variable
439 rotation = "unspecified", variable
448 rotation = "unspecified", variable
467 rotation = "unspecified", variable
475 rotation = "unspecified", variable
483 rotation = "0", variable
489 rotation = "90", variable
495 rotation = "180", variable
501 rotation = "270", variable
509 rotation = "unspecified", variable
517 rotation = "unspecified", variable
[all...]
/external/opencv/cv/src/
H A Dcvposit.cpp114 CvMatr32f rotation, CvVect32f translation )
135 if( !rotation )
165 float tmp = objectVectors[i] * rotation[6] /*[2][0]*/ +
166 objectVectors[N + i] * rotation[7] /*[2][1]*/ +
167 objectVectors[2 * N + i] * rotation[8] /*[2][2]*/;
189 rotation[3*i+j] /*[i][j]*/ = 0;
192 rotation[3*i+j] /*[i][j]*/ += invMatrix[j * N + k] * imgVectors[i * N + k];
197 inorm = rotation[0] /*[0][0]*/ * rotation[0] /*[0][0]*/ +
198 rotation[
112 icvPOSIT( CvPOSITObject *pObject, CvPoint2D32f *imagePoints, float focalLength, CvTermCriteria criteria, CvMatr32f rotation, CvVect32f translation ) argument
352 cvPOSIT( CvPOSITObject * pObject, CvPoint2D32f * imagePoints, double focalLength, CvTermCriteria criteria, CvMatr32f rotation, CvVect32f translation ) argument
[all...]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
H A DType_Names_Suite.py174 class rotation(aetools.ComponentItem): class in inherits:aetools.ComponentItem
175 """rotation - """
371 rotation._superclassnames = []
372 rotation._privpropdict = {
374 rotation._privelemdict = {
424 'trot' : rotation,

Completed in 825 milliseconds

123