Revision 1d14ffa9 audio/mixeng.h

b/audio/mixeng.h
1 1
/*
2 2
 * QEMU Mixing engine header
3
 * 
4
 * Copyright (c) 2004 Vassili Karpov (malc)
5
 * 
3
 *
4
 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5
 *
6 6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 7
 * of this software and associated documentation files (the "Software"), to deal
8 8
 * in the Software without restriction, including without limitation the rights
......
24 24
#ifndef QEMU_MIXENG_H
25 25
#define QEMU_MIXENG_H
26 26

  
27
typedef void (t_sample) (void *dst, const void *src, int samples);
28
typedef void (f_sample) (void *dst, const void *src, int samples);
27
#ifdef FLOAT_MIXENG
28
typedef float real_t;
29
typedef struct { int mute; real_t r; real_t l; } volume_t;
30
typedef struct { real_t l; real_t r; } st_sample_t;
31
#else
32
typedef struct { int mute; int64_t r; int64_t l; } volume_t;
29 33
typedef struct { int64_t l; int64_t r; } st_sample_t;
34
#endif
35

  
36
typedef void (t_sample) (st_sample_t *dst, const void *src,
37
                         int samples, volume_t *vol);
38
typedef void (f_sample) (void *dst, const st_sample_t *src, int samples);
30 39

  
31
extern t_sample *mixeng_conv[2][2][2];
32
extern f_sample *mixeng_clip[2][2][2];
40
extern t_sample *mixeng_conv[2][2][2][2];
41
extern f_sample *mixeng_clip[2][2][2][2];
33 42

  
34 43
void *st_rate_start (int inrate, int outrate);
35 44
void st_rate_flow (void *opaque, st_sample_t *ibuf, st_sample_t *obuf,
36 45
                   int *isamp, int *osamp);
46
void st_rate_flow_mix (void *opaque, st_sample_t *ibuf, st_sample_t *obuf,
47
                       int *isamp, int *osamp);
37 48
void st_rate_stop (void *opaque);
49
void mixeng_clear (st_sample_t *buf, int len);
38 50

  
39 51
#endif  /* mixeng.h */

Also available in: Unified diff