mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/mxf: use FFABS to instead of abs
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
This commit is contained in:
parent
a30085f570
commit
cb259467d1
@ -157,7 +157,7 @@ const MXFSamplesPerFrame *ff_mxf_get_samples_per_frame(AVFormatContext *s,
|
||||
int idx = av_find_nearest_q_idx(time_base, mxf_time_base);
|
||||
AVRational diff = av_sub_q(time_base, mxf_time_base[idx]);
|
||||
|
||||
diff.num = abs(diff.num);
|
||||
diff.num = FFABS(diff.num);
|
||||
|
||||
if (av_cmp_q(diff, (AVRational){1, 1000}) >= 0)
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user