Browse Source

Silence one warning when compiling with icc:

warning #188: enumerated type mixed with another type
      if((q->bitrate = determine_bitrate(avctx, buf_size, &buf)) == I_F_Q)
                     ^

Originally committed as revision 16374 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 17 years ago
parent
commit
3a095bee2b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/qcelpdec.c

+ 1
- 1
libavcodec/qcelpdec.c View File

@@ -646,7 +646,7 @@ static qcelp_packet_rate buf_size2bitrate(const int buf_size)
*
* TIA/EIA/IS-733 2.4.8.7.1
*/
static int determine_bitrate(AVCodecContext *avctx, const int buf_size,
static qcelp_packet_rate determine_bitrate(AVCodecContext *avctx, const int buf_size,
const uint8_t **buf)
{
qcelp_packet_rate bitrate;


Loading…
Cancel
Save