mirror of
https://github.com/mpv-player/mpv
synced 2025-03-07 22:57:42 +00:00
10l 1000 fps fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17557 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e9aeec9849
commit
ec7b288ed5
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user