audioscience / avdecc-lib

Simple C++ library for implementing IEEE1722.1 (AVB Device Enumeration, Discovery and Control)
MIT License
79 stars 45 forks source link

default stream_id should be 0 #343

Open andrew-elder opened 7 years ago

andrew-elder commented 7 years ago

This line https://github.com/audioscience/avdecc-lib/blob/master/controller/lib/src/acmp_controller_state_machine.cpp#L89 sets the stream_id to 0xffffffffffffffff, but it should instead be set to 0x0.

ahogen commented 7 years ago

So use jdksavdecc_eui64_zero(...) at "jdksavdecc-c/include/jdksavdecc_util.h" line 766 instead?

andrew-elder commented 7 years ago

Yes, that is my thought.