mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
astenc: Remove two AVRationals with denominator 1
They are completely superfluous when using av_rescale_q_rnd(). Call av_rescale_rnd() using what used to be the numerators instead. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8525fa7c2c
commit
974ac57e83
@ -37,7 +37,7 @@ typedef struct ASTMuxContext {
|
||||
|
||||
#define CHECK_LOOP(type) \
|
||||
if (ast->loop ## type) { \
|
||||
ast->loop ## type = av_rescale_q_rnd(ast->loop ## type, (AVRational){enc->sample_rate, 1}, (AVRational){1000, 1}, AV_ROUND_DOWN); \
|
||||
ast->loop ## type = av_rescale_rnd(ast->loop ## type, enc->sample_rate, 1000, AV_ROUND_DOWN); \
|
||||
if (ast->loop ## type < 0 || ast->loop ## type > UINT_MAX) { \
|
||||
av_log(s, AV_LOG_ERROR, "Invalid loop" #type " value\n"); \
|
||||
return AVERROR(EINVAL); \
|
||||
|
Loading…
Reference in New Issue
Block a user