Browse Source

Document how the ref_buf is used.

Originally committed as revision 24551 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Reimar Döffinger 15 years ago
parent
commit
6f2c05f307
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavcodec/gsmdec.c

+ 4
- 0
libavcodec/gsmdec.c View File

@@ -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];


Loading…
Cancel
Save