Also, spent some time today investigating Grandia's extremely weird video format. I think I actually made some progress, so if I'm lucky I'll be able to add full decode support to FFmpeg. What I know so far:
* The container is Quicktime, and mostly standard.
* The stsd atom reports the codec as `cvid` (Cinepak), but this is not correct.
* The audio track is not detected by FFmpeg, but is compressed using the ADX ADPCM format.
* I'm not entirely sure what the video codec is, but it appears to be a macroblock-based format that uses 8x8 macroblocks. This is very unusual for the hardware. It may be MPEG-1 meant to be used with a software decoder, or a very similar custom codec.
* The resolution is 320x144, encoding an image meant to be read at 16:9 using non-square pixels.