aboutsummaryrefslogtreecommitdiff
path: root/accel/fourcc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'accel/fourcc.cc')
-rw-r--r--accel/fourcc.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/accel/fourcc.cc b/accel/fourcc.cc
index 5d0aa2c..bfca19c 100644
--- a/accel/fourcc.cc
+++ b/accel/fourcc.cc
@@ -10,7 +10,7 @@
#include "base/logging.h"
#include "base/strings/stringprintf.h"
-#include "macros.h"
+#include <utils/Log.h>
namespace media {
@@ -40,7 +40,7 @@ std::optional<Fourcc> Fourcc::FromUint32(uint32_t fourcc) {
case MM21:
return Fourcc(static_cast<Value>(fourcc));
}
- DVLOGF(3) << "Unmapped fourcc: " << FourccToString(fourcc);
+ ALOGE("Unmapped fourcc: %s", FourccToString(fourcc).c_str());
return std::nullopt;
}
@@ -130,8 +130,8 @@ base::Optional<Fourcc> Fourcc::FromVideoPixelFormat(
break;
}
}
- DVLOGF(3) << "Unmapped " << VideoPixelFormatToString(pixel_format) << " for "
- << (single_planar ? "single-planar" : "multi-planar");
+ ALOGE("Unmapped %s for %s", VideoPixelFormatToString(pixel_format).c_str(),
+ single_planar ? "single-planar" : "multi-planar");
return base::nullopt;
}