summaryrefslogtreecommitdiff
path: root/libavformat/aiff.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-06-06 21:53:03 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-06-06 21:53:03 +0000
commit5256e42c0b8e8e444b80497a4a67193bc61cd710 (patch)
tree05f06f3c8be02908659f6c534d171a656d3d5441 /libavformat/aiff.c
parentf010d3774e6de99a1d488de7e1888f1182b37375 (diff)
Remove wrappers of pcm_read_seek().
Originally committed as revision 13680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aiff.c')
-rw-r--r--libavformat/aiff.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index 4c701fb383..96a2d0e9ab 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -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