ffmpeg中如何取出AVFormatContext::void *priv_data到一个结构体中;
Posted 朱韦刚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ffmpeg中如何取出AVFormatContext::void *priv_data到一个结构体中;相关的知识,希望对你有一定的参考价值。
ffmpeg中如何取出AVFormatContext::void *priv_data到一个结构体中;
其中SRTContext在对应ffmpeg_4.2.3_win32源码中ffmpeg-4.2.3\\libavformat\\libsrt.c的结构体,不同版本应对应;
static void test(AVFormatContext *s)
SRTContext* srtctx = NULL;
srtctx = (SRTContext*) ffio_geturlcontext(s->pb);
SRTContext* ffio_geturlcontext(AVIOContext *s)
AVIODirContext *internal;
if (!s)
return NULL;
internal = (AVIODirContext*)s->opaque;
return (SRTContext*)(((URLContext *)(internal->url_context))->priv_data);
如有错误请指正:
交流请加QQ群:62054820
QQ:379969650.
以上是关于ffmpeg中如何取出AVFormatContext::void *priv_data到一个结构体中;的主要内容,如果未能解决你的问题,请参考以下文章
ffmpeg添加库实战:移植srs-librtmp到ffmpeg