Commit d2ba8eeb authored by ramiro's avatar ramiro

Remove wrappers of pcm_read_seek().

Last commit missed one file.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13681 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 50884287
...@@ -295,12 +295,6 @@ static int mmf_read_close(AVFormatContext *s) ...@@ -295,12 +295,6 @@ static int mmf_read_close(AVFormatContext *s)
return 0; 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 #ifdef CONFIG_MMF_DEMUXER
AVInputFormat mmf_demuxer = { AVInputFormat mmf_demuxer = {
"mmf", "mmf",
...@@ -310,7 +304,7 @@ AVInputFormat mmf_demuxer = { ...@@ -310,7 +304,7 @@ AVInputFormat mmf_demuxer = {
mmf_read_header, mmf_read_header,
mmf_read_packet, mmf_read_packet,
mmf_read_close, mmf_read_close,
mmf_read_seek, pcm_read_seek,
}; };
#endif #endif
#ifdef CONFIG_MMF_MUXER #ifdef CONFIG_MMF_MUXER
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment