]> git.sesse.net Git - nageru/commitdiff
Fix a variable name.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 10 Feb 2017 23:51:16 +0000 (00:51 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 10 Feb 2017 23:51:16 +0000 (00:51 +0100)
decklink_output.cpp

index 39b2cd09f2b270640306eb7c95e5419596ff5b8c..4d6b1e124041c20cb3f9438f015140fd6e542003 100644 (file)
@@ -356,8 +356,8 @@ HRESULT DeckLinkOutput::ScheduledFrameCompleted(/* in */ IDeckLinkVideoFrame *co
                break;
        }
 
-       static int hei = 0;
-       print_latency("DeckLink output latency (frame received → output on HDMI):", frame->received_ts, false, &hei);
+       static int frameno = 0;
+       print_latency("DeckLink output latency (frame received → output on HDMI):", frame->received_ts, false, &frameno);
 
        {
                lock_guard<mutex> lock(frame_queue_mutex);