Commit 2562ccb3 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless close func

Originally committed as revision 13834 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6a862b49
...@@ -373,11 +373,6 @@ static int yuv4_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -373,11 +373,6 @@ static int yuv4_read_packet(AVFormatContext *s, AVPacket *pkt)
return 0; return 0;
} }
static int yuv4_read_close(AVFormatContext *s)
{
return 0;
}
static int yuv4_probe(AVProbeData *pd) static int yuv4_probe(AVProbeData *pd)
{ {
/* check file header */ /* check file header */
...@@ -395,7 +390,6 @@ AVInputFormat yuv4mpegpipe_demuxer = { ...@@ -395,7 +390,6 @@ AVInputFormat yuv4mpegpipe_demuxer = {
yuv4_probe, yuv4_probe,
yuv4_read_header, yuv4_read_header,
yuv4_read_packet, yuv4_read_packet,
yuv4_read_close,
.extensions = "y4m" .extensions = "y4m"
}; };
#endif #endif
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