Commit 06c80bbf authored by michael's avatar michael

Clarify that avformat_seek_file() is not part of the stable API yet.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17061 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a3b4c136
......@@ -911,6 +911,10 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
* @param max_ts largest acceptable timestamp
* @param flags flags
* @returns >=0 on success, error code otherwise
*
* @NOTE this is part of the new seek API which is still under construction
* thus do not use this yet it may change any time, dont expect ABI
* compatibility yet!
*/
int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment