Metodo CAMSchedule.AddAdvisePacket

[La funzionalità associata a questa pagina, DirectShow, è una funzionalità legacy. È stata sostituita da MediaPlayer, FMMediaEngine e Audio/Video Capture in Media Foundation. Queste funzionalità sono state ottimizzate per Windows 10 e Windows 11. Microsoft consiglia vivamente che il nuovo codice usi MediaPlayer, FMMediaEngine e Audio/Video Capture in Media Foundation anziché DirectShow, quando possibile. Microsoft suggerisce che il codice esistente che usa le API legacy venga riscritto per usare le nuove API, se possibile.

Il AddAdvisePacket metodo aggiunge una richiesta di consulenza all'elenco delle richieste in sospeso.

Sintassi

DWORD_PTR AddAdvisePacket(
  [ref] const REFERENCE_TIME &time1,
  [ref] const REFERENCE_TIME &time2,
              HANDLE         hNotify,
              BOOL           bPeriodic
);

Parametri

time1 [ref]

Tempo richiesto per la consulenza.

time2 [ref]

Per le richieste di consulenza periodice, il tempo tra le notifiche. Questo parametro viene ignorato se bPeriodic è FALSE.

hNotify

Gestire un semaforo se bPeriodic è TRUE o gestire un evento se bPeriodic è FALSE.

bPeriodic

Valore booleano che specifica se aggiungere una notifica periodica o una notifica one-shot. Se TRUE, la notifica è periodica; il parametro time2 specifica il tempo tra le notifiche. Se FALSE, la notifica viene eseguita una sola volta.

Valore restituito

Restituisce un identificatore per la richiesta di consulenza (il "cookie"). Se il metodo ha esito negativo, il valore restituito è zero.

Requisiti

Requisito Valore
Intestazione
Dsschedule.h (include Streams.h)
Libreria
Strmbase.lib (build al dettaglio);
Strmbasd.lib (build di debug)

Vedi anche

Classe CAMSchedule