changeset 3435:a81155640306 libavformat

Remove wrappers of pcm_read_seek().
author ramiro
date Fri, 06 Jun 2008 21:53:03 +0000
parents 3224f8d495a8
children ec4945b71d48
files aiff.c
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/aiff.c	Fri Jun 06 20:36:16 2008 +0000
+++ b/aiff.c	Fri Jun 06 21:53:03 2008 +0000
@@ -433,12 +433,6 @@
     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 @@
     aiff_read_header,
     aiff_read_packet,
     NULL,
-    aiff_read_seek,
+    pcm_read_seek,
     .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
 };
 #endif