comparison txd.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children 7d2f3f1b68d8
comparison
equal deleted inserted replaced
3483:e85a3d8478c1 3484:31a0f3b99ef7
85 pkt->stream_index = 0; 85 pkt->stream_index = 0;
86 86
87 return ret <= 0 ? AVERROR(EIO) : ret; 87 return ret <= 0 ? AVERROR(EIO) : ret;
88 } 88 }
89 89
90 static int txd_read_close(AVFormatContext *s) {
91 return 0;
92 }
93
94 AVInputFormat txd_demuxer = 90 AVInputFormat txd_demuxer =
95 { 91 {
96 "txd", 92 "txd",
97 NULL_IF_CONFIG_SMALL("txd format"), 93 NULL_IF_CONFIG_SMALL("txd format"),
98 0, 94 0,
99 txd_probe, 95 txd_probe,
100 txd_read_header, 96 txd_read_header,
101 txd_read_packet, 97 txd_read_packet,
102 txd_read_close,
103 }; 98 };