diff au.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children d99961d92b99
line wrap: on
line diff
--- a/au.c	Thu Jun 19 22:58:13 2008 +0000
+++ b/au.c	Thu Jun 19 23:25:04 2008 +0000
@@ -172,11 +172,6 @@
     return 0;
 }
 
-static int au_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 #ifdef CONFIG_AU_DEMUXER
 AVInputFormat au_demuxer = {
     "au",
@@ -185,7 +180,7 @@
     au_probe,
     au_read_header,
     au_read_packet,
-    au_read_close,
+    NULL,
     pcm_read_seek,
     .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0},
 };