]> git.sesse.net Git - ffmpeg/commitdiff
avdevice/decklink_dec: do not copy video data
authorMarton Balint <cus@passwd.hu>
Sun, 22 Apr 2018 20:29:09 +0000 (22:29 +0200)
committerMarton Balint <cus@passwd.hu>
Mon, 30 Apr 2018 20:44:58 +0000 (22:44 +0200)
Create a buffer from the data instead and use the buffer destructor to free the
DeckLink frame. This avoids a memcpy of the frame data.

Signed-off-by: Marton Balint <cus@passwd.hu>
libavdevice/decklink_dec.cpp

index e97a4402ea319aa57284ff26e4688f2526ad2fb1..10535dc388e497dd4081d044f9f0b723a075dc0e 100644 (file)
@@ -98,6 +98,14 @@ static VANCLineNumber vanc_line_numbers[] = {
     {bmdModeUnknown, 0, -1, -1, -1}
 };
 
     {bmdModeUnknown, 0, -1, -1, -1}
 };
 
+extern "C" {
+static void decklink_object_free(void *opaque, uint8_t *data)
+{
+    IUnknown *obj = (class IUnknown *)opaque;
+    obj->Release();
+}
+}
+
 static int get_vanc_line_idx(BMDDisplayMode mode)
 {
     unsigned int i;
 static int get_vanc_line_idx(BMDDisplayMode mode)
 {
     unsigned int i;
@@ -797,6 +805,10 @@ HRESULT decklink_input_callback::VideoInputFrameArrived(
             }
         }
 
             }
         }
 
+        pkt.buf = av_buffer_create(pkt.data, pkt.size, decklink_object_free, videoFrame, 0);
+        if (pkt.buf)
+            videoFrame->AddRef();
+
         if (avpacket_queue_put(&ctx->queue, &pkt) < 0) {
             ++ctx->dropped;
         }
         if (avpacket_queue_put(&ctx->queue, &pkt) < 0) {
             ++ctx->dropped;
         }