Commit 386c88de authored by Baptiste Coudurier's avatar Baptiste Coudurier

print a more correct message when container frame rate differs from codec frame rate

Originally committed as revision 7264 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8d0ba041
......@@ -2658,7 +2658,7 @@ static void opt_input_file(const char *filename)
if (enc->time_base.den != rfps || enc->time_base.num != rfps_base) {
if (verbose >= 0)
fprintf(stderr,"\nSeems that stream %d comes from film source: %2.2f (%d/%d) -> %2.2f (%d/%d)\n",
fprintf(stderr,"\nSeems stream %d codec frame rate differs from container frame rate: %2.2f (%d/%d) -> %2.2f (%d/%d)\n",
i, (float)enc->time_base.den / enc->time_base.num, enc->time_base.den, enc->time_base.num,
(float)rfps / rfps_base, rfps, rfps_base);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment