I'm experimenting - trying to get video out on the slim. At the moment, I've been trying two functions that seemed promising.
int sceImposeCheckVideoOut(int *val);
Returns retval=0/val=2 if the component cable is plugged in. I suspect the 2 is the type of cable detected. Someone with a different cable should try it and see what val is when the function returns. If the cable is not plugged in, retval=80000107/val=N/A.
So we seem to have a way of detecting the video cable. So far so good. Now the function I was trying for switching the video is
int sceImposeSetVideoOutMode(int val);
I don't get any return value other than 0, and if val=0, the LCD is turned on, and if val!=0, the LCD is turned off. I tried various values of val, but it seems to just be on/off. I haven't discovered any "magic value" that turns on the video output.
That's where I'm at so far. Any suggestions or comments are welcome.
Video out on Slim
Good thought. I'll do that. :)
EDIT: well, mode and pixelformat are normal in a game on the TV, so whatever redirects the video to the TV has nothing to do with the mode or pixelformat. The mode might still have something to do with the resolution of the video once it's redirected, but doesn't do the redirecting itself.
EDIT: well, mode and pixelformat are normal in a game on the TV, so whatever redirects the video to the TV has nothing to do with the mode or pixelformat. The mode might still have something to do with the resolution of the video once it's redirected, but doesn't do the redirecting itself.