diff wav.c @ 558:89bd76208427 libavformat

100l (forgoten seeking functions)
author michael
date Mon, 11 Oct 2004 23:53:53 +0000
parents bc2751b2c189
children d5925f47058d
line wrap: on
line diff
--- a/wav.c	Mon Oct 11 19:42:18 2004 +0000
+++ b/wav.c	Mon Oct 11 23:53:53 2004 +0000
@@ -344,7 +344,7 @@
 }
 
 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 @@
     default:
         break;
     }
-    return pcm_read_seek(s, stream_index, timestamp);
+    return pcm_read_seek(s, stream_index, timestamp, flags);
 }