Hello all and many thanks for Ps3mediaserver !
We can read there http://manuals.playstation.net/document/en/ps3/current/video/filetypes.html and on others websites that the PS3 can playback at the maximum for H.264 : AVC High@L4.1
To find if a video is "PS3Compatible" and find maximum ReFrames, you use this formula :
int maxref = (int) Math.floor(8388608 / (width * height))
(find there http://ps3mediaserver.googlecode.com/svn-history/trunk/ps3mediaserver/net/pms/dlna/DLNAMediaInfo.java)
But since 2009, the standard tells to use this formula for "L4.1 Profile 1920×1080" :
Floor(32768/(120*68)) = 4 frames
(find there http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Decoded_picture_buffering)
Maybe it's a source for "black screen" symptoms with somes .mkv ?
