HomeSort by relevance Sort by last modified time
    Searched defs:buf_pool (Results 1 - 9 of 9) sorted by null

  /external/libxcam/capi/
xcam_handle.cpp 192 SmartPtr<BufferPool> buf_pool = context->get_input_buffer_pool(); local
193 XCAM_ASSERT (buf_pool.ptr ());
194 SmartPtr<VideoBuffer> video_buf = buf_pool->get_buffer (buf_pool);
  /external/libxcam/tests/
test-pipe-manager.cpp 203 SmartPtr<BufferPool> buf_pool; local
419 buf_pool = new CLVideoBufferPool ();
420 XCAM_ASSERT (buf_pool.ptr ());
421 if (!buf_pool->set_video_info (buf_info) || !buf_pool->reserve (DEFAULT_FPT_BUF_COUNT)) {
451 video_buf = buf_pool->get_buffer (buf_pool);
test-video-stabilization.cpp 67 SmartPtr<BufferPool> buf_pool; local
204 buf_pool = new CLVideoBufferPool ();
205 XCAM_ASSERT (buf_pool.ptr ());
206 buf_pool->set_video_info (input_buf_info);
207 if (!buf_pool->reserve (36)) {
235 input_buf = buf_pool->get_buffer (buf_pool);
test-image-blend.cpp 141 SmartPtr<BufferPool> buf_pool = new DrmBoBufferPool (display); local
142 buf_pool->set_video_info (info);
143 buf_pool->reserve (1);
144 return buf_pool->get_buffer (buf_pool);
test-image-stitching.cpp 166 SmartPtr<BufferPool> buf_pool[XCAM_STITCH_FISHEYE_MAX_NUM]; local
429 buf_pool[i] = new CLVideoBufferPool ();
430 XCAM_ASSERT (buf_pool[i].ptr ());
431 buf_pool[i]->set_video_info (input_buf_info);
432 if (!buf_pool[i]->reserve (6)) {
503 cur_buf = buf_pool[i]->get_buffer (buf_pool[i]);
test-cl-image.cpp 178 SmartPtr<BufferPool> buf_pool; local
500 buf_pool = new CLVideoBufferPool ();
502 buf_pool->set_video_info (input_buf_info);
503 if (!buf_pool->reserve (6)) {
510 input_buf = buf_pool->get_buffer (buf_pool);
544 buf_pool = new CLVideoBufferPool ();
545 XCAM_ASSERT (buf_pool.ptr ());
546 buf_pool->set_video_info (input_buf_info);
547 if (!buf_pool->reserve (6))
    [all...]
  /external/libxcam/wrapper/gstreamer/
gstxcamfilter.h 97 XCam::SmartPtr<XCam::BufferPool> buf_pool; member in struct:_GstXCamFilter
gstxcamfilter.cpp 574 xcamfilter->buf_pool = new CLVideoBufferPool ();
575 XCAM_ASSERT (xcamfilter->buf_pool.ptr ());
597 SmartPtr<BufferPool> buf_pool = xcamfilter->buf_pool; local
598 if (buf_pool.ptr ())
599 buf_pool->stop ();
757 SmartPtr<BufferPool> buf_pool = xcamfilter->buf_pool; local
758 XCAM_ASSERT (buf_pool.ptr ());
759 if (!buf_pool->set_video_info (buf_info) |
891 SmartPtr<BufferPool> buf_pool = xcamfilter->buf_pool; local
    [all...]
  /external/libxcam/modules/soft/
soft_stitcher.cpp 137 SmartPtr<BufferPool> buf_pool; member in struct:XCam::SoftSitcherPriv::FisheyeDewarp
301 fisheye.buf_pool = new SoftVideoBufAllocator (buf_info);
302 XCAM_ASSERT (fisheye.buf_pool.ptr ());
304 ERROR, fisheye.buf_pool->reserve (2), XCAM_RETURN_ERROR_MEM,
461 SmartPtr<VideoBuffer> out_buf = _fisheye[i].buf_pool->get_buffer ();
691 if (_fisheye[i].buf_pool.ptr ()) {
692 _fisheye[i].buf_pool->stop ();

Completed in 211 milliseconds