joint_decode(float * mlt_buffer1,int t)1 void joint_decode(float* mlt_buffer1, int t) {
2     int i;
3     float decode_buffer[1060];
4     foo(decode_buffer);
5     for (i=0; i<10 ; i++) {
6         mlt_buffer1[i] = i * decode_buffer[t];
7     }
8 }
9