Commit fd2e1d88 authored by Aurelien Jacobs's avatar Aurelien Jacobs

remove useless empty function

Originally committed as revision 9398 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eb67342f
......@@ -134,11 +134,6 @@ static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
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 @@ AVInputFormat voc_demuxer = {
voc_probe,
voc_read_header,
voc_read_packet,
voc_read_close,
.codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0},
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment