mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
avio: deprecate av_url_read_seek
It's not used anywhere internally. Salvage its documentation for ffio_read_seek.
This commit is contained in:
@ -395,7 +395,6 @@ int av_url_read_pause(URLContext *h, int pause)
|
||||
return AVERROR(ENOSYS);
|
||||
return h->prot->url_read_pause(h, pause);
|
||||
}
|
||||
#endif
|
||||
|
||||
int64_t av_url_read_seek(URLContext *h,
|
||||
int stream_index, int64_t timestamp, int flags)
|
||||
@ -404,3 +403,4 @@ int64_t av_url_read_seek(URLContext *h,
|
||||
return AVERROR(ENOSYS);
|
||||
return h->prot->url_read_seek(h, stream_index, timestamp, flags);
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user