From: Michael Niedermayer Date: Tue, 26 Apr 2011 01:31:02 +0000 (+0200) Subject: mp3enc:use FFMIN() X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f2a90c3b3456ade0cff94ebd3b787a05305e50f0;p=ffmpeg mp3enc:use FFMIN() Signed-off-by: Michael Niedermayer --- diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 7a801596c7a..dfcad8753ec 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -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);