summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorHou Qi <qi.hou@nxp.com>2021-07-27 10:43:21 +0800
committerHou Qi <qi.hou@nxp.com>2021-08-02 17:37:52 +0800
commit6858c8222cfb7fce5644c321aaae90db3c150f63 (patch)
treec37ea44e268fc053008197a16263a99f1c204dd4 /sys
parent4a5197dc27a3300111df5ee44a613a58ccdabd47 (diff)
v4l2: Keep decoder capture fps same as output fps if it's not set
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1035>
Diffstat (limited to 'sys')
-rw-r--r--sys/v4l2/gstv4l2object.c28
-rw-r--r--sys/v4l2/gstv4l2videodec.c4
2 files changed, 32 insertions, 0 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c
index 813f9cba9..db60cbc85 100644
--- a/sys/v4l2/gstv4l2object.c
+++ b/sys/v4l2/gstv4l2object.c
@@ -2219,6 +2219,26 @@ done:
return ret;
}
+static gboolean
+gst_v4l2_object_get_streamparm (GstV4l2Object * v4l2object, GstVideoInfo * info)
+{
+ struct v4l2_streamparm streamparm;
+ memset (&streamparm, 0x00, sizeof (struct v4l2_streamparm));
+ streamparm.type = v4l2object->type;
+ if (v4l2object->ioctl (v4l2object->video_fd, VIDIOC_G_PARM, &streamparm) < 0) {
+ GST_WARNING_OBJECT (v4l2object->dbg_obj, "VIDIOC_G_PARM failed");
+ return FALSE;
+ }
+ if (v4l2object->type == V4L2_BUF_TYPE_VIDEO_CAPTURE
+ || v4l2object->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
+ GST_VIDEO_INFO_FPS_N (info) =
+ streamparm.parm.capture.timeperframe.denominator;
+ GST_VIDEO_INFO_FPS_D (info) =
+ streamparm.parm.capture.timeperframe.numerator;
+ }
+ return TRUE;
+}
+
static int
gst_v4l2_object_try_fmt (GstV4l2Object * v4l2object,
struct v4l2_format *try_fmt)
@@ -4218,6 +4238,14 @@ gst_v4l2_object_acquire_format (GstV4l2Object * v4l2object, GstVideoInfo * info)
height);
gst_v4l2_object_get_colorspace (v4l2object, &fmt, &info->colorimetry);
+ gst_v4l2_object_get_streamparm (v4l2object, info);
+ if ((info->fps_n == 0) && (v4l2object->type == V4L2_BUF_TYPE_VIDEO_CAPTURE
+ || v4l2object->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)) {
+ info->fps_d = v4l2object->info.fps_d;
+ info->fps_n = v4l2object->info.fps_n;
+ GST_DEBUG_OBJECT (v4l2object->dbg_obj, "Set capture fps to %d/%d",
+ info->fps_n, info->fps_d);
+ }
gst_v4l2_object_save_format (v4l2object, fmtdesc, &fmt, info, &align);
diff --git a/sys/v4l2/gstv4l2videodec.c b/sys/v4l2/gstv4l2videodec.c
index 65a9d4047..097f3cae6 100644
--- a/sys/v4l2/gstv4l2videodec.c
+++ b/sys/v4l2/gstv4l2videodec.c
@@ -690,6 +690,10 @@ gst_v4l2_video_dec_handle_frame (GstVideoDecoder * decoder,
gst_buffer_unref (codec_data);
+ /* init capture fps according to output */
+ self->v4l2capture->info.fps_d = self->v4l2output->info.fps_d;
+ self->v4l2capture->info.fps_n = self->v4l2output->info.fps_n;
+
/* For decoders G_FMT returns coded size, G_SELECTION returns visible size
* in the compose rectangle. gst_v4l2_object_acquire_format() checks both
* and returns the visible size as with/height and the coded size as