Browse Source

remove useless close func

Originally committed as revision 13834 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
2562ccb38d
1 changed files with 0 additions and 6 deletions
  1. +0
    -6
      libavformat/yuv4mpeg.c

+ 0
- 6
libavformat/yuv4mpeg.c View File

@@ -373,11 +373,6 @@ static int yuv4_read_packet(AVFormatContext *s, AVPacket *pkt)
return 0;
}

static int yuv4_read_close(AVFormatContext *s)
{
return 0;
}

static int yuv4_probe(AVProbeData *pd)
{
/* check file header */
@@ -395,7 +390,6 @@ AVInputFormat yuv4mpegpipe_demuxer = {
yuv4_probe,
yuv4_read_header,
yuv4_read_packet,
yuv4_read_close,
.extensions = "y4m"
};
#endif

Loading…
Cancel
Save