mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
Replace various inlined inverse AVRational with av_inv_q().
This commit is contained in:
+1
-1
@@ -164,7 +164,7 @@ static av_cold int fbdev_read_header(AVFormatContext *avctx)
|
||||
st->codec->width = fbdev->width;
|
||||
st->codec->height = fbdev->height;
|
||||
st->codec->pix_fmt = pix_fmt;
|
||||
st->codec->time_base = (AVRational){fbdev->framerate_q.den, fbdev->framerate_q.num};
|
||||
st->codec->time_base = av_inv_q(fbdev->framerate_q);
|
||||
st->codec->bit_rate =
|
||||
fbdev->width * fbdev->height * fbdev->bytes_per_pixel * av_q2d(fbdev->framerate_q) * 8;
|
||||
|
||||
|
||||
@@ -372,7 +372,7 @@ static int vfw_read_header(AVFormatContext *s)
|
||||
goto fail;
|
||||
|
||||
codec = st->codec;
|
||||
codec->time_base = (AVRational){framerate_q.den, framerate_q.num};
|
||||
codec->time_base = av_inv_q(framerate_q);
|
||||
codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
codec->width = bi->bmiHeader.biWidth;
|
||||
codec->height = bi->bmiHeader.biHeight;
|
||||
|
||||
@@ -302,7 +302,7 @@ x11grab_read_header(AVFormatContext *s1)
|
||||
|
||||
x11grab->frame_size = x11grab->width * x11grab->height * image->bits_per_pixel/8;
|
||||
x11grab->dpy = dpy;
|
||||
x11grab->time_base = (AVRational){framerate.den, framerate.num};
|
||||
x11grab->time_base = av_inv_q(framerate);
|
||||
x11grab->time_frame = av_gettime() / av_q2d(x11grab->time_base);
|
||||
x11grab->x_off = x_off;
|
||||
x11grab->y_off = y_off;
|
||||
|
||||
Reference in New Issue
Block a user