Commit 24d6af0f authored by Michael Niedermayer's avatar Michael Niedermayer

sierravmd: flip reduce arg order.

This should make no difference but might help static analyzers
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent de6c1504
...@@ -148,7 +148,7 @@ static int vmd_read_header(AVFormatContext *s) ...@@ -148,7 +148,7 @@ static int vmd_read_header(AVFormatContext *s)
/* calculate pts */ /* calculate pts */
num = st->codec->block_align; num = st->codec->block_align;
den = st->codec->sample_rate * st->codec->channels; den = st->codec->sample_rate * st->codec->channels;
av_reduce(&den, &num, den, num, (1UL<<31)-1); av_reduce(&num, &den, num, den, (1UL<<31)-1);
avpriv_set_pts_info(vst, 33, num, den); avpriv_set_pts_info(vst, 33, num, den);
avpriv_set_pts_info(st, 33, num, den); avpriv_set_pts_info(st, 33, num, den);
} }
......
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