diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 23:25:04 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 23:25:04 +0000 |
commit | 9b64a036c0bcdbea33d6a253066312ef6c3304fe (patch) | |
tree | c2bd1fc066d5806f1a15d43bf469f56d2e2200e3 /libavformat/au.c | |
parent | 2562ccb38dad69d8bd2b48b8a6e5a622e8933490 (diff) | |
download | ffmpeg-9b64a036c0bcdbea33d6a253066312ef6c3304fe.tar.gz |
remove useless close funcs
Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 0a6594b574..5e15517c91 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -172,11 +172,6 @@ static int au_read_packet(AVFormatContext *s, return 0; } -static int au_read_close(AVFormatContext *s) -{ - return 0; -} - #ifdef CONFIG_AU_DEMUXER AVInputFormat au_demuxer = { "au", @@ -185,7 +180,7 @@ AVInputFormat au_demuxer = { au_probe, au_read_header, au_read_packet, - au_read_close, + NULL, pcm_read_seek, .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, }; |