10l 1000 fps fix

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17557 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2006-02-08 01:19:13 +00:00
parent e9aeec9849
commit ec7b288ed5
1 changed files with 2 additions and 2 deletions

View File

@ -273,8 +273,8 @@ static demuxer_t* demux_open_lavf(demuxer_t *demuxer){
sh_video->video.dwScale= codec->frame_rate_base;
#endif
}
sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale;
sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate;
sh_video->fps=av_q2d(st->r_frame_rate);
sh_video->frametime=1/av_q2d(st->r_frame_rate);
sh_video->format = bih->biCompression;
sh_video->aspect= codec->width * codec->sample_aspect_ratio.num
/ (float)(codec->height * codec->sample_aspect_ratio.den);