ffmpeg数据结构-URLContext

来源:互联网 发布:网络道德规范的主体是 编辑:程序博客网 时间:2024/06/06 03:20
typedef struct URLContext {    const AVClass *av_class;    /**< information for av_log(). Set by url_open(). */    struct URLProtocol *prot;    void *priv_data;    char *filename;             /**< specified URL */    int flags;    int max_packet_size;         /**< if non zero, the stream is packetized with this max packet size */    int is_streamed;            /**< true if streamed (no seek possible), default = false */    int is_connected;    AVIOInterruptCB interrupt_callback;    int64_t rw_timeout;         /**< maximum time to wait for (network) read/write operation completion, in mcs */} URLContext;

0 0
原创粉丝点击