Dave Johansen
Dave Johansen
Is this going to be fixed? Retrying on network or server errors makes sense, but why is it retrying over and over on client errors that are just going to...
There are no more frames being added after the error, so it should exit normally. Can you please the modified sample I submitted with the callback to show me how...
Can you help me understand how this isn't a bug? An error response was received for the frame and there are no more frames being added, so why does it...
I believe the simplest way to do what you're asking is to move the sleep to the top of the loop, so I did that, but the behavior was exactly...
So you want me to call the stop in the callback? How will that work and how do I ensure that it won't be called multiple times? And what you're...
Here's a `Dockerfile` that you can use to build the SDK in a simple/reproducible way. I build it there and then run it inside of a container using that image:...
> https://github.com/awslabs/amazon-kinesis-video-streams-producer-c/tree/callback-sample --- I have added the simple sample here. Let me know if this works for you and if it does, it is a timing related issue. This version...
Ok, but what does that mean for an actual solution? I'm running this with video coming in and the functions only run when a frame comes in, so there's no...
The problem with using the thread is that it's not guaranteed to solve the problem. The timing of the execution of that thread could be delayed because of busy resources...
That change was in your sample and isn't in the example from the documentation ( https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/producersdk-c-write.html ), so is there something happening incorrectly in the official sample/documentation? If so, can...