Skip to content

Commit

Permalink
rebase master
Browse files Browse the repository at this point in the history
  • Loading branch information
deanlee committed Jan 18, 2021
1 parent 18c3417 commit a72f77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions selfdrive/common/queue.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once

#include <condition_variable>
#include <mutex>
#include <queue>
Expand Down
2 changes: 1 addition & 1 deletion selfdrive/loggerd/omx_encoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ OmxEncoder::OmxEncoder(const char* filename, int width, int height, int fps, int

// fill the input free queue
for (auto &buf : this->in_buf_headers) {
queue_push(&this->free_in, (void*)buf);
this->free_in.push(buf);
}
}

Expand Down

0 comments on commit a72f77d

Please sign in to comment.