our current experimental Neutrino branch

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@27 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Commit: bc5bd4154e
Author: mrcolor <mrcolor@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-08 (Tue, 08 Dec 2009)
This commit is contained in:
mrcolor
2009-12-08 11:05:11 +00:00
commit cb8dd3394d
876 changed files with 193775 additions and 0 deletions

14
lib/libdvbsub/helpers.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef HELPERS_H_
#define HELPERS_H_
#include <inttypes.h>
uint32_t getbits(const uint8_t* buf, uint32_t offset, uint8_t len);
void hexdump(uint8_t* buf);
#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
#define MIN(a,b) (((a)<(b))?(a):(b))
#endif