Commit c36bce5b authored by cehoyos's avatar cehoyos

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)
                     ^



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16374 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 43dfab77
......@@ -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;
......
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