mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-10 14:38:08 +00:00
mvdec: minor simplification, remove av_inv_q()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4c9f35bb7c
commit
e6cc3c869b
@ -165,8 +165,8 @@ static int parse_video_var(AVFormatContext *avctx, AVStream *st, const char *nam
|
|||||||
}
|
}
|
||||||
av_free(str);
|
av_free(str);
|
||||||
} else if (!strcmp(name, "FPS")) {
|
} else if (!strcmp(name, "FPS")) {
|
||||||
AVRational tb = av_inv_q(var_read_float(pb, size));
|
AVRational fps = var_read_float(pb, size);
|
||||||
avpriv_set_pts_info(st, 64, tb.num, tb.den);
|
avpriv_set_pts_info(st, 64, fps.den, fps.num);
|
||||||
} else if (!strcmp(name, "HEIGHT")) {
|
} else if (!strcmp(name, "HEIGHT")) {
|
||||||
st->codec->height = var_read_int(pb, size);
|
st->codec->height = var_read_int(pb, size);
|
||||||
} else if (!strcmp(name, "PIXEL_ASPECT")) {
|
} else if (!strcmp(name, "PIXEL_ASPECT")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user