mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-31 11:53:24 +00:00
Revert "Improve frame rate guessing for streams with two fields per frame."
This reverts r17656, which broke many tests. Further investigation is necessary. Originally committed as revision 17658 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fe7f149ed8
commit
f166f2f435
@ -2115,11 +2115,6 @@ int av_find_stream_info(AVFormatContext *ic)
|
||||
int64_t last= last_dts[index];
|
||||
int64_t duration= pkt->dts - last;
|
||||
|
||||
if (st->codec->ticks_per_frame == 2 &&
|
||||
st->parser &&
|
||||
st->parser->repeat_pict == 0)
|
||||
duration *= 2; // two fields are needed per frame
|
||||
|
||||
if(pkt->dts != AV_NOPTS_VALUE && last != AV_NOPTS_VALUE && duration>0){
|
||||
double dur= duration * av_q2d(st->time_base);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user