AG903ライブラリリファレンス
内容インデックスホーム
前へ上へ次へ
AG903_PgpMgrEnableConfigOutputFrameInfo 関数

フレーム付加情報出力の有効/無効設定

Syntax
C++
int32_t AG903_PgpMgrEnableConfigOutputFrameInfo(AG903_PgpMgrPipelineHandle * handle, _Bool enable);
引数 
説明 
AG903_PgpMgrPipelineHandle * handle 
[in] パイプラインハンドルを指定します。 
_Bool enable 
[in] フレーム付加情報出力の有効無効フラグを指定します。 

設定結果

返値の詳細 
説明 
正常終了 
-AG903_EINVAL 
handleに不正な値が指定された場合 

パイプラインのフレーム付加情報出力の有効/無効を設定します。

1: int32_t AG903_PgpMgrEnableConfigOutputFrameInfo(AG903_PgpMgrPipelineHandle *handle, _Bool enable) 2: { 3: 4: if ((handle == NULL) || (handle->id != AG903_PGP_MGR_PIPELINE_HANDLE_ID)) { 5: return -AG903_EINVAL; 6: } 7: 8: 9: handle->output_fai_enable = enable; 10: handle->is_config_dirty[AG903_PGP_MGR_CONFIG_OUTPUT_CTRL] = true; 11: handle->is_dirty = true; 12: return AG903_ENONE; 13: }
Copyright (c) 2017-2025 Axell Corporation. All rights reserved.