TVOut Engine API
TVOut Engine API can be used to control what is shown on the TV out - ie in order to show a different image than that shown on the device screen. The feature is needed in, for example, presentation applications.
Note: This API is not part of the public SDK. It can be found in the SDK API Plug-in.
Article Metadata
Code Example
Source file: Media:TVOut.zip
Article
Created: juhanak
(19 Aug 2009)
Last edited: hamishwillee
(27 Sep 2012)
Use cases
- Display Images on TV out
Example code
Header files
#include <mtvoutengine.h>
#include <tvoutengine.h>
#include <mtvoutengineobserver.h>
Following code shows a JPEG image on TV out:
// iEngine is an instance of MTVOutEngine class
// aFocused is a path of JPG image which will be shown on TV.
// aNext is next image shown on TV
// aPrevious is previous image showed on TV
iEngine->CreateAndDisplayImagesL(aFocused,aNext,aPrevious);
API supports also showing CFbsBitmap object on the TV out. This can be done via DisplayImageL function.


Hi,
I'm trying to mirror the image on TV out (i want to keep the phone image normal). Do you have any idea of how I could get the mirroring on TV out working?
Many thanks, Cjessy