AG903ライブラリリファレンス
内容インデックスホーム
Body Source
本文ソース
1: int32_t AG903_PgpMgrSetParamInputHSyncDelay(AG903_PgpMgrPipelineHandle *handle, uint32_t h_delay) 2: { 3: 4: if ((handle == NULL) || (handle->id != AG903_PGP_MGR_PIPELINE_HANDLE_ID)) { 5: return -AG903_EINVAL; 6: } 7: 8: 9: if (h_delay > AG903_PGP_MGR_MAX_INPUT_HSYNC_DELAY) { 10: return -AG903_EINVAL; 11: } 12: 13: 14: if (handle->is_assign == true) { 15: return -AG903_EBUSY; 16: } 17: 18: 19: handle->input_hsync_delay = h_delay; 20: handle->is_dirty = true; 21: return AG903_ENONE; 22: }
Copyright (c) 2017-2025 Axell Corporation. All rights reserved.