Remove some unneeded casts of bit_rate.
This commit is contained in:
parent
c34c0e3a64
commit
724cf83f10
17 changed files with 22 additions and 22 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue