]> git.sesse.net Git - ffmpeg/commitdiff
Remove wrappers of pcm_read_seek().
authorRamiro Polla <ramiro.polla@gmail.com>
Fri, 6 Jun 2008 21:53:03 +0000 (21:53 +0000)
committerRamiro Polla <ramiro.polla@gmail.com>
Fri, 6 Jun 2008 21:53:03 +0000 (21:53 +0000)
Originally committed as revision 13680 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/aiff.c

index 4c701fb383140be553c1a1ee66b6d720b5de5ea8..96a2d0e9abf0fae98ed4a9c70c2fbb7b0ecf39ee 100644 (file)
@@ -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