Commit 50884287 authored by ramiro's avatar ramiro

Remove wrappers of pcm_read_seek().

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13680 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5bb9f609
......@@ -433,12 +433,6 @@ static int aiff_read_packet(AVFormatContext *s,
return 0;
}
static int aiff_read_seek(AVFormatContext *s,
int stream_index, int64_t timestamp, int flags)
{
return pcm_read_seek(s, stream_index, timestamp, flags);
}
#ifdef CONFIG_AIFF_DEMUXER
AVInputFormat aiff_demuxer = {
"aiff",
......@@ -448,7 +442,7 @@ AVInputFormat aiff_demuxer = {
aiff_read_header,
aiff_read_packet,
NULL,
aiff_read_seek,
pcm_read_seek,
.codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
};
#endif
......
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