template struct dlstreamer::detail::fourcc#

#include <image_info.h>

template <int a, int b, int c, int d>
struct fourcc {
    // enums

    enum {
        code =(a) |(b<<8) |(c<<16) |(d<<24),
    };
};