-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add call to gst_ctf_close and ref counting #110
Add call to gst_ctf_close and ref counting #110
Conversation
Thanks for sharing this useful tool! This change works for me to resolve #92 as tested with a modified version of the deepstream-test1 sample application on tegra. One requirement is to ensure your pipeline exits gracefully and calls
|
Thanks for the suggestion, I think it is a clever alternative to depending on gst_deinit |
To avoid issues with empty files on exit of the pipeline, see [1]. Note: This code only works if the pipleine gracefully exits, including calling `gst_deinit()`. This probably means you need to add a signal handler for SIGINT if your pipeline doesn't exit normally. 1: RidgeRun#92 Signed-off-by: Dan Walkes <[email protected]>
7a2a8e2
to
6bb5a03
Compare
To avoid issues with empty files on exit of the pipeline, see
[1].
Note: This code only works if the pipleine gracefully exits,
including calling
gst_deinit()
. This probably means youneed to add a signal handler for SIGINT if your pipeline
doesn't exit normally.
1: #92
Signed-off-by: Dan Walkes [email protected]