Commit 23db4602 authored by aurel's avatar aurel

remove useless empty function

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9398 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c43f3d52
...@@ -134,11 +134,6 @@ static int voc_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -134,11 +134,6 @@ static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
return voc_get_packet(s, pkt, s->streams[0], 0); return voc_get_packet(s, pkt, s->streams[0], 0);
} }
static int voc_read_close(AVFormatContext *s)
{
return 0;
}
AVInputFormat voc_demuxer = { AVInputFormat voc_demuxer = {
"voc", "voc",
"Creative Voice File format", "Creative Voice File format",
...@@ -146,6 +141,5 @@ AVInputFormat voc_demuxer = { ...@@ -146,6 +141,5 @@ AVInputFormat voc_demuxer = {
voc_probe, voc_probe,
voc_read_header, voc_read_header,
voc_read_packet, voc_read_packet,
voc_read_close,
.codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0}, .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