Searched refs:raw (Results 1 - 25 of 41) sorted by relevance

12

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
H A Dmem_ops_aligned.h30 #define swap_endian_16(val,raw) do {\
31 val = ((raw>>8) & 0x00ff) \
32 | ((raw<<8) & 0xff00);\
34 #define swap_endian_32(val,raw) do {\
35 val = ((raw>>24) & 0x000000ff) \
36 | ((raw>>8) & 0x0000ff00) \
37 | ((raw<<8) & 0x00ff0000) \
38 | ((raw<<24) & 0xff000000); \
40 #define swap_endian_16_se(val,raw) do {\
41 swap_endian_16(val,raw);\
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
H A Dvp8_multi_resolution_encoder.c179 vpx_image_t raw[NUM_ENCODERS]; local
315 if(!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32))
318 if (raw[0].stride[VPX_PLANE_Y] == raw[0].d_w)
369 frame_avail = read_frame_p(infile, &raw[0]);
377 I420Scale(raw[i-1].planes[VPX_PLANE_Y], raw[i-1].stride[VPX_PLANE_Y],
378 raw[i-1].planes[VPX_PLANE_U], raw[i-1].stride[VPX_PLANE_U],
379 raw[
[all...]
H A Dvp8cx_set_ref.c100 vpx_image_t raw; local
136 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
163 while (vpx_img_read(&raw, infile)) {
167 ref.img = raw;
172 encode_frame(&codec, &raw, frame_count++, writer);
180 vpx_img_free(&raw);
H A Dsimple_encoder.c25 // the raw compressed data.
80 // for this frame. We write a IVF frame header, followed by the raw data.
154 vpx_image_t raw; local
201 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
233 while (vpx_img_read(&raw, infile)) {
237 encode_frame(&codec, &raw, frame_count++, flags, writer);
245 vpx_img_free(&raw);
H A Dtwopass_encoder.c38 // for this frame. We write a IVF frame header, followed by the raw data.
49 // raw image should be destroyed at the end as usual.
127 vpx_image_t raw; local
162 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
199 while (vpx_img_read(&raw, infile)) {
203 get_frame_stats(&codec, &raw, frame_count, 1, 0, VPX_DL_BEST_QUALITY,
206 encode_frame(&codec, &raw, frame_count, 1, 0, VPX_DL_BEST_QUALITY,
224 vpx_img_free(&raw);
H A Dset_maps.c159 vpx_image_t raw = {0}; local
189 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
218 while (vpx_img_read(&raw, infile)) {
229 encode_frame(&codec, &raw, frame_count, writer);
236 vpx_img_free(&raw);
H A Dvp9_spatial_scalable_encoder.c292 vpx_image_t raw; local
305 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32))
336 vpx_img_read(&raw, infile);
340 if (frame_cnt >= app_input.frames_to_code || !vpx_img_read(&raw, infile)) {
346 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
383 vpx_img_free(&raw);
H A Dvpx_temporal_scalable_patterns.c436 vpx_image_t raw; local
486 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, width, height, 32)) {
608 frame_avail = vpx_img_read(&raw, infile);
612 if (vpx_codec_encode(&codec, frame_avail? &raw : NULL, pts, 1, flags,
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
H A Ddatalogger_outputs.c46 * @param[out] values raw angular velocity in LSB.
54 memcpy(values, &pg->raw, sizeof(short) * 3);
61 * @param[out] values raw angular velocity in dps.
68 long raw[3]; local
71 raw[0] = (long) pg->raw[0] * (1L << 16);
72 raw[1] = (long) pg->raw[1] * (1L << 16);
73 raw[2] = (long) pg->raw[
[all...]
H A Dmain.c411 short raw[3]; local
412 inv_get_sensor_type_gyro_raw_short(raw, NULL);
413 PRINT_3ELM_ARRAY_INT(6, raw);
433 short raw[3]; local
434 inv_get_sensor_type_accel_raw_short(raw, NULL);
435 PRINT_3ELM_ARRAY_INT(6, raw);
444 short raw[3]; local
445 inv_get_sensor_type_compass_raw_short(raw, NULL);
446 PRINT_3ELM_ARRAY_INT(6, raw);
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
H A Dinv_sysfs_utils.c96 * inv_read_raw() - Read raw data.
254 short raw[3]; local
256 count = inv_read_raw(names, (long*)raw, timestamp);
258 data[0] = (long)(raw[0] * (65536.f / scale));
259 data[1] = (long)(raw[1] * (65536.f / scale));
260 data[2] = (long)(raw[2] * (65536.f / scale));
275 short raw; local
284 count += inv_read_temperature_raw(names, &raw, timestamp);
285 data[0] = (long)((35 + ((float)(raw - offset) / scale)) * 65536.f);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
H A Dinv_sysfs_utils.c90 * inv_read_raw() - Read raw data.
248 short raw[3]; local
250 count = inv_read_raw(names, (long*)raw, timestamp);
252 data[0] = (long)(raw[0] * (65536.f / scale));
253 data[1] = (long)(raw[1] * (65536.f / scale));
254 data[2] = (long)(raw[2] * (65536.f / scale));
269 short raw; local
278 count += inv_read_temperature_raw(names, &raw, timestamp);
279 data[0] = (long)((35 + ((float)(raw - offset) / scale)) * 65536.f);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Ddata_builder.h39 /** Set if raw data exists */
83 /** The raw data in raw data units in the mounting frame */
84 short raw[3]; member in struct:inv_single_sensor_t
107 long raw[4]; member in struct:inv_quat_sensor_t
119 long raw[3]; member in struct:inv_soft_iron_t
302 void inv_get_raw_compass(short *raw);
H A Ddata_builder.c85 /** Gets last value of raw compass data.
86 * @param[out] raw Raw compass data in mounting frame in hardware units. Length 3.
88 void inv_get_raw_compass(short *raw) argument
90 memcpy(raw, sensors.compass.raw, sizeof(sensors.compass.raw));
480 /** Takes raw data stored in the sensor, removes bias, and converts it to
481 * calibrated data in the body frame. Also store raw data for body frame.
490 // Convert raw to calibrated
491 raw32[0] = (long)sensor->raw[
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_encoder.c281 pkt->data.raw.buf != dst_buf &&
282 pkt->data.raw.sz + priv->enc.cx_data_pad_before +
286 memcpy(dst_buf + priv->enc.cx_data_pad_before, pkt->data.raw.buf,
287 pkt->data.raw.sz);
289 modified_pkt->data.raw.buf = dst_buf;
290 modified_pkt->data.raw.sz += priv->enc.cx_data_pad_before +
295 if (dst_buf == pkt->data.raw.buf) {
296 priv->enc.cx_data_dst_buf.buf = dst_buf + pkt->data.raw.sz;
297 priv->enc.cx_data_dst_buf.sz -= pkt->data.raw.sz;
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Ddata_builder.h39 /** Set if raw data exists */
85 /** The raw data in raw data units in the mounting frame */
86 short raw[3]; member in struct:inv_single_sensor_t
109 long raw[4]; member in struct:inv_quat_sensor_t
122 long raw[3]; member in struct:inv_soft_iron_t
306 void inv_get_raw_compass(short *raw);
H A Ddata_builder.c86 /** Gets last value of raw compass data.
87 * @param[out] raw Raw compass data in mounting frame in hardware units. Length 3.
89 void inv_get_raw_compass(short *raw) argument
91 memcpy(raw, sensors.compass.raw, sizeof(sensors.compass.raw));
330 /** Returns timestame based upon a raw sensor, and returns if that sample has a new piece of data.
368 * It does this by finding a raw sensor that has the closest sample rate that is at least as
369 * often desired. It also returns if that raw sensor has a new piece of data.
371 * @return Returns 1, if the raw senso
[all...]
/hardware/libhardware/include/hardware/
H A Dfingerprint.h85 uint64_t raw; member in union:fingerprint_msg::__anon1204
H A Daudio_effect.h781 void* raw; // raw pointer to start of buffer member in union:audio_buffer_s::__anon1073
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/
H A Ddata_builder.h40 /* Set if raw data exists */
75 /** The raw data in raw data units in the mounting frame */
76 short raw[3]; member in struct:inv_single_sensor_t
98 long raw[4]; member in struct:inv_quat_sensor_t
H A Ddata_builder.c276 /** Returns timestame based upon a raw sensor, and returns if that sample has a new piece of data.
314 * It does this by finding a raw sensor that has the closest sample rate that is at least as
315 * often desired. It also returns if that raw sensor has a new piece of data.
317 * @return Returns 1, if the raw sensor being attached has new data, 0 otherwise.
531 /** Takes raw data stored in the sensor, removes bias, and converts it to
532 * calibrated data in the body frame. Also store raw data for body frame.
541 // Convert raw to calibrated
542 raw32[0] = (long)sensor->raw[0] << 15;
543 raw32[1] = (long)sensor->raw[1] << 15;
544 raw32[2] = (long)sensor->raw[
[all...]
/hardware/samsung_slsi/exynos5/include/
H A Dmedia.h87 __u8 raw[184]; member in union:media_entity_desc::__anon2715
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
H A Dmedia.h93 __u8 raw[184]; member in union:media_entity_desc::__anon3113
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dvpx_codec.h210 void *raw; member in union:vpx_codec_ctx::__anon662
H A Dvpx_encoder.h193 struct vpx_fixed_buf raw; /**< data for arbitrary packets */ member in union:vpx_codec_cx_pkt::__anon663
196 * interface without having to manage storage for raw packets,

Completed in 440 milliseconds

12