| 2416 | /*******************************************************/ |
| 2417 | |
| 2418 | int 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 | |
| 2427 | int av_read_pause(AVFormatContext *s) |
| 2428 | { |
no test coverage detected