Location:
mmfstandardcustomcommands.h
class MMMFVideoControllerCustomCommandImplementor;
Mixin class to be derived from by controller plugins wishing to support the video record controller custom commands.
Defined in MMMFVideoControllerCustomCommandImplementor
:
MvcGetAudioBitRateL()
, MvcGetAudioCodecL()
, MvcGetFrameRateL()
, MvcGetVideoBitRateL()
, MvcGetVideoFrameSizeL()
, MvcGetVideoMimeTypeL()
, MvcSetFrameRateL()
virtual void MvcGetVideoFrameSizeL(TSize &aVideoFrameSize)=0;
Gets the frame size of the clip.
|
virtual void MvcGetAudioCodecL(TFourCC &aCodec)=0;
Gets the audio type.
|
virtual void MvcGetVideoBitRateL(TInt &aBitRate)=0;
Gets the video bit rate.
|
virtual void MvcGetAudioBitRateL(TInt &aBitRate)=0;
Gets the audio bit rate.
|
virtual void MvcSetFrameRateL(TReal32 aFramesPerSecond)=0;
Sets the frame rate of the clip.
|
virtual void MvcGetFrameRateL(TReal32 &aFramesPerSecond)=0;
Gets the frame rate of the clip.
|
virtual void MvcGetVideoMimeTypeL(TDes8 &aMimeType)=0;
Gets the supported sink video types.
|