pChPrm->numTemporalLayer = VENC_TEMPORAL_LAYERS_1;
这个是什么含义
typedef enum
{
VENC_TEMPORAL_LAYERS_1 = 1,
/**< Only Base Layer */
VENC_TEMPORAL_LAYERS_2 = 2,
/**< Base Layer + Temporal Layer */
VENC_TEMPORAL_LAYERS_3 = 3,
/**< Base Layer + 2 Temporal Layers */
VENC_TEMPORAL_LAYERS_4 = 4,
/**< Base Layer + 3 Temporal Layers */
VENC_TEMPORAL_LAYERS_MAX = VENC_TEMPORAL_LAYERS_4
/**< Max number of layers supported */
} VENC_CHN_H264_NumTemporalLayer_E;
另外我们希望解码的时候 根据网络情况 有选择的解码部分数据,类似一层一层的解码,不知道跟上面的参数有关没
