summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-02-08 17:55:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-02-08 17:55:00 +0000
commit998b6f7ca27ab2f8525a36c8f6eb1e8b4b09969c (patch)
tree213b50c1f79bf50bdce60885c2589f23ca99319c /libavformat
parentd04768fa80667929a713ee3a1e97a07f25c7a7d0 (diff)
Clarify that avformat_seek_file() is not part of the stable API yet.
Originally committed as revision 17061 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avformat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index ecb2951391..0dc1d20883 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -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);