Skip to content

Commit

Permalink
Remove inclusion of macro file in header file
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 715352265
  • Loading branch information
trevorknight authored and jwcullen committed Jan 14, 2025
1 parent 3eb9570 commit 283d8ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions iamf/common/obu_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include "absl/strings/str_cat.h"
#include "absl/strings/string_view.h"
#include "absl/types/span.h"
#include "iamf/common/macros.h"

namespace iamf_tools {

Expand Down Expand Up @@ -369,7 +368,10 @@ absl::Status ConvertTimeChannelToInterleaved(
for (const auto& tick : input) {
for (const auto& sample : tick) {
OutputType transformed_sample;
RETURN_IF_NOT_OK(transform_samples(sample, transformed_sample));
auto status = transform_samples(sample, transformed_sample);
if (!status.ok()) {
return status;
}
output.emplace_back(transformed_sample);
}
}
Expand Down

0 comments on commit 283d8ff

Please sign in to comment.