[FFmpeg-cvslog] r13680 - trunk/libavformat/aiff.c
ramiro
subversion
Fri Jun 6 23:53:03 CEST 2008
Author: ramiro
Date: Fri Jun 6 23:53:03 2008
New Revision: 13680
Log:
Remove wrappers of pcm_read_seek().
Modified:
trunk/libavformat/aiff.c
Modified: trunk/libavformat/aiff.c
==============================================================================
--- trunk/libavformat/aiff.c (original)
+++ trunk/libavformat/aiff.c Fri Jun 6 23:53:03 2008
@@ -433,12 +433,6 @@ static int aiff_read_packet(AVFormatCont
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
More information about the ffmpeg-cvslog
mailing list