Searched defs:info (Results 1 - 25 of 134) sorted by relevance

123456

/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderHost.cpp77 const VideoFormatInfo *info = p->getFormatInfo(); local
78 if (info && info->mimeType) {
79 ITRACE("Deleting decoder for %s", info->mimeType);
/hardware/libhardware/tests/camera3/
H A Dcamera3tests.cpp32 camera_info info; local
33 ASSERT_EQ(0, cam_module()->get_camera_info(i, &info))
34 << "Can't get camera info for" << i;
39 info.static_camera_characteristics),
47 info.static_camera_characteristics),
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
H A Dperf_print.h31 char *info; /* PERF instance information text */ member in struct:PERF_PRINT_Private
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
H A Dsimple_decoder.c106 const VpxVideoInfo *info = NULL; local
120 info = vpx_video_reader_get_info(reader);
122 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
151 info->frame_width, info->frame_height, argv[2]);
H A Dpostproc.c69 const VpxVideoInfo *info = NULL; local
83 info = vpx_video_reader_get_info(reader);
85 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
134 info->frame_width, info->frame_height, argv[2]);
H A Ddecode_to_md5.c86 const VpxVideoInfo *info = NULL; local
101 info = vpx_video_reader_get_info(reader);
103 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
H A Ddecode_with_drops.c81 const VpxVideoInfo *info = NULL; local
105 info = vpx_video_reader_get_info(reader);
107 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
148 info->frame_width, info->frame_height, argv[2]);
H A Dvp8cx_set_ref.c102 VpxVideoInfo info = {0}; local
123 info.codec_fourcc = encoder->fourcc;
124 info.frame_width = strtol(argv[1], NULL, 0);
125 info.frame_height = strtol(argv[2], NULL, 0);
126 info.time_base.numerator = 1;
127 info.time_base.denominator = fps;
129 if (info.frame_width <= 0 ||
130 info.frame_height <= 0 ||
131 (info.frame_width % 2) != 0 ||
132 (info
[all...]
H A Dset_maps.c161 VpxVideoInfo info = {0}; local
176 info.codec_fourcc = encoder->fourcc;
177 info.frame_width = strtol(argv[2], NULL, 0);
178 info.frame_height = strtol(argv[3], NULL, 0);
179 info.time_base.numerator = 1;
180 info.time_base.denominator = fps;
182 if (info.frame_width <= 0 ||
183 info.frame_height <= 0 ||
184 (info.frame_width % 2) != 0 ||
185 (info
[all...]
H A Dsimple_encoder.c156 VpxVideoInfo info = {0}; local
188 info.codec_fourcc = encoder->fourcc;
189 info.frame_width = strtol(width_arg, NULL, 0);
190 info.frame_height = strtol(height_arg, NULL, 0);
191 info.time_base.numerator = 1;
192 info.time_base.denominator = fps;
194 if (info.frame_width <= 0 ||
195 info.frame_height <= 0 ||
196 (info.frame_width % 2) != 0 ||
197 (info
[all...]
H A Dtwopass_encoder.c130 VpxVideoInfo info = {0}; local
149 info.codec_fourcc = encoder->fourcc;
150 info.time_base.numerator = 1;
151 info.time_base.denominator = fps;
152 info.frame_width = strtol(width_arg, NULL, 0);
153 info.frame_height = strtol(height_arg, NULL, 0);
155 if (info.frame_width <= 0 ||
156 info.frame_height <= 0 ||
157 (info.frame_width % 2) != 0 ||
158 (info
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvideo_reader.c22 VpxVideoInfo info; member in struct:VpxVideoReaderStruct
50 reader->info.codec_fourcc = mem_get_le32(header + 8);
51 reader->info.frame_width = mem_get_le16(header + 12);
52 reader->info.frame_height = mem_get_le16(header + 14);
53 reader->info.time_base.numerator = mem_get_le32(header + 16);
54 reader->info.time_base.denominator = mem_get_le32(header + 20);
81 return &reader->info;
H A Dvideo_writer.c18 VpxVideoInfo info; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info, argument
26 cfg.g_w = info->frame_width;
27 cfg.g_h = info->frame_height;
28 cfg.g_timebase.num = info->time_base.numerator;
29 cfg.g_timebase.den = info->time_base.denominator;
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
36 const VpxVideoInfo *info) {
48 writer->info = *info;
34 vpx_video_writer_open(const char *filename, VpxContainer container, const VpxVideoInfo *info) argument
[all...]
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
H A Dcommon.cpp30 wifi_handle getWifiHandle(hal_info *info) argument
32 return (wifi_handle)info;
35 wifi_interface_handle getIfaceHandle(interface_info *info) argument
37 return (wifi_interface_handle)info;
42 hal_info *info = (hal_info *)handle; local
45 pthread_mutex_lock(&info->cb_lock);
49 if (info->num_event_cb < info->alloc_event_cb) {
50 info->event_cb[info
68 hal_info *info = (hal_info *)handle; local
93 hal_info *info = (hal_info *)handle; local
119 hal_info *info = (hal_info *)handle; local
143 hal_info *info = (hal_info *)handle; local
162 hal_info *info = (hal_info *)handle; local
183 hal_info *info = (hal_info *)handle; local
199 hal_info *info = (hal_info *)handle; local
[all...]
/hardware/libhardware/tests/camera2/
H A DCameraModuleFixture.h49 const CameraMetadata& staticInfo = mDevice->info();
88 struct camera_info info; local
89 ASSERT_EQ(OK, mModule->get_camera_info(cameraID, &info));
91 ASSERT_GE((int)info.device_version, CAMERA_DEVICE_API_VERSION_2_0) <<
93 info.device_version;
94 switch(info.device_version) {
107 info.device_version;
117 camera_info info; local
119 res = mModule->get_camera_info(cameraId, &info);
122 return info
[all...]
H A DCameraModuleTests.cpp113 struct camera_info info; local
114 ASSERT_EQ(OK, mModule->get_camera_info(i, &info));
125 struct camera_info info; local
126 EXPECT_NE(OK, mModule->get_camera_info(idx[i], &info));
127 EXPECT_EQ(-ENODEV, mModule->get_camera_info(idx[i], &info))
/hardware/qcom/display/msm8084/libgralloc/
H A Dfb_priv.h47 struct fb_var_screeninfo info; member in struct:private_module_t
/hardware/qcom/display/msm8226/libgralloc/
H A Dfb_priv.h47 struct fb_var_screeninfo info; member in struct:private_module_t
/hardware/qcom/display/msm8960/libgralloc/
H A Dfb_priv.h47 struct fb_var_screeninfo info; member in struct:private_module_t
/hardware/qcom/display/msm8974/libgralloc/
H A Dfb_priv.h47 struct fb_var_screeninfo info; member in struct:private_module_t
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dcommon.cpp46 wifi_handle getWifiHandle(hal_info *info) argument
48 return (wifi_handle)info;
51 wifi_interface_handle getIfaceHandle(interface_info *info) argument
53 return (wifi_interface_handle)info;
58 hal_info *info = (hal_info *)handle; local
62 if (info->num_event_cb < info->alloc_event_cb) {
63 info->event_cb[info->num_event_cb].nl_cmd = cmd;
64 info
79 hal_info *info = (hal_info *)handle; local
110 hal_info *info = (hal_info *)handle; local
129 hal_info *info = (hal_info *)handle; local
149 hal_info *info = (hal_info *)handle; local
166 hal_info *info = (hal_info *)handle; local
185 hal_info *info = (hal_info *)handle; local
[all...]
/hardware/samsung_slsi/exynos5/include/
H A Dexynos_v4l2.h153 struct media_entity_desc info; member in struct:media_entity
/hardware/intel/common/utils/ISV/base/
H A Disv_bufmanager.cpp76 ufo_buffer_details_t info; local
78 memset(&info, 0, sizeof(ufo_buffer_details_t));
79 err = mpGralloc->perform(mpGralloc, INTEL_UFO_GRALLOC_MODULE_PERFORM_GET_BO_INFO, mGrallocHandle, &info);
82 ALOGE("%s: can't get graphic buffer info", __func__);
84 mWidth = info.width;
85 mHeight = info.height;
86 mStride = info.pitch;
87 mColorFormat = info.format;
/hardware/libhardware/modules/camera/
H A DCameraHAL.cpp71 int CameraHAL::getCameraInfo(int id, struct camera_info* info) argument
73 ALOGV("%s: camera id %d: info=%p", __func__, id, info);
79 return mCameras[id]->getInfo(info);
117 static int get_camera_info(int id, struct camera_info* info) argument
119 return gCameraHAL.getCameraInfo(id, info);
/hardware/libhardware/modules/gralloc/
H A Dgralloc_priv.h49 struct fb_var_screeninfo info; member in struct:private_module_t

Completed in 888 milliseconds

123456