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

Function av_read_pause

libavformat/utils.c:2427–2434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2425}
2426
2427int av_read_pause(AVFormatContext *s)
2428{
2429 if (s->iformat->read_pause)
2430 return s->iformat->read_pause(s);
2431 if (s->pb)
2432 return av_url_read_fpause(s->pb, 1);
2433 return AVERROR(ENOSYS);
2434}
2435
2436void av_close_input_stream(AVFormatContext *s)
2437{

Callers 1

decode_threadFunction · 0.85

Calls 1

av_url_read_fpauseFunction · 0.85

Tested by

no test coverage detected