Browse Source

Silence some ICC warnings. Patch by Vitor Sessak.

Originally committed as revision 16006 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak Reynaldo H. Verdejo Pinochet 16 years ago
parent
commit
6e74619e5e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/qcelpdec.c

+ 2
- 2
libavcodec/qcelpdec.c View File

@@ -600,7 +600,7 @@ void interpolate_lpc(QCELPContext *q, const float *curr_lspf, float *lpc,
ff_qcelp_lspf2lpc(curr_lspf, lpc);
}

static int buf_size2bitrate(const int buf_size)
static qcelp_packet_rate buf_size2bitrate(const int buf_size)
{
switch(buf_size)
{
@@ -611,7 +611,7 @@ static int buf_size2bitrate(const int buf_size)
case 1: return SILENCE;
}

return -1;
return I_F_Q;
}

/**


Loading…
Cancel
Save