]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
BCM2835-V4L2: Correctly denote key frames in encoded data
authorDave Stevenson <dave.stevenson@raspberrypi.org>
Mon, 13 Feb 2017 13:11:41 +0000 (13:11 +0000)
committerStefan Bader <stefan.bader@canonical.com>
Tue, 8 Aug 2017 12:51:58 +0000 (14:51 +0200)
Forward MMAL key frame flags to the V4L2 buffers.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
drivers/media/platform/bcm2835/bcm2835-camera.c

index e69731320f4e59249933bc21843913deab4a1209..6bdec0806126044cf7146d53326e4da5b4269884 100644 (file)
@@ -413,6 +413,9 @@ static void buffer_cb(struct vchiq_mmal_instance *instance,
                        dev->capture.last_timestamp = buf->vb.vb2_buf.timestamp;
 
                        vb2_set_plane_payload(&buf->vb.vb2_buf, 0, length);
+                       if (mmal_flags & MMAL_BUFFER_HEADER_FLAG_KEYFRAME)
+                               buf->vb.flags |= V4L2_BUF_FLAG_KEYFRAME;
+
                        v4l2_dbg(1, bcm2835_v4l2_debug, &dev->v4l2_dev,
                                "Buffer has ts %llu",
                                dev->capture.last_timestamp);