Remove some unneeded casts of bit_rate.

This commit is contained in:
Carl Eugen Hoyos 2017-09-22 01:33:22 +02:00
parent c34c0e3a64
commit 724cf83f10
17 changed files with 22 additions and 22 deletions

View file

@ -212,7 +212,7 @@ static int vqf_read_header(AVFormatContext *s)
break;
default:
av_log(s, AV_LOG_ERROR, "Mode not supported: %d Hz, %"PRId64" kb/s.\n",
st->codecpar->sample_rate, (int64_t)st->codecpar->bit_rate);
st->codecpar->sample_rate, st->codecpar->bit_rate);
return -1;
}
c->frame_bit_len = st->codecpar->bit_rate*size/st->codecpar->sample_rate;