summaryrefslogtreecommitdiff
path: root/libavformat/nuv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-31 11:24:04 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-31 11:24:04 +0000
commit8643594ce3953da2b8d7712f36adfbad453a4622 (patch)
treea591acd98b01a0a4c7196091ad10d04cd93f4474 /libavformat/nuv.c
parente8f917d6fd9f42fa4f36fd6dd8a21c1e31cd1c26 (diff)
10l to whoever wrote this (wrong fps, fixes nirvana.nuv)
Originally committed as revision 7781 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nuv.c')
-rw-r--r--libavformat/nuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c
index 31f02b2b6a..7e04222eea 100644
--- a/libavformat/nuv.c
+++ b/libavformat/nuv.c
@@ -154,7 +154,7 @@ static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
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;