diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-11-23 18:23:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-11-23 18:23:56 +0000 |
commit | dc56fc38021cec000eda49a5e8ca145af049b89c (patch) | |
tree | fbc2e3a769fc2f38748fa3e21e90868b6e95d60b /libavformat/avformat.h | |
parent | 8a01fc4742f00a4fed8e3c1068085bf001cf086d (diff) | |
download | ffmpeg-dc56fc38021cec000eda49a5e8ca145af049b89c.tar.gz |
int / int64 fix by (Wolfram Gloger <wmglo @@@ dent:med:uni-muenchen:de>)
Originally committed as revision 3704 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 626c0d0d68..d2812b3984 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -583,7 +583,7 @@ void av_set_pts_info(AVStream *s, int pts_wrap_bits, #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes int av_find_default_stream_index(AVFormatContext *s); -int av_index_search_timestamp(AVStream *st, int timestamp, int flags); +int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags); int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int distance, int flags); int av_seek_frame_binary(AVFormatContext *s, int stream_index, int64_t target_ts, int flags); |