本文整理汇总了C++中Mixer::setChanEnd方法的典型用法代码示例。如果您正苦于以下问题:C++ Mixer::setChanEnd方法的具体用法?C++ Mixer::setChanEnd怎么用?C++ Mixer::setChanEnd使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mixer
的用法示例。
在下文中一共展示了Mixer::setChanEnd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: glue_setBeginEndChannel
void glue_setBeginEndChannel(gdEditor *win, int ch, int b, int e, bool recalc, bool check) {
if (check) {
if ((unsigned) e > G_Mixer.chan[ch]->size)
e = G_Mixer.chan[ch]->size;
if (b < 0)
b = 0;
if ((unsigned) b > G_Mixer.chan[ch]->size)
b = (G_Mixer.chan[ch]->size)-2;
if ((unsigned) b >= G_Mixer.chanEndTrue[ch])
b = G_Mixer.chanStart[ch];
if ((unsigned) e <= G_Mixer.chanStartTrue[ch])
e = G_Mixer.chanEnd[ch];
}
/* print mono values */
char tmp[16];
sprintf(tmp, "%d", b/2);
win->chanStart->value(tmp);
tmp[0] = '\0';
sprintf(tmp, "%d", e/2);
win->chanEnd->value(tmp);
G_Mixer.setChanStart(ch, b);
G_Mixer.setChanEnd (ch, e);
/* recalc is not needed when the user drags the bars directly over the waveform */
if (recalc) {
win->wt->wave->recalcPoints(); // importante, altrimenti non si vedono
win->wt->wave->redraw();
}
}