Skip to content

Commit

Permalink
Apply lints
Browse files Browse the repository at this point in the history
  • Loading branch information
scotts committed Dec 20, 2024
1 parent 921b822 commit b349282
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/decoders/VideoDecoderTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ class VideoDecoderTest : public testing::TestWithParam<bool> {
content_ = outputStringStream.str();
void* buffer = content_.data();
size_t length = outputStringStream.str().length();
return VideoDecoder::createFromBuffer(buffer, length, VideoDecoder::SeekMode::approximate);
return VideoDecoder::createFromBuffer(
buffer, length, VideoDecoder::SeekMode::approximate);
} else {
return VideoDecoder::createFromFilePath(filepath, VideoDecoder::SeekMode::approximate);
return VideoDecoder::createFromFilePath(
filepath, VideoDecoder::SeekMode::approximate);
}
}
std::string content_;
Expand Down

0 comments on commit b349282

Please sign in to comment.