]> git.sesse.net Git - bmusb/commitdiff
Add a call create_frame() to help performance in VA-API MJPEG uploads.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 17 Mar 2019 18:35:15 +0000 (19:35 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 17 Mar 2019 18:35:15 +0000 (19:35 +0100)
bmusb/bmusb.h

index a484496bd6be5cd0aa83512258c0e87f75a79978..cec84d9ae6bef90c65fee708462991eea0978d8b 100644 (file)
@@ -73,6 +73,22 @@ class FrameAllocator {
        // if so, the frame in progress will be dropped.
        virtual Frame alloc_frame() = 0;
 
+       // Similar to alloc_frame(), with two additional restrictions:
+       //
+       //  - The width, height and stride given must be correct
+       //    (can not be changed after the call).
+       //  - create_frame(), unlike alloc_frame(), is allowed to sleep
+       //    (so bmusb will never call it, but in Nageru, other producers
+       //    might)
+       //
+       // These two restrictions are relevant for Nageru, since it means that
+       // it can make frame_copy point directly into a VA-API buffer to avoid
+       // an extra copy.
+       virtual Frame create_frame(size_t width, size_t height, size_t stride)
+       {
+               return alloc_frame();
+       }
+
        virtual void release_frame(Frame frame) = 0;
 };