Commit 2c43de5f authored by michael's avatar michael

Remove useless code.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12814 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72c4992f
...@@ -384,11 +384,6 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -384,11 +384,6 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret; return ret;
} }
static int flv_read_close(AVFormatContext *s)
{
return 0;
}
AVInputFormat flv_demuxer = { AVInputFormat flv_demuxer = {
"flv", "flv",
"flv format", "flv format",
...@@ -396,7 +391,6 @@ AVInputFormat flv_demuxer = { ...@@ -396,7 +391,6 @@ AVInputFormat flv_demuxer = {
flv_probe, flv_probe,
flv_read_header, flv_read_header,
flv_read_packet, flv_read_packet,
flv_read_close,
.extensions = "flv", .extensions = "flv",
.value = CODEC_ID_FLV1, .value = CODEC_ID_FLV1,
}; };
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