diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-11 23:53:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-11 23:53:53 +0000 |
commit | 7b3c1382bf46615e3faea72b62b6dab83e4142a7 (patch) | |
tree | 0a31847fbc7101c59d4cf309abed68b3fda59d2b /libavformat/wav.c | |
parent | b1d041c15c6b45cde682f4dfd12d15a0709da399 (diff) | |
download | ffmpeg-7b3c1382bf46615e3faea72b62b6dab83e4142a7.tar.gz |
100l (forgoten seeking functions)
Originally committed as revision 3585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r-- | libavformat/wav.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 841e153ceb..0bc3c3408b 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -344,7 +344,7 @@ static int wav_read_close(AVFormatContext *s) } static int wav_read_seek(AVFormatContext *s, - int stream_index, int64_t timestamp) + int stream_index, int64_t timestamp, int flags) { AVStream *st; @@ -359,7 +359,7 @@ static int wav_read_seek(AVFormatContext *s, default: break; } - return pcm_read_seek(s, stream_index, timestamp); + return pcm_read_seek(s, stream_index, timestamp, flags); } |