diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2008-06-06 21:53:03 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-06-06 21:53:03 +0000 |
commit | 5256e42c0b8e8e444b80497a4a67193bc61cd710 (patch) | |
tree | 05f06f3c8be02908659f6c534d171a656d3d5441 /libavformat/aiff.c | |
parent | f010d3774e6de99a1d488de7e1888f1182b37375 (diff) | |
download | ffmpeg-5256e42c0b8e8e444b80497a4a67193bc61cd710.tar.gz |
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.c | 8 |
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 |