[FFmpeg-cvslog] r13681 - trunk/libavformat/mmf.c

ramiro subversion
Fri Jun 6 23:54:08 CEST 2008


Author: ramiro
Date: Fri Jun  6 23:54:07 2008
New Revision: 13681

Log:
Remove wrappers of pcm_read_seek().
Last commit missed one file.

Modified:
   trunk/libavformat/mmf.c

Modified: trunk/libavformat/mmf.c
==============================================================================
--- trunk/libavformat/mmf.c	(original)
+++ trunk/libavformat/mmf.c	Fri Jun  6 23:54:07 2008
@@ -295,12 +295,6 @@ static int mmf_read_close(AVFormatContex
     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 @@ AVInputFormat mmf_demuxer = {
     mmf_read_header,
     mmf_read_packet,
     mmf_read_close,
-    mmf_read_seek,
+    pcm_read_seek,
 };
 #endif
 #ifdef CONFIG_MMF_MUXER




More information about the ffmpeg-cvslog mailing list