Movie Maniac®
12th April 2003, 01:21
Hi
I wrote a stats reader, and you can see my post in the development section of this forum. http://forum.doom9.org/showthread.php?s=&threadid=50295
What I would realy llike to know is how to distinguish wether a frame is a "credit" frame or not.
Searching this forum, I'v only found this informations:
#define NNSTATS_KEYFRAME (1<<31)
#define NNSTATS_BFRAME (1<<30)
that should be read from the quant
#define NNSTATS_SKIPFRAME (1<<29)
#define NNSTATS_PADFRAME (1<<28)
#define NNSTATS_DELAYFRAME (1<<27)
that should be read from the dd_v
Searching he internet I've found only this page:
http://edu.bnhof.de/pipermail/xvid-...ary/001910.html
wich was wrote by Koepi!
No informations are available about credit frames, or let's say I wasn't able to find them. Please help me, I need only this information to complete my work. Any link to any documentation about this question is wellcome!
Thanks for your attention
P.S. Another technical question, if I can. Does have any sense to insert a key frame in the stats file just by pushing a button (e.g. like your stats editor does?), or it is better not do do it?
That's becouse some guys told me not to do this becouse otherwise the keyframe inserted this way wouldn't be coded correctly. Is that right? (I think no, since you implemented this function in you r app).
I wrote a stats reader, and you can see my post in the development section of this forum. http://forum.doom9.org/showthread.php?s=&threadid=50295
What I would realy llike to know is how to distinguish wether a frame is a "credit" frame or not.
Searching this forum, I'v only found this informations:
#define NNSTATS_KEYFRAME (1<<31)
#define NNSTATS_BFRAME (1<<30)
that should be read from the quant
#define NNSTATS_SKIPFRAME (1<<29)
#define NNSTATS_PADFRAME (1<<28)
#define NNSTATS_DELAYFRAME (1<<27)
that should be read from the dd_v
Searching he internet I've found only this page:
http://edu.bnhof.de/pipermail/xvid-...ary/001910.html
wich was wrote by Koepi!
No informations are available about credit frames, or let's say I wasn't able to find them. Please help me, I need only this information to complete my work. Any link to any documentation about this question is wellcome!
Thanks for your attention
P.S. Another technical question, if I can. Does have any sense to insert a key frame in the stats file just by pushing a button (e.g. like your stats editor does?), or it is better not do do it?
That's becouse some guys told me not to do this becouse otherwise the keyframe inserted this way wouldn't be coded correctly. Is that right? (I think no, since you implemented this function in you r app).