gsmtolin define as:<br><br>static struct ast_translator gsmtolin = {<br>    .name = &quot;gsmtolin&quot;, <br>    .srcfmt = AST_FORMAT_GSM,<br>    .dstfmt = AST_FORMAT_SLINEAR,<br>    .newpvt = gsm_new,<br>    .framein = gsmtolin_framein,<br>
    .destroy = gsm_destroy_stuff,<br>    .sample = gsm_sample,<br>    .buffer_samples = BUFFER_SAMPLES,<br>    .buf_size = BUFFER_SAMPLES * 2,<br>    .desc_size = sizeof (struct gsm_translator_pvt ),<br>};<br><br>I can&#39;t find the function pointer frameout be set. Will this actually work? I doubt it.<br>
<br>