diff txd.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children 7d2f3f1b68d8
line wrap: on
line diff
--- a/txd.c	Thu Jun 19 22:58:13 2008 +0000
+++ b/txd.c	Thu Jun 19 23:25:04 2008 +0000
@@ -87,10 +87,6 @@
     return ret <= 0 ? AVERROR(EIO) : ret;
 }
 
-static int txd_read_close(AVFormatContext *s) {
-    return 0;
-}
-
 AVInputFormat txd_demuxer =
 {
     "txd",
@@ -99,5 +95,4 @@
     txd_probe,
     txd_read_header,
     txd_read_packet,
-    txd_read_close,
 };