Skip to content
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

clear next_buffer_time when stopping #1237

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,8 @@ static void timer_callback(UNUSED uint unused0, UNUSED uint unused1) {
if (recording_flags > 0) {
recording_finalise();
}

// clear the next buffer time
next_buffer_time = 0;
log_debug("Last time of stop notification request: %d",
last_stop_notification_request);

Expand Down