vote up 1 vote down star

I want to set a FourCC value in C++, i.e. an unsigned 4 byte integer.

I suppose the obvious way is a #define, e.g.

#define FOURCC(a,b,c,d) ( (uint32) (((d)<<24) | ((c)<<16) | ((b)<<8) | (a)) )

and then:

uint32 id( FOURCC('b','l','a','h') );

What is the most elegant way you can think to do this?

flag

50% accept rate
What if I wanted to do something like: uint32 id( FOURCC( "blah" ) ); – Nick May 1 at 13:56
Or: FourCC id( "blah" ); – Nick May 1 at 13:56

9 Answers

vote up 0 vote down
uint32 fcc(char * a)
{   
    if( strlen(a) != 4)
    	return 0;		//Unknown or unspecified format

    return 
    (
    		(uint32) 
    		( 
    			((*(a+3))<<24) |
    			((*(a+2))<<16) |
    			((*(a+1))<<8) | 
    			(*a)
    		)		
    );
}
link|flag
strlen?! Sorry, I want this to be a compile time calculation. – Nick May 1 at 16:14
vote up 2 vote down
uint32_t FourCC = *((uint32_t*)"blah");

Why not this?

EDIT: int -> uint32_t.

And no it does not cast a char** to uint32_t. It casts a (char*) to (uint32_t*) then dereferences the (uint32_t*). There is no endian-ness involved, since its assigning an uint32_tto an uint32_t. The only defects are the alignment and the I hadn't explicitly indicated a 32bit type.

link|flag
-1: That casts a string pointer to an int. Two different instances of (int)"blah" might give you a different value, and the values will almost certainly change on each build of the app. – James Hopkin May 1 at 14:49
Because the value varies between big- and little-endian machines. On some architectures, that may be misaligned, resulting in a hardware exception at runtime. – Tom May 1 at 14:56
I had considered this way and I believe it would work on all platforms we support. None of the proposals deal with endianess. TBH this isn't a concern as it will be platform specific data. – Nick May 1 at 15:27
+1: SO's not letting me delete my comment. I did indeed misread the answer, but I agree with the other comments here. – James Hopkin May 1 at 16:52
Er, why is upvoting setting it to 1 from -1? (the vote keeps toggling between 1 and -1 - oh well, I'll leave it at 1) – James Hopkin May 1 at 16:53
vote up 1 vote down

If a compile-time constant isn't required, perhaps the neatest is

unsigned int FourCCStr(const char (&tag)[5])
{
    return (((((tag[3] << 8 ) | tag[2]) << 8) | tag[1]) << 8) | tag[0];
}

#define FOURCC(tag) FourCCStr(#tag)

unsigned int id(FOURCC(blah));

This only accepts tags of four characters, as required.

link|flag
Or: typedef char tag[5]; uint32 FourCC(const tag& t); – Nick May 1 at 14:29
No, it can accept tags of any length. Remember that the size of an array in a parameter list is not enforced because arrays decay to pointers. – Brian Neal May 1 at 18:13
Oops, my comment is wrong, I didn't see the reference in the signature. And Stack Overflow won't let me delete my comment. It thinks I am trying to vote for my comment. :) – Brian Neal May 1 at 18:16
vote up 1 vote down

Assuming Windows (as FOURCC is a Windows concept), the Win API already provides mmioStringToFOURCC and mmioFOURCC.

link|flag
Thanks. mmioFOURCC is a macro that expands to the same #define I have above. – Nick May 1 at 14:11
vote up 0 vote down

If I am not mistaken, you can just use multi-character character constants for that right?

unsigned int fourCC = 'blah';

This is perfectly valid by the ANSI/ISO specification though some compilers will complain a little. This is how resource types used to be handled in the older Macintosh APIs.

link|flag
I think these are implementation defined and aren't necessarily portable. – Brian Neal May 1 at 14:04
2  
In other words, you may not be sure where the 'b' is going to end up, high order byte or low order. – Brian Neal May 1 at 14:05
Additionally, I think some compilers may interpret the 'blah' as a byte and not a 32 bit integer. I think the standard says it should be interpretted as an int. – Nick May 1 at 14:14
I'll have to look this one up... FWIW, remember that 'a' is an integer constant not a character. I'll add another comment once I track this one down in the spec. – D.Shawley May 2 at 3:37
Nice catch... I just checked the spec and it is implementation defined. In that case, I would opt for the inline function case. – D.Shawley May 2 at 3:43
vote up 10 vote down

You can make it a compile-time constant using:

template <int a, int b, int c, int d>
struct FourCC
{
    static const unsigned int value = (((((d << 8) | c) << 8) | b) << 8) | a;
};

unsigned int id(FourCC<'a', 'b', 'c', 'd'>::value);

With a little extra effort, you can make it check at compile time that each number passed in is between 0 and 255.

link|flag
very nice if the value is constant at compile time +1 – Doug T. May 1 at 13:42
Ok, that's more intesting. :) – Nick May 1 at 13:43
Any non-toy compiler will constant-fold the macro at compile time. – Dave May 1 at 15:22
1  
@Dave: that's true. This is really just a way of avoiding the macro without losing its advantages. The other replies suggesting inline functions no longer give you a compile-time constant, which may be handy. This gives some potential extra safety, but who's going to put the wrong thing in a FOURCC? To be honest, I'm sure if I'd bother with this myself, but I thought I'd put it out there. – James Hopkin May 1 at 16:54
vote up 0 vote down

Rather than a #define, I'd probably put pretty much the same code and rely on the compiler to inline it.

link|flag
vote up 5 vote down

or do the same with an inline function

inline uint32_t FOURCC(uint8_t a, uint8_t b, uint8_t c, uint8_t d)
{
     return ( (uint32) (((d)<<24) | (uint32_t(c)<<16) | (uint32_t(b)<<8) | uint32_t(a)) )
}

and avoid the headaches of a macro, but otherwise your approach looks fine to me.

link|flag
I'd lose the extra paranthesis in the function version. :) – Brian Neal May 1 at 14:03
1  
Biggest downside is that you can't use an inline function for a case statement in a switch block. Either a template structure or a macro would work for that, though. – Tom May 1 at 14:51
vote up 1 vote down

I see nothing wrong with your algorithm. But for something like this I would just write a function instead of a macro. Macros have a lot of hidden features / problems that can bite you over time.

uint FourCC(char a, char b, char c, char d) { 
  return ( (uint32) (((d)<<24) | ((c)<<16) | ((b)<<8) | (a)) );
}
link|flag
Functions can't be used as compile-time constants. That means switch statements are not possible with a function. Either a macro or a template class (using a static const int or enum for the result, but not a function) should be fine. – Tom May 1 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.