Revision ff1ec0c3 libavformat/utils.c
libavformat/utils.c | ||
---|---|---|
2579 | 2579 |
if (s->iformat->read_play) |
2580 | 2580 |
return s->iformat->read_play(s); |
2581 | 2581 |
if (s->pb) |
2582 |
return ffio_read_pause(s->pb, 0);
|
|
2582 |
return avio_pause(s->pb, 0);
|
|
2583 | 2583 |
return AVERROR(ENOSYS); |
2584 | 2584 |
} |
2585 | 2585 |
|
... | ... | |
2588 | 2588 |
if (s->iformat->read_pause) |
2589 | 2589 |
return s->iformat->read_pause(s); |
2590 | 2590 |
if (s->pb) |
2591 |
return ffio_read_pause(s->pb, 1);
|
|
2591 |
return avio_pause(s->pb, 1);
|
|
2592 | 2592 |
return AVERROR(ENOSYS); |
2593 | 2593 |
} |
2594 | 2594 |
|
Also available in: Unified diff