mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
fix demuxing of Video006.3gp
Originally committed as revision 5006 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
232d8a1fba
commit
75b5b63179
@ -1722,8 +1722,10 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
sc->time_rate=1;
|
||||
av_set_pts_info(s->streams[i], 64, sc->time_rate, sc->time_scale);
|
||||
|
||||
assert(s->streams[i]->duration % sc->time_rate == 0);
|
||||
s->streams[i]->duration /= sc->time_rate;
|
||||
if(s->streams[i]->duration != AV_NOPTS_VALUE){
|
||||
assert(s->streams[i]->duration % sc->time_rate == 0);
|
||||
s->streams[i]->duration /= sc->time_rate;
|
||||
}
|
||||
|
||||
sc->ffindex = i;
|
||||
sc->is_ff_stream = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user