Skip to content

Commit f493482

Browse files
committed
fix read_start_feed bug
Fixed because checking g_start_feeding status is needed.
1 parent 68c4ba0 commit f493482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/gstreamer-avb-plugins/gst-plugin/src/gstavbsink.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void * read_start_feed(void *arg)
270270
if (n > 0) {
271271
sscanf(buf, "%d", &g_start_feeding);
272272
printf("\nTransmitter status: %d", g_start_feeding);
273-
if (g_start_feed_socket == 2) {
273+
if (g_start_feeding == 2) {
274274
listeners = 0;
275275
halt_tx = 1;
276276
/* disable Qav */

0 commit comments

Comments
 (0)