#include <icl/imageplugin.h>
class CImageEncoderPlugin : public CBase |
Public Member Functions | |
---|---|
~CImageEncoderPlugin() | |
virtual IMPORT_C void | GetExtensionL(TUid, MImageConvExtension *&) |
The plugin API for Image Converter Library encoder plugins.
Intended for use by plugin writers only.
IMPORT_C TBool | AmInThread | ( | ) | const [protected] |
Indicates if this encoder is running in a separate thread.
IMPORT_C void | Cleanup | ( | ) | [protected, virtual] |
Called when the plugin is destroyed or an encode is cancelled to perform cleanup functions.
This function may be overriden in derived classes in which case the derived class should ensure it calls this version after performing any plugin specific cleanup.
IMPORT_C TInt | CurrentImageSizeL | ( | ) | const [protected] |
Returns the current size of the encoded image in bytes.
IMPORT_C TBufPtr8 & | DestinationData | ( | ) | [protected] |
Returns the value to be fed to CImageWriteCodec::ProcessFrameL(), and will be used by codecs that fully override DoConvert().
IMPORT_C void | DoConvert | ( | ) | [protected, virtual] |
Performs the encoding process.
This call may be overriden in derived classes. If this is not the case and a custom decode is not performed, the derived class should ensure that this base class's version is called.
IMPORT_C CImageEncoder::TOptions | EncoderOptions | ( | ) | const [protected] |
Enables getting set of options which has been passed by client during encoder object creation. Plugins should ignore unknown options.
IMPORT_C void | FinishConvertL | ( | ) | [protected] |
Notifies the framework that the main frame encoding is complete, so it can tidy up. This results in a call to UpdateHeaderL() and then either the descriptor is copied across or the file is closed.
Note: This function is only used if a decoder replaces the DoConvert() call - the default version does this as part of its processing.
IMPORT_C const TSize & | FrameInfoOverallSizeInPixels | ( | ) | const [protected] |
Returns the overall size of the image frame in pixels.
IMPORT_C void | GetExtensionL | ( | TUid | aExtUid, |
MImageConvExtension *& | aExtPtr | |||
) | [virtual] |
Called by the framework to obtain a pointer to a codec implemented extension.
See also: icl_uids.hrh .
Parameters | |
---|---|
aExtUid | Extension UID normally prefixed KUidImageConv. |
IMPORT_C void | HandleCustomSyncL | ( | TInt | aParam | ) | [protected, virtual] |
Called as a result of the associated CImageEncoder::CustomSyncL() function being called. Plugins may override this to provide extended commands in CImageEncoder. Default version leaves with KErrNotSupported.
Parameters | |
---|---|
aParam | Interpretation dependent on plugin. |
IMPORT_C void | HandleProcessFrameResult | ( | TInt | aErrCode, |
TFrameState | aCodecState | |||
) | [protected] |
Deals with the result from ProcessFrameL().
This processes the results of the standard ProcessFrameL() call, feeding in the resultant error code from its TRAP and the status result. It will call RequestComplete() or SelfComplete() as appropriate. Note that if no data was created by ProcessFrameL(), HandleProcessFrameResult() assumes that the encoding process is complete. If this is not appropriate, an overloaded DoConvert() should be used to handle it.
Parameters | |
---|---|
aErrCode | The error result of TRAP around ProcessFrameL(). |
aCodecState | The result of ProcessFrameL() itself. |
IMPORT_C CImageWriteCodec * | ImageWriteCodec | ( | ) | const [protected] |
Returns the plugin's write codec.
IMPORT_C void | InitConvertL | ( | ) | [protected, virtual] |
Initialises data structures prior to encoding a frame.
This may be overriden in derived classes in which case the derived class should ensure it calls this version after performing any plugin initialisation.
IMPORT_C void | InitCustomAsyncL | ( | TInt | aParam | ) | [protected, virtual] |
Called as a result of the associated CImageEncoder::CustomAsync() function being called. If this function finishes normally, then a convert cycle is started - so that DoConvert() will be subsequently started in the background - otherwise, if this function leaves then the error result is immediately signalled back to the caller of CustomAsync().
The default version leaves with KErrNotSupported unless overridden to change this behaviour. Plugins may override this to provide extended commands in CImageEncoder.
Parameters | |
---|---|
aParam | Interpretation dependent on plugin. |
IMPORT_C void | NotifyComplete | ( | ) | [protected, virtual] |
Plugin defined actions resulting from a call by RequestComplete().
This function is called when a RequestComplete() is issued indicating that an asynchronous command has finished. Plugins can extend this function to clear any custom command flags.
IMPORT_C TInt & | Position | ( | ) | const [protected] |
Returns the current position within the internal data buffer that is being written to.
See also: WriteDataPositionIncL(TInt aPosition,const TDesC8& aDes) WriteDataL(TInt aPosition,const TDesC8& aDes)
void | PrepareEncoderL | ( | const CFrameImageData * | aFrameImageData | ) | [protected, pure virtual] |
Allocates the specific codec used for the encoding and passes ownership to the plugin.
This is a pure virtual function that each individual plugin must implement.
Parameters | |
---|---|
aFrameImageData | The parameters which can be passed on to the encoding algorithm. This data might be used to determine the exact codec created. |
IMPORT_C void | RequestComplete | ( | TInt | aReason | ) | [protected] |
This function must be called on completion of encoding the image data.
Parameters | |
---|---|
aReason | The error code giving the reason for completion, or KErrNone if no error occurred. |
IMPORT_C void | RequestInitL | ( | ) | [protected] |
Forces initialization of data structures prior to decoding a frame.
IMPORT_C void | SelfComplete | ( | TInt | aReason | ) | [protected] |
Must be called at the end of a slice of encoding. If called with KErrNone will cause a repeat call to DoConvert().
See also: CImageEncoderPlugin::RequestComplete(TInt aReason)
Parameters | |
---|---|
aReason | The error code giving the reason for completion, or KErrNone if no error occurred. |
IMPORT_C void | SetImageWriteCodec | ( | CImageWriteCodec * | aImageWriteCodec | ) | const [protected] |
Sets the plugin's write codec.
Ownership of the codec is transferred to the plugin.
Parameters | |
---|---|
aImageWriteCodec | A pointer to the codec. |
IMPORT_C void | SetSelfPending | ( | ) | [protected] |
May be called at the start of a slice of encoding if the encoding is expected to complete asynchronously. This sets the AO in CImageEncoderPriv to active, but does not complete the request.
When the encoding of the slice is complete, there must be a call to SelfComplete()
IMPORT_C TBool | ShouldAbort | ( | ) | const [protected] |
Indicates if an encode should abort early (ie. following a Cancel).
Note: This function always returns EFalse unless the encoder is running in its own thread.
IMPORT_C const CFbsBitmap & | Source | ( | ) | const [protected] |
Returns the bitmap which is being encoded.
IMPORT_C TInt & | StartPosition | ( | ) | const [protected] |
Returns the starting position of the internal data buffer of the encoded image that is being written to.
void | UpdateHeaderL | ( | ) | [protected, pure virtual] |
May be used to fill in additional fields at the end of the encoding process, which it may not have been possible to do earlier.
This is a pure virtual function that each individual plugin must implement.
IMPORT_C TBool | ValidSource | ( | ) | const [protected] |
Checks the validity of the bitmap which is being encoded. Returns ETrue if the bitmap is valid, otherwise EFalse.
Writes a descriptor to the internal data buffer of the encoded image without incrementing the position in the buffer, and therefore a call to Position() will return the same value before or after a call to this function.
See also: Position()
Parameters | |
---|---|
aPosition | The start position in the internal data buffer of the encoded image from which point the data in aDes is written. |
aDes | The descriptor containing the data to be written to the internal data buffer of the encoded image. |
Writes a descriptor to the internal data buffer of the encoded image. In addition, the position in the buffer that is written to (obtained with Position()) will be incremented returning aPosition + aDes.Length().
See also: Position()
Parameters | |
---|---|
aPosition | The start position in the internal data buffer of the encoded image from which point the data in aDes is written. |
aDes | The descriptor containing the data to be written to the internal data buffer of the encoded image. |