Browse Source

ffmpeg/do_video_stats: fix used timebase

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
833ec9177d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffmpeg.c

+ 1
- 1
ffmpeg.c View File

@@ -1107,7 +1107,7 @@ static void do_video_stats(OutputStream *ost, int frame_size)

fprintf(vstats_file,"f_size= %6d ", frame_size);
/* compute pts value */
ti1 = ost->last_mux_dts_plus_duration * av_q2d(enc->time_base);
ti1 = ost->last_mux_dts_plus_duration * av_q2d(ost->st->time_base);
if (ti1 < 0.01)
ti1 = 0.01;



Loading…
Cancel
Save