diff --git a/libavformat/utils.c b/libavformat/utils.c
index 6ff6a7962adf2bb754cfe43e99309260fa216c5b..36cb269b50255ed69bb3988647d72ce5f6a093b9 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1697,7 +1697,7 @@ int av_find_stream_info(AVFormatContext *ic)
             if (!has_codec_parameters(st->codec))
                 break;
             /* variable fps and no guess at the real fps */
-            if(   st->codec->time_base.den >= 101LL*st->codec->time_base.num
+            if(   (st->codec->time_base.den >= 101LL*st->codec->time_base.num || st->codec->codec_id == CODEC_ID_MPEG2VIDEO)
                && duration_count[i]<20 && st->codec->codec_type == CODEC_TYPE_VIDEO)
                 break;
             if(st->parser && st->parser->parser->split && !st->codec->extradata)