# HG changeset patch # User bcoudurier # Date 1263858964 0 # Node ID 5d938dd16b3433b5315786648d8561b9d1954dba # Parent 067c0af56a4cf91c786c287ee4e233b14e3d7c56 set average frame rate in mov demuxer diff -r 067c0af56a4c -r 5d938dd16b34 mov.c --- a/mov.c Mon Jan 18 21:38:39 2010 +0000 +++ b/mov.c Mon Jan 18 23:56:04 2010 +0000 @@ -1652,14 +1652,18 @@ } else sc->pb = c->fc->pb; - if (st->codec->codec_type == CODEC_TYPE_VIDEO && - (st->codec->width != sc->width || st->codec->height != sc->height)) { + if (st->codec->codec_type == CODEC_TYPE_VIDEO) { + if (st->codec->width != sc->width || st->codec->height != sc->height) { AVRational r = av_d2q(((double)st->codec->height * sc->width) / ((double)st->codec->width * sc->height), INT_MAX); if (st->sample_aspect_ratio.num) st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r); else st->sample_aspect_ratio = r; + } + + av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den, + sc->time_scale*st->nb_frames, st->duration, INT_MAX); } switch (st->codec->codec_id) { diff -r 067c0af56a4c -r 5d938dd16b34 utils.c --- a/utils.c Mon Jan 18 21:38:39 2010 +0000 +++ b/utils.c Mon Jan 18 23:56:04 2010 +0000 @@ -2218,7 +2218,7 @@ } for(i=0;inb_streams;i++) { st = ic->streams[i]; - if(codec_info_nb_frames[i]>2) + if(codec_info_nb_frames[i]>2 && !st->avg_frame_rate.num) av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den, (codec_info_nb_frames[i]-2)*(int64_t)st->time_base.den, codec_info_duration[i] *(int64_t)st->time_base.num, 60000);