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:
arpi 2002-03-31 23:46:00 +00:00
parent 12a1313fbd
commit 4441723cf9
1 changed files with 10 additions and 4 deletions

View File

@ -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
};