view loader/dmo/dmo_guids.h @ 33263:5f527a9a9521

Add an exit function. This function will allow performing clean-up operations. (MPlayer calls guiDone() before exiting, but only if the GUI has been initialized, i.e. if guiInit() has been called successfully. Any exit_player()/exit_player_with_rc() after GUI's cfg_read() until guiInit(), or any exit_player() during guiInit() itself will end the GUI without calling guiDone(). This exit function will at least handle abortions during guiInit() itself. It will be called twice in case of an guiExit() after GUI initialization - first directly, next by guiDone() via MPlayer's exit_player_with_rc().)
author ib
date Tue, 03 May 2011 12:19:22 +0000
parents 008338d7679f
children
line wrap: on
line source

#ifndef MPLAYER_DMO_GUIDS_H
#define MPLAYER_DMO_GUIDS_H

#include "loader/dshow/guids.h"

extern const GUID IID_IMediaBuffer;
extern const GUID IID_IMediaObject;
extern const GUID IID_IEnumDMO;
extern const GUID IID_IMediaObjectInPlace;
extern const GUID IID_IDMOQualityControl;
extern const GUID IID_IDMOVideoOutputOptimizations;

/* to be removed
extern const GUID DMOCATEGORY_AUDIO_DECODER;
extern const GUID DMOCATEGORY_AUDIO_ENCODER;
extern const GUID DMOCATEGORY_VIDEO_DECODER;
extern const GUID DMOCATEGORY_VIDEO_ENCODER;
extern const GUID DMOCATEGORY_AUDIO_EFFECT;
extern const GUID DMOCATEGORY_VIDEO_EFFECT;
extern const GUID DMOCATEGORY_AUDIO_CAPTURE_EFFECT;

// Acoustic Echo Canceller
// Matches KSNODETYPE_ACOUSTIC_ECHO_CANCEL
extern const GUID DMOCATEGORY_ACOUSTIC_ECHO_CANCEL;

// Noise Suppression
// Matches KSNODETYPE_AUDIO_NOISE_SUPPRESS
extern const GUID DMOCATEGORY_AUDIO_NOISE_SUPPRESS;

// Automatic Gain Control
// Matches KSNODETYPE_AGC
extern const GUID DMOCATEGORY_AGC;
*/

#endif /* MPLAYER_DMO_GUIDS_H */