view loader/dmo/dmo_guids.h @ 13000:076e87baf7c0

--Patch by Stefan '1stein' Schuermans <1stein@schuermans.info>: on the CCC-Camp ICMP2 (www.icmp2.de) this weekend, some friends and I played around with our Blinkenlights replicas and found a little bug in your MPlayer Blinkenlights outpur driver "vo_bl". The Blinkenlights UDP-Protocol contains the maximum grayscale value "maxval" (e.g. 255 for 8 bit) instead of the number of grayscales (e.g. 256 for 8 bit). Because some programs are very strict concerning this value, we had to patch mpalyer to get it to work. Today, I've added an output scheme "hdl" for the Haus des Lehrers in Berlin, on which an installation with grayscales was done last winter. Additionally, I've also added an output scheme named "grayscale" that adapts the size of the UDP packets to the size used with "-vf scale -zoom" that we will need for a project (a room with over 15000 pixels at the walls and floor) next year.
author rik
date Wed, 11 Aug 2004 13:39:32 +0000
parents 8e00b6a9e40b
children 052b4ad84883
line wrap: on
line source

#ifndef DMO_GUIDS_H
#define DMO_GUIDS_H

#include "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 Supression
// Matches KSNODETYPE_AUDIO_NOISE_SUPPRESS
extern const GUID DMOCATEGORY_AUDIO_NOISE_SUPPRESS;

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

#endif