IWMEncDeviceControlPlugin::get_IgnoreEDL

Windows Media Encoder SDK banner art

The get_IgnoreEDL method retrieves a value indicating whether to ignore the edit decision list (EDL) during device operation.

Syntax

HRESULT get_IgnoreEDL(
  VARIANT_BOOL*  pbIgnoreEDL
);

Parameters

pbIgnoreEDL

[out]  Pointer to a VARIANT_BOOL indicating whether to ignore the EDL.

Return Values

If the method succeeds, it returns S_OK. If it fails, it supports the IErrorInfo interface and returns an HRESULT error code.

Return code Number Description
E_POINTER 0x80004003 The pointer to the Boolean value is NULL.

Remarks

If you have an EDL set up but you want to control the device yourself (play, stop, forward, rewind, and so forth), set the encoding session to ignore the EDL by setting put_IgnoreEDL to VARIANT_TRUE. Otherwise, the encoding session will encode what is specified in the EDL.

Requirements

Header: wmdevctl.h

Library: wmdevctl.dll

See Also