forked from FFmpeg/FFmpeg
remove useless empty function
Originally committed as revision 9398 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb67342fdc
commit
fd2e1d88a6
1 changed files with 0 additions and 6 deletions
|
@ -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 = {
|
||||||
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},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue