class MMMFVideoPlayControllerCustomCommandImplementor |
Client class to access functionality specific to a video playback controller.
The class uses the custom command function of the controller plugin, and removes the necessity for the client to formulate the custom commands.
7.0s
Public Member Functions | |
---|---|
void | MvpcDirectScreenAccessEventL(const TMMFDSAEvent) |
void | MvpcGetAudioEnabledL(TBool &) |
void | MvpcGetCropRegionL(TRect &) |
void | MvpcGetFrameL(MMMFVideoFrameMessage &) |
void | MvpcGetLoadingProgressL(TInt &) |
void | MvpcGetRotationL(TVideoRotation &) |
void | MvpcGetScaleFactorL(TReal32 &, TReal32 &, TBool &) |
void | MvpcPlayL(const TTimeIntervalMicroSeconds &, const TTimeIntervalMicroSeconds &) |
void | MvpcPrepare() |
void | MvpcRefreshFrameL() |
void | MvpcSetCropRegionL(const TRect &) |
void | MvpcSetDisplayWindowL(const TRect &, const TRect &) |
void | MvpcSetRotationL(TVideoRotation) |
void | MvpcSetScaleFactorL(TReal32, TReal32, TBool) |
void | MvpcUpdateDisplayRegionL(const TRegion &) |
void | MvpcDirectScreenAccessEventL | ( | const TMMFDSAEvent | aDSAEvent | ) | [pure virtual] |
Pauses/Resumes video playback. This is to be used with direct screen access to indicate that the display has changed and should not be written to. This does not affect audio playback.
7.0s
const TMMFDSAEvent aDSAEvent | Whether the video display should be active. |
void | MvpcGetAudioEnabledL | ( | TBool & | aEnabled | ) | [pure virtual] |
Indicates whether audio is enabled.
7.0s
TBool & aEnabled | On return, contains a boolean indicating whether audio is enabled. |
void | MvpcGetCropRegionL | ( | TRect & | aCropRegion | ) | [pure virtual] |
Gets the crop region currently applied to the image
7.0s
TRect & aCropRegion | The dimensions of the crop region, relative to the video image. If no crop region has been applied, the full dimensions of the video image will be returned. |
void | MvpcGetFrameL | ( | MMMFVideoFrameMessage & | aVideoFrame | ) | [pure virtual] |
Gets a frame previously requested from the controller.
7.0s
MMMFVideoFrameMessage & aVideoFrame | The handle of bitmap to retrieve frame to. |
void | MvpcGetLoadingProgressL | ( | TInt & | aPercentageComplete | ) | [pure virtual] |
Gets the progress of loading a video clip.
7.0s
TInt & aPercentageComplete | The progress loading the clip, as a percentage. |
void | MvpcGetRotationL | ( | TVideoRotation & | aRotation | ) | [pure virtual] |
Queries the rotation that is currently applied to the video image.
7.0s
TVideoRotation & aRotation | The applied rotation. |
void | MvpcGetScaleFactorL | ( | TReal32 & | aWidthPercentage, |
TReal32 & | aHeightPercentage, | |||
TBool & | aAntiAliasFiltering | |||
) | [pure virtual] |
Gets the scale factor currently applied to the video image.
7.0s
TReal32 & aWidthPercentage | The percentage (100 = original size) used to scale the width of the video image will be copied into here. |
TReal32 & aHeightPercentage | The percentage (100 = original size) used to scale the height of the video image will be copied into here. |
TBool & aAntiAliasFiltering | A boolean indicating if anti-aliasing filtering should be used. ETrue if anti-aliasing filtering is being used, EFalse if not. |
void | MvpcPlayL | ( | const TTimeIntervalMicroSeconds & | aStart, |
const TTimeIntervalMicroSeconds & | aEnd | |||
) | [pure virtual] |
Sets a time window for video playback.
7.0s
const TTimeIntervalMicroSeconds & aStart | Start time in milliseconds relative to the start of the video clip. |
const TTimeIntervalMicroSeconds & aEnd | End time in milliseconds relative to the start of the video clip. |
void | MvpcPrepare | ( | ) | [pure virtual] |
Prepares the video clip to be accessed.
A call to this method tells the controller plugin to finalise its configuration and to prepare to start reading the video clip. It is not possible to play the video clip or query any of its properties (e.g. duration, meta data etc.) until the controller plugin has signified the completion of this method by generating a KMMFEventCategoryVideoPrepareComplete event.
7.0s
void | MvpcRefreshFrameL | ( | ) | [pure virtual] |
Requests the controller to redraw the current frame.
7.0s
void | MvpcSetCropRegionL | ( | const TRect & | aCropRegion | ) | [pure virtual] |
Selects a region of the video image to be displayed.
7.0s
const TRect & aCropRegion | The dimensions of the crop region, relative to the video image. |
void | MvpcSetDisplayWindowL | ( | const TRect & | aWindowRect, |
const TRect & | aClipRect | |||
) | [pure virtual] |
Sets the screen region to be used to display the video.
7.0s
void | MvpcSetRotationL | ( | TVideoRotation | aRotation | ) | [pure virtual] |
Rotates the video image on the screen.
7.0s
TVideoRotation aRotation | The desired rotation to apply. |
void | MvpcSetScaleFactorL | ( | TReal32 | aWidthPercentage, |
TReal32 | aHeightPercentage, | |||
TBool | aAntiAliasFiltering | |||
) | [pure virtual] |
Scales the video image to a specified percentage of its original size.
7.0s
TReal32 aWidthPercentage | The percentage (100 = original size) to be used to scale the width of the video image. |
TReal32 aHeightPercentage | The percentage (100 = original size) to be used to scale the height of the video image. If this is not equal to aWidthPercentage then the image may be distorted. |
TBool aAntiAliasFiltering | A boolean indicating if anit-aliasing filtering should be used. ETrue if anti-aliasing should be used. If the plugin does not support this kind of processing, this value will be ignored. |