Skip to content

Commit

Permalink
MINOR: Adjust decoder timeout (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexodessa authored Nov 29, 2024
1 parent 1b6ae68 commit 9da0e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/videonative/src/main/cpp/VideoDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class VideoDecoder {
static constexpr const bool PRINT_DEBUG_INFO = true;
static constexpr auto TIME_BETWEEN_LOGS = std::chrono::seconds(5);
static constexpr int64_t BUFFER_TIMEOUT_US =
35 * 1000; //40ms (a little bit more than 32 ms (==30 fps))
17 * 1000; // 17ms (a little bit more than 17 ms (==60 fps))
private:
KeyFrameFinder mKeyFrameFinder;
bool IS_H265 = false;
Expand Down

0 comments on commit 9da0e39

Please sign in to comment.