~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/3rdparty/include/dshow/audevcod.h

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _AUDEVCOD_H
 
2
#define _AUDEVCOD_H
 
3
#if __GNUC__ >=3
 
4
#pragma GCC system_header
 
5
#endif
 
6
 
 
7
#ifdef __cplusplus
 
8
extern "C" {
 
9
#endif
 
10
 
 
11
typedef enum _tagSND_DEVICE_ERROR {
 
12
    SNDDEV_ERROR_Open = 1,
 
13
    SNDDEV_ERROR_Close = 2,
 
14
    SNDDEV_ERROR_GetCaps = 3,
 
15
    SNDDEV_ERROR_PrepareHeader = 4,
 
16
    SNDDEV_ERROR_UnprepareHeader = 5,
 
17
    SNDDEV_ERROR_Reset = 6,
 
18
    SNDDEV_ERROR_Restart = 7,
 
19
    SNDDEV_ERROR_GetPosition = 8,
 
20
    SNDDEV_ERROR_Write = 9,
 
21
    SNDDEV_ERROR_Pause = 10,
 
22
    SNDDEV_ERROR_Stop = 11,
 
23
    SNDDEV_ERROR_Start = 12,
 
24
    SNDDEV_ERROR_AddBuffer = 13,
 
25
    SNDDEV_ERROR_Query = 14
 
26
} SNDDEV_ERR;
 
27
 
 
28
#ifdef __cplusplus
 
29
}
 
30
#endif
 
31
#endif