MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / av_read_play

Function av_read_play

libavformat/utils.c:2418–2425  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2416/*******************************************************/
2417
2418int av_read_play(AVFormatContext *s)
2419{
2420 if (s->iformat->read_play)
2421 return s->iformat->read_play(s);
2422 if (s->pb)
2423 return av_url_read_fpause(s->pb, 0);
2424 return AVERROR(ENOSYS);
2425}
2426
2427int av_read_pause(AVFormatContext *s)
2428{

Callers 1

decode_threadFunction · 0.85

Calls 1

av_url_read_fpauseFunction · 0.85

Tested by

no test coverage detected