| Submitter | malc |
|---|---|
| Date | Sept. 16, 2009, 1:23 a.m. |
| Message ID | <Pine.LNX.4.64.0909160522320.2274@linmac.oyster.ru> |
| Download | mbox | patch |
| Permalink | /patch/33682/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/audio/mixeng.h b/audio/mixeng.h index cac0569..4af1dd9 100644 --- a/audio/mixeng.h +++ b/audio/mixeng.h @@ -27,7 +27,7 @@ #ifdef FLOAT_MIXENG typedef float mixeng_real; struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; -struct mixeng_sample { mixeng_real l; mixeng_real r; }; +struct st_sample { mixeng_real l; mixeng_real r; }; #else struct mixeng_volume { int mute; int64_t r; int64_t l; }; struct st_sample { int64_t l; int64_t r; };