New submission from David <[email protected]>: Floating point exception in ffmpeg.c line 1559: ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->time_base.num * ticks) / ist->st->codec->time_base.den;
in the gdb session you can see ist->st->codec->time_base.den is zero (divide by zero). Before this line, there is a check for "if (ist->st->codec->time_base.num != 0)", but no check for ist->st->codec->time_base.den. I have a sample, but it is 78.4 MB. should I still upload it here? (can't make it any smaller without failing to reproduce bug :( ) ---------- messages: 13031 nosy: kapace priority: normal status: new substatus: new title: Floating point exeption topic: ffmpeg type: bug ________________________________________________ FFmpeg issue tracker <[email protected]> <https://roundup.ffmpeg.org/issue2443> ________________________________________________
