[avbin commit] r52 - trunk/src

0 views
Skip to first unread message

codesite...@google.com

unread,
Dec 18, 2008, 11:20:29 PM12/18/08
to avbin-...@googlegroups.com
Author: Alex.Holkner
Date: Thu Dec 18 20:05:35 2008
New Revision: 52

Modified:
trunk/src/avbin.c

Log:
Fix frame_rate (was reciprocal)

Modified: trunk/src/avbin.c
==============================================================================
--- trunk/src/avbin.c (original)
+++ trunk/src/avbin.c Thu Dec 18 20:05:35 2008
@@ -211,8 +211,8 @@
{
AVRational frame_rate = \
file->context->streams[stream_index]->r_frame_rate;
- info_8->video.frame_rate_num = frame_rate.den;
- info_8->video.frame_rate_den = frame_rate.num;
+ info_8->video.frame_rate_num = frame_rate.num;
+ info_8->video.frame_rate_den = frame_rate.den;

/* Work around bug in FFmpeg: if frame rate over 1000,
divide
* by 1000.

Reply all
Reply to author
Forward
0 new messages