# HG changeset patch # User ramiro # Date 1212789183 0 # Node ID a811556403066e74831d065e5ba815152af3acbb # Parent 3224f8d495a842a15fabccbb3ac56deb793b6146 Remove wrappers of pcm_read_seek(). diff -r 3224f8d495a8 -r a81155640306 aiff.c --- 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