homerHEVC代码阅读(13)——基础结构之encoder_in_out_t

encoder_in_out_t表示编码器的输入输出对象
struct encoder_in_out_t
{
    // 数据流
    stream_t	stream;
    // 应该表示有效帧的编号
    uint64_t	pts;
    // 帧类型
    uint32_t	image_type;//HOMER_IMG_TYPES - this field allows to force the type of an image whenever is needed. otherwise use IMAGE_AUTO
    // 用户数据
    int8_t		user_data;
    // 用户数据的大小
    uint32_t	user_data_size;
};


你可能感兴趣的:(h.265,视频编码,HEVC)