HomeSort by relevance Sort by last modified time
    Searched refs:ALIGN_TO_128B (Results 1 - 7 of 7) sorted by null

  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/sec/
SEC_OMX_Macros.h 38 #define ALIGN_TO_128B(x) ((((x) + (1 << 7) - 1) >> 7) << 7)
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/
SEC_OMX_Venc.h 42 #define DEFAULT_VIDEO_INPUT_BUFFER_SIZE ALIGN_TO_8KB(ALIGN_TO_128B(DEFAULT_FRAME_WIDTH) * ALIGN_TO_32B(DEFAULT_FRAME_HEIGHT)) \
43 + ALIGN_TO_8KB(ALIGN_TO_128B(DEFAULT_FRAME_WIDTH) * ALIGN_TO_32B(DEFAULT_FRAME_HEIGHT / 2))
SEC_OMX_Venc.c 762 SEC_OSAL_Log(SEC_LOG_TRACE, "width:%d, height:%d, Ysize:%d", width, height, ALIGN_TO_8KB(ALIGN_TO_128B(width) * ALIGN_TO_32B(height)));
763 SEC_OSAL_Log(SEC_LOG_TRACE, "width:%d, height:%d, Csize:%d", width, height, ALIGN_TO_8KB(ALIGN_TO_128B(width) * ALIGN_TO_32B(height / 2)));
    [all...]
  /device/samsung/crespo/include/
sec_utils.h 231 #define ALIGN_TO_128B(x) ((((x) + (1 << 7) - 1) >> 7) << 7)
303 frame_size = ALIGN_TO_8KB(ALIGN_TO_128B(w) * ALIGN_TO_32B(h))
304 + ALIGN_TO_8KB(ALIGN_TO_128B(w) * ALIGN_TO_32B(h >> 1));
  /device/samsung/crespo/sec_mm/sec_omx/sec_codecs/video/mfc_c110/include/
mfc_interface.h 60 #define ALIGN_TO_128B(x) ((((x) + (1 << 7) - 1) >> 7) << 7)
  /device/samsung/crespo/sec_mm/sec_omx/sec_codecs/video/mfc_c110/enc/src/
SsbSipMfcEncAPI.c 489 aligned_y_size = ALIGN_TO_8KB(ALIGN_TO_128B(pCTX->width) * ALIGN_TO_32B(pCTX->height));
490 aligned_c_size = ALIGN_TO_8KB(ALIGN_TO_128B(pCTX->width) * ALIGN_TO_32B(pCTX->height/2));
  /device/samsung/crespo/libcamera/
SecCamera.cpp 56 #define ALIGN_TO_128B(x) ((((x) + (1 << 7) - 1) >> 7) << 7)
    [all...]

Completed in 327 milliseconds