Attention is currently required from: falconia, pespin.
Patch set 2:Code-Review +1
1 comment:
File src/trau/trau_rtp_conv.c:
Patch Set #2, Line 669: tf->xc_bits[0] = 0;
I tried doing this: […]
Oh, then my approach would not work either. AFAIU, array assignment is only possible during the definition, but not after that. I did an experiment, and even with `-std=c89` both gcc and clang refuse to compile the following code:
```
int main(void)
{
char data[6];
data = { 0, 0, 0, 1, 0, 0 };
data = { [3] = 1 };
return 0;
}
```
So yeah, let's keep this as-is then.
To view, visit change 37287. To unsubscribe, or for help writing mail filters, visit settings.