[Ffmpeg-cvslog] r7781 - trunk/libavformat/nuv.c
michael
subversion
Wed Jan 31 12:24:04 CET 2007
Author: michael
Date: Wed Jan 31 12:24:04 2007
New Revision: 7781
Modified:
trunk/libavformat/nuv.c
Log:
10l to whoever wrote this (wrong fps, fixes nirvana.nuv)
Modified: trunk/libavformat/nuv.c
==============================================================================
--- trunk/libavformat/nuv.c (original)
+++ trunk/libavformat/nuv.c Wed Jan 31 12:24:04 2007
@@ -154,7 +154,7 @@
vst->codec->height = height;
vst->codec->bits_per_sample = 10;
vst->codec->sample_aspect_ratio = av_d2q(aspect, 10000);
- vst->r_frame_rate = av_d2q(1.0 / fps, 10000);
+ vst->r_frame_rate = av_d2q(fps, 60000);
av_set_pts_info(vst, 32, 1, 1000);
} else
ctx->v_id = -1;
More information about the ffmpeg-cvslog
mailing list