]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/idcin.c
Set cur_dts to 0 only during creating new streams and not every time cur_dts happens
[ffmpeg] / libavformat / idcin.c
index b84bf1c74aadcfa454a563c7cccfb91d18267e6c..1a8e558e5d912160fc99c2257853fde4c1516500 100644 (file)
@@ -280,12 +280,6 @@ static int idcin_read_packet(AVFormatContext *s,
     return ret;
 }
 
-static int idcin_read_close(AVFormatContext *s)
-{
-
-    return 0;
-}
-
 AVInputFormat idcin_demuxer = {
     "idcin",
     NULL_IF_CONFIG_SMALL("id CIN format"),
@@ -293,5 +287,4 @@ AVInputFormat idcin_demuxer = {
     idcin_probe,
     idcin_read_header,
     idcin_read_packet,
-    idcin_read_close,
 };