foobar2000 SDK  2015-01-14
Static Public Member Functions
pfc::__DecodeIntHelper< TInt, width, IsBigEndian >

#include <byte_order_helper.h>

Static Public Member Functions

static TInt Run (const t_uint8 *p_in)
 

Detailed Description

template<typename TInt, unsigned width, bool IsBigEndian>
class pfc::__DecodeIntHelper< TInt, width, IsBigEndian >

Definition at line 174 of file byte_order_helper.h.

Member Function Documentation

template<typename TInt , unsigned width, bool IsBigEndian>
static TInt pfc::__DecodeIntHelper< TInt, width, IsBigEndian >::Run ( const t_uint8 p_in)
inlinestatic

Definition at line 176 of file byte_order_helper.h.

176  {
177  return (__DecodeIntHelper<TInt,width-1,IsBigEndian>::Run(p_in + (IsBigEndian ? -1 : 1)) << 8) + *p_in;
178  }

The documentation for this class was generated from the following file: