mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 06:03:45 +01:00
after some STFW i've found some info about fps codes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5442 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
12a1313fbd
commit
4441723cf9
@ -9,10 +9,16 @@
|
||||
|
||||
static int frameratecode2framerate[16] = {
|
||||
0,
|
||||
// Official mpeg1/2 framerates:
|
||||
24000*10000/1001, 24*10000,25*10000, 30000*10000/1001, 30*10000,50*10000,60000*10000/1001, 60*10000,
|
||||
// libmpeg3's "Unofficial economy rates":
|
||||
299700,5*10000,10*10000,12*10000,15*10000,0,0
|
||||
// Official mpeg1/2 framerates: (1-8)
|
||||
24000*10000/1001, 24*10000,25*10000,
|
||||
30000*10000/1001, 30*10000,50*10000,
|
||||
60000*10000/1001, 60*10000,
|
||||
// Xing's 15fps: (9)
|
||||
15*10000,
|
||||
// libmpeg3's "Unofficial economy rates": (10-13)
|
||||
5*10000,10*10000,12*10000,15*10000,
|
||||
// some invalid ones: (14-15)
|
||||
0,0
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user