[Ffmpeg-cvslog] r7264 - trunk/ffmpeg.c
bcoudurier
subversion
Sat Dec 9 14:12:02 CET 2006
Author: bcoudurier
Date: Sat Dec 9 14:12:02 2006
New Revision: 7264
Modified:
trunk/ffmpeg.c
Log:
print a more correct message when container frame rate differs from codec frame rate
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Sat Dec 9 14:12:02 2006
@@ -2658,7 +2658,7 @@
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);
More information about the ffmpeg-cvslog
mailing list