Lines Matching full:handle
16 void gsm_encode(handle, src, dst)
18 gsm handle;
24 int gsm_decode(handle, src, dst)
26 gsm handle;
32 void gsm_destroy(handle)
34 gsm handle;
41 which can be used as a handle in subsequent calls to gsm_decode(),
67 gsm_create() returns an opaque handle object of type gsm, or 0 on error.
73 gsm handle;
80 if (!(handle = gsm_create())) error...
83 if (gsm_decode(handle, buf, sample) < 0) error...
87 gsm_destroy(handle);
92 if (!(handle = gsm_create())) error...
95 gsm_encode(handle, sample, buf);
99 gsm_destroy(handle);