changeset 3436:ec4945b71d48 libavformat

Remove wrappers of pcm_read_seek(). Last commit missed one file.
author ramiro
date Fri, 06 Jun 2008 21:54:07 +0000
parents a81155640306
children 82c4cc2aae2a
files mmf.c
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/mmf.c	Fri Jun 06 21:53:03 2008 +0000
+++ b/mmf.c	Fri Jun 06 21:54:07 2008 +0000
@@ -295,12 +295,6 @@
     return 0;
 }
 
-static int mmf_read_seek(AVFormatContext *s,
-                         int stream_index, int64_t timestamp, int flags)
-{
-    return pcm_read_seek(s, stream_index, timestamp, flags);
-}
-
 #ifdef CONFIG_MMF_DEMUXER
 AVInputFormat mmf_demuxer = {
     "mmf",
@@ -310,7 +304,7 @@
     mmf_read_header,
     mmf_read_packet,
     mmf_read_close,
-    mmf_read_seek,
+    pcm_read_seek,
 };
 #endif
 #ifdef CONFIG_MMF_MUXER