summaryrefslogtreecommitdiff
path: root/libavformat/mmf.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-06-06 21:54:07 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-06-06 21:54:07 +0000
commit15d856e8d2757644b2dcb82dddcd43d68c281c40 (patch)
tree71866c40c93cf51fccd297de0143b6a2dbc1b1d0 /libavformat/mmf.c
parent5256e42c0b8e8e444b80497a4a67193bc61cd710 (diff)
Remove wrappers of pcm_read_seek().
Last commit missed one file. Originally committed as revision 13681 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r--libavformat/mmf.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c
index df9f299219..31160a91ec 100644
--- a/libavformat/mmf.c
+++ b/libavformat/mmf.c
@@ -295,12 +295,6 @@ static int mmf_read_close(AVFormatContext *s)
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