Divya Sampath Kumar
Divya Sampath Kumar
The application I modified was the application you provided. Not sure what you mean by short circuiting, but I am merely running stop in a thread based on the global...
@daveisfera , One more thing I missed suggesting, and might be worth looking into in your architecture is to reset the stream with [kinesisVideoStreamResetStream](https://github.com/awslabs/amazon-kinesis-video-streams-pic/blob/master/src/client/include/com/amazonaws/kinesis/video/client/Include.h#L2410) (which you seem to be doing...
There are some improvements I have identified that can be made along the stop logic. One thing I noticed in this debugging exercise is we do not allow stopping in...
`resetStream` is not something we really need to use every time. `resetStream` drops whatever frames are in the buffer and reset the internal state machine. Essentially you are in a...
https://github.com/awslabs/amazon-kinesis-video-streams-producer-c/issues/409#issuecomment-1743253534 -- here is the answer. I have already addressed what is missing in the SDK handling and looking for a way to fix that. I have offered some solutions...
@sushantpaudyal , Thank you for the report. Could you try running: ``` export LDFLAGS="-L/usr/local/opt/openssl/lib" export CPPFLAGS="-I/usr/local/opt/openssl/include" ```
@dp-smartparkpro , We have not seen this error and we do not set `no-nullability-completeness` or `float-abi=hard` either in our build scripts. Are there are any custom cmake changes you are...
@Alex-Wenner-FHR , Moving to `aws-sdk-java-v2` would be a bigger task and would require a lot of testing to ensure our SDK does not break. Will update the thread when we...
@apurohitrivian , Thank you for the details. Will look into this and revert back.
@RTL8710 , Some context: CTR_DRBG is a deterministic random bit generator based on the AES block cipher operating in counter mode. Entropy Source provides the randomness needed for cryptographic operations....