Index Topic Contents | |||
Previous Topic: IAMTimecodeDisplay Interface Next Topic: IAMTimecodeReader Interface |
IAMTimecodeGenerator Interface
The IAMTimecodeGenerator interface contains properties and methods that specify how an external SMPTE/MIDI timecode generator should supply data to the filter graph and the formats in which timecode should be supplied. This interface should be implemented in combination with the IAMExtDevice and IAMExtTransport interfaces to control an external device, such as a VCR. This interface provides methods that enable applications to specify various SMPTE/MIDI timecode modes or formats that an external device should use in the generation of timecode, and methods that verify that the generator is working properly.
SMPTE timecode is a frame addressing system that identifies video and audio sources, makes automatic track synchronization possible, and provides a container for additional data related to the production. SMPTE timecode's main purpose is to provide a machine-readable address for video and audio. It is displayed in hh:mm:ss:ff format and is thoroughly defined in ANSI/SMPTE 12-1986.
For more information on SMPTE timecode see the Control an External Device in DirectShow overview article.
See the IAMTimecodeReader interface for more information on methods which access an external timecode reader.
When to Implement
Implement this interface on an external device filter when you want to control how SMPTE/MIDI timecode information is generated by an external timecode generator.
Expose the IMediaSeeking interface on your filter to enable applications to convert timecode to DirectShow reference time (by using IMediaSeeking::ConvertTimeFormat).
Your external device must be able to read timecode and send it to the computer over its control interface (see hardware requirements). If this is not the case, you must either have a timecode reader card in your computer, or you can write a software decoder that converts VITC embedded in captured video frames or LTC captured as an audio signal into DirectShow timecode samples.
When to Use
Use this interface when you want to generate SMPTE timecode in an external device.
Hardware Requirements
See the IAMExtTransport interface for hardware requirements.
Methods in Vtable Order
IUnknown methods Description QueryInterface Retrieves pointers to supported interfaces. AddRef Increments the reference count. Release Decrements the reference count.
IAMTimecodeGenerator methods Description GetTCGMode Retrieves the SMPTE timecode generator properties. SetTCGMode Sets the SMPTE timecode generator properties. put_VITCLine Specifies which line(s) to insert the vertical interval timecode information into. get_VITCLine Retrieves which line(s) the vertical interval timecode information has been inserted into. SetTimecode Sets the timecode, userbit value, or both. GetTimecode Retrieves the most recent timecode and/or userbit value available in the stream. IAMTimecodeGenerator Interface
IAMTimecodeGenerator::GetTCGModeRetrieves the SMPTE timecode generator properties.
HRESULT GetTCGMode(
long Param,
long *pValue
);Parameters
- Param
- [in] Timecode generator mode. Specify one of the following modes you want to get settings for.
Value Meaning ED_TCG_FRAMERATE Frame rate ED_TCG_REFERENCE_SOURCE Source of the count value ED_TCG_SYNC_SOURCE Source of the hardware clock reference ED_TCG_TIMECODE_TYPE SMPTE timecode format of the generator - pValue
- [out] Current setting of the parameter specified in Param.
If you specify ED_TCG_TIMECODE_TYPE in Param, this parameter retrieves one of the following:
Value Meaning ED_TCG_MIDI_FULL MIDI full frame timecode ED_TCG_MIDI_QF MIDI quarter frame timecode ED_TCG_SMPTE_LTC Linear timecode ED_TCG_SMPTE_VITC Vertical interval timeCode If you specify ED_TCG_FRAMERATE in Param, this parameter retrieves one of the following:
Value Meaning ED_FORMAT_SMPTE_24 24 frames per second ED_FORMAT_SMPTE_25 25 frames per second ED_FORMAT_SMPTE_30 30 frames per second. Nondrop frame ED_FORMAT_SMPTE_30DROP 30 frames per second. Drop frame (actually 29.97 fps) If you specify ED_TCG_SYNC_SOURCE in Param, this parameter retrieves one of the following:
Value Meaning ED_TCG_FREE Lock to nothing (freerun) ED_TCG_READER Lock to timecode reader ED_TCG_VIDEO Lock to incoming video If you specify ED_TCG_REFERENCE_SOURCE in Param, this parameter retrieves one of the following:
Value Meaning ED_TCG_FREE No count reference source ED_TCG_READER Syncronize to reader value (jamsync) Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
This method returns various settings of the timecode generator. For more information on ED_TCG_TIMECODE_TYPE, see IAMTimecodeReader::SetTCRMode.
IAMTimecodeGenerator Interface
IAMTimecodeGenerator::GetTimecodeRetrieves the most recent timecode and/or userbit value available in the stream.
HRESULT GetTimecode(
PTIMECODE_SAMPLE pTimecodeSample
);Parameters
- pTimecodeSample
- [out] Pointer to a TIMECODE_SAMPLE timecode structure.
Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
Use this method to obtain the most recent timecode value available in the stream. The application can use this to monitor the timecode and verify the generator is working properly.
See Also
IAMTimecodeGenerator::SetTimecode
IAMTimecodeGenerator Interface
IAMTimecodeGenerator::get_VITCLineRetrieves which line(s) the vertical interval timecode information has been inserted into.
HRESULT get_VITCLine(
long *pLine );Parameters
- pLine
- [out] Pointer to the vertical line(s) containing the timecode information (valid lines are 11-20).
Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
To get VITC information from multiple lines, make successive calls to this method, once for each line desired, with the hi bit set for each line.
See Also
IAMTimecodeGenerator::put_VITCLine
IAMTimecodeGenerator Interface
IAMTimecodeGenerator::put_VITCLineSpecifies which line to insert the vertical interval timecode information into.
HRESULT put_ VITCLine(
long Line );Parameters
- Line
- [in] Vertical line to contain the timecode information (valid lines are 11-20; 0 means autoselect).
Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
To generate VITC on specific multiple lines, make successive calls to this method, once for each line desired.
Set the hi bit to add to this line to any previously set lines.
See Also
IAMTimecodeGenerator::get_VITCLine
IAMTimecodeGenerator Interface
IAMTimecodeGenerator::SetTCGModeSets the SMPTE timecode generator properties.
HRESULT SetTCGMode(
long Param,
long Value
);Parameters
- Param
- [in] Timecode generator mode. Specify one of the following properties.
Value Meaning ED_TCG_FRAMERATE Frame rate ED_TCG_REFERENCE_SOURCE Source of the count value ED_TCG_SYNC_SOURCE Source of the hardware clock reference ED_TCG_TIMECODE_TYPE SMPTE timecode format of the generator - Value
- [in] Setting of the parameter specified in Param.
Value Meaning If ED_TCG_TIMECODE_TYPE specified in Param, set one of the following: ED_TCG_MIDI_FULL MIDI Full Frame timecode ED_TCG_MIDI_QF MIDI Quarter Frame timecode ED_TCG_SMPTE_LTC Linear TimeCode ED_TCG_SMPTE_VITC Vertical Interval TimeCode If , ED_TCG_FRAMERATE specified in Param, this parameter is set to one of the following: ED_FORMAT_SMPTE_24 24 frames per second ED_FORMAT_SMPTE_25 25 frames per second ED_FORMAT_SMPTE_30 30 frames per second. Nondrop frame ED_FORMAT_SMPTE_30DROP 30 frames per second. Drop frame (actually 29.97 fps) If ED_TCG_SYNC_SOURCE specified in Param, set one of the following: ED_TCG_FREE Lock to nothing (freerun) ED_TCG_READER Lock to timecode reader ED_TCG_VIDEO Lock to incoming video If ED_TCG_REFERENCE_SOURCE specified in Param, set one of the following: ED_TCG_FREE No count reference source ED_TCG_READER sync to reader value (jamsync) Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
This method sets various properties of the timecode generator. For more information on ED_TCG_TIMECODE_TYPE, see the IAMTimecodeReader::SetTCRMode method.
See Also
IAMTimecodeGenerator::GetTCGMode
IAMTimecodeGenerator Interface
IAMTimecodeGenerator::SetTimecodeSets the timecode, userbits value, or both.
HRESULT SetTimecode(
PTIMECODE_SAMPLE pTimecodeSample
);Parameters
- pTimecodeSample
- [in] Pointer to a TIMECODE_SAMPLE timecode structure.
Return Values
Returns an HRESULT value that depends on the implementation of the interface.
Remarks
To set only timecode, set userbit value to NULL, and vice versa. If generator is running, these values will take effect immediately.
See Also
IAMTimecodeGenerator::GetTimecode
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.