Shot Table
The following code block shows the data structure for the shot table structure.
            
        typedef struct _ST_SHOT_TBL {
    STF_U8 u8TblCnt;
    ST_SHOT_INFO stShot[PIPELINE_IMG_BUF_MAX];
} ST_SHOT_TBL, *PST_SHOT_TBL;
The following table describes the fields in the above code block. 
    | Field | Description | 
|---|---|
| u8TblCnt | Indicate how many shots are included in this table | 
| stShot | Shot table | 
