Commit f2a90c3b authored by Michael Niedermayer's avatar Michael Niedermayer

mp3enc:use FFMIN()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 01be9331
......@@ -339,7 +339,7 @@ static void mp3_fix_xing(AVFormatContext *s)
for (i = 1; i < VBR_TOC_SIZE; ++i) {
int j = i * toc->pos / VBR_TOC_SIZE;
int seek_point = 256LL * toc->bag[j] / xing_header->size;
avio_w8(s->pb, (uint8_t)(seek_point < 256 ? seek_point : 255));
avio_w8(s->pb, FFMIN(seek_point, 255));
}
avio_flush(s->pb);
......
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