aquamarine/src/utils/FormatUtils.cpp

11 lines
252 B
C++
Raw Normal View History

#include "FormatUtils.hpp"
#include <drm_fourcc.h>
#include <xf86drm.h>
std::string fourccToName(uint32_t drmFormat) {
auto fmt = drmGetFormatName(drmFormat);
std::string name = fmt ? fmt : "unknown";
free(fmt);
return name;
}