From 5256e42c0b8e8e444b80497a4a67193bc61cd710 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Fri, 6 Jun 2008 21:53:03 +0000 Subject: [PATCH] Remove wrappers of pcm_read_seek(). Originally committed as revision 13680 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/aiff.c | 8 +------- 1 file changed, 1 insertion(+), 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