Commit 6f2c05f3 authored by Reimar Döffinger's avatar Reimar Döffinger

Document how the ref_buf is used.

Originally committed as revision 24551 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d72c981c
......@@ -34,6 +34,10 @@
#define GSM_FRAME_SIZE 160
typedef struct {
// Contains first 120 elements from the previous frame
// (used by long_term_synth according to the "lag"),
// then in the following 160 elements the current
// frame is constructed.
int16_t ref_buf[280];
int v[9];
int lar[2][8];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment