Skip to content

Commit 7afe854

Browse files
committed
Minor fixes
1 parent 52126b2 commit 7afe854

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/samples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: kvssink_gstreamer_sample
6060
args: sample.mp4
6161
- name: kvssink_intermittent_sample # There is no file source option for this sample (will use gst videotestsrc).
62-
args: testsrc 120 # <stream_name> <gst-videotestsrc> <sample_duration_seconds>
62+
args: testsrc 120 # <gst-videotestsrc> <sample_duration_seconds>
6363
runner:
6464
- id: macos-13
6565
image: macos-13
@@ -436,7 +436,7 @@ jobs:
436436
- name: kvssink_gstreamer_sample
437437
args: sample.mp4
438438
- name: kvssink_intermittent_sample # There is no file source option for this sample (will use gst videotestsrc).
439-
args: testsrc 120 # <stream_name> <gst-videotestsrc> <sample_duration_seconds>
439+
args: testsrc 120 # <gst-videotestsrc> <sample_duration_seconds>
440440
image:
441441
- Ubuntu-22.04
442442
- Ubuntu-24.04

src/gstreamer/gstkvssink.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ gst_kvs_sink_handle_sink_event (GstCollectPads *pads,
12201220
if(data && data->kinesis_video_stream) {
12211221
Frame eofr = EOFR_FRAME_INITIALIZER;
12221222
LOG_INFO("Sending EOFR for " << kvssink->stream_name);
1223-
STATUS put_eofr_status = data->kinesis_video_stream->putFrame(eofr);
1223+
STATUS put_eofr_status = data->kinesis_video_stream->statusPutFrame(eofr);
12241224
if(STATUS_FAILED(put_eofr_status)) {
12251225
LOG_WARN("Failed to put EOFR for " << kvssink->stream_name);
12261226
}

0 commit comments

Comments
 (0)