changeset 2187:a6f9b5f8158a libavformat

remove useless empty function
author aurel
date Sat, 23 Jun 2007 12:47:02 +0000
parents cba1f03f958d
children 4c2924cebe00
files vocdec.c
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/vocdec.c	Sat Jun 23 12:42:45 2007 +0000
+++ b/vocdec.c	Sat Jun 23 12:47:02 2007 +0000
@@ -134,11 +134,6 @@
     return voc_get_packet(s, pkt, s->streams[0], 0);
 }
 
-static int voc_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 AVInputFormat voc_demuxer = {
     "voc",
     "Creative Voice File format",
@@ -146,6 +141,5 @@
     voc_probe,
     voc_read_header,
     voc_read_packet,
-    voc_read_close,
     .codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0},
 };