2008-01-31 07:04:26 +01:00
|
|
|
/*
|
|
|
|
* util.h - utility functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "streamtypes.h"
|
|
|
|
|
|
|
|
#ifndef _UTIL_H
|
|
|
|
#define _UTIL_H
|
|
|
|
|
|
|
|
/* host endian independent multi-byte integer reading */
|
|
|
|
|
|
|
|
static inline int16_t get_16bitBE(uint8_t * p) {
|
|
|
|
return (p[0]<<8) | (p[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int16_t get_16bitLE(uint8_t * p) {
|
|
|
|
return (p[0]) | (p[1]<<8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int32_t get_32bitBE(uint8_t * p) {
|
|
|
|
return (p[0]<<24) | (p[1]<<16) | (p[2]<<8) | (p[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int32_t get_32bitLE(uint8_t * p) {
|
|
|
|
return (p[0]) | (p[1]<<8) | (p[2]<<16) | (p[3]<<24);
|
|
|
|
}
|
|
|
|
|
2017-08-28 15:11:52 +02:00
|
|
|
static inline int64_t get_64bitBE(uint8_t * p) {
|
|
|
|
return (uint64_t)(((uint64_t)p[0]<<56) | ((uint64_t)p[1]<<48) | ((uint64_t)p[2]<<40) | ((uint64_t)p[3]<<32) | ((uint64_t)p[4]<<24) | ((uint64_t)p[5]<<16) | ((uint64_t)p[6]<<8) | ((uint64_t)p[7]));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int64_t get_64bitLE(uint8_t * p) {
|
|
|
|
return (uint64_t)(((uint64_t)p[0]) | ((uint64_t)p[1]<<8) | ((uint64_t)p[2]<<16) | ((uint64_t)p[3]<<24) | ((uint64_t)p[4]<<32) | ((uint64_t)p[5]<<40) | ((uint64_t)p[6]<<48) | ((uint64_t)p[7]<<56));
|
|
|
|
}
|
|
|
|
|
2016-12-18 12:46:11 +01:00
|
|
|
void put_8bit(uint8_t * buf, int8_t i);
|
|
|
|
|
2008-02-04 11:34:18 +01:00
|
|
|
void put_16bitLE(uint8_t * buf, int16_t i);
|
|
|
|
|
|
|
|
void put_32bitLE(uint8_t * buf, int32_t i);
|
|
|
|
|
2009-03-16 16:45:02 +01:00
|
|
|
void put_16bitBE(uint8_t * buf, int16_t i);
|
|
|
|
|
|
|
|
void put_32bitBE(uint8_t * buf, int32_t i);
|
|
|
|
|
2008-01-31 07:04:26 +01:00
|
|
|
/* signed nibbles come up a lot */
|
2008-01-31 23:26:11 +01:00
|
|
|
static int nibble_to_int[16] = {0,1,2,3,4,5,6,7,-8,-7,-6,-5,-4,-3,-2,-1};
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2017-08-20 02:18:48 +02:00
|
|
|
static inline int get_nibble_signed(uint8_t n, int upper) {
|
|
|
|
/*return ((n&0x70)-(n&0x80))>>4;*/
|
|
|
|
return nibble_to_int[(n >> (upper?4:0)) & 0x0f];
|
|
|
|
}
|
|
|
|
|
2008-02-04 09:57:44 +01:00
|
|
|
static inline int get_high_nibble_signed(uint8_t n) {
|
2008-01-31 23:26:11 +01:00
|
|
|
/*return ((n&0x70)-(n&0x80))>>4;*/
|
|
|
|
return nibble_to_int[n>>4];
|
2008-01-31 07:04:26 +01:00
|
|
|
}
|
|
|
|
|
2008-02-04 09:57:44 +01:00
|
|
|
static inline int get_low_nibble_signed(uint8_t n) {
|
2008-01-31 23:26:11 +01:00
|
|
|
/*return (n&7)-(n&8);*/
|
|
|
|
return nibble_to_int[n&0xf];
|
2008-01-31 07:04:26 +01:00
|
|
|
}
|
|
|
|
|
2008-01-31 23:26:11 +01:00
|
|
|
static inline int clamp16(int32_t val) {
|
2019-09-02 20:48:33 +02:00
|
|
|
if (val > 32767) return 32767;
|
|
|
|
else if (val < -32768) return -32768;
|
|
|
|
else return val;
|
2008-01-31 07:04:26 +01:00
|
|
|
}
|
|
|
|
|
2018-11-03 18:06:39 +01:00
|
|
|
static inline int round10(int val) {
|
|
|
|
int round_val = val % 10;
|
|
|
|
if (round_val < 5) /* half-down rounding */
|
|
|
|
return val - round_val;
|
|
|
|
else
|
|
|
|
return val + (10 - round_val);
|
|
|
|
}
|
|
|
|
|
2017-12-06 15:32:52 +01:00
|
|
|
/* return a file's extension (a pointer to the first character of the
|
|
|
|
* extension in the original filename or the ending null byte if no extension */
|
|
|
|
const char * filename_extension(const char * filename);
|
|
|
|
|
2010-08-31 06:44:04 +02:00
|
|
|
void swap_samples_le(sample *buf, int count);
|
2008-02-04 11:34:18 +01:00
|
|
|
|
2008-03-11 02:27:59 +01:00
|
|
|
void concatn(int length, char * dst, const char * src);
|
|
|
|
|
2016-12-27 14:28:12 +01:00
|
|
|
|
|
|
|
/* Simple stdout logging for debugging and regression testing purposes.
|
2018-07-21 20:12:40 +02:00
|
|
|
* Needs C99 variadic macros, uses do..while to force ";" as statement */
|
2016-12-27 14:28:12 +01:00
|
|
|
#ifdef VGM_DEBUG_OUTPUT
|
2017-09-17 03:38:11 +02:00
|
|
|
|
2017-02-04 11:06:35 +01:00
|
|
|
/* equivalent to printf when condition is true */
|
2016-12-27 14:28:12 +01:00
|
|
|
#define VGM_ASSERT(condition, ...) \
|
2018-07-21 20:12:40 +02:00
|
|
|
do { if (condition) {printf(__VA_ARGS__);} } while (0)
|
2017-11-23 23:46:33 +01:00
|
|
|
#define VGM_ASSERT_ONCE(condition, ...) \
|
2018-07-21 20:12:40 +02:00
|
|
|
do { static int written; if (!written) { if (condition) {printf(__VA_ARGS__); written = 1;} } } while (0)
|
2017-02-04 11:06:35 +01:00
|
|
|
/* equivalent to printf */
|
2016-12-27 14:28:12 +01:00
|
|
|
#define VGM_LOG(...) \
|
|
|
|
do { printf(__VA_ARGS__); } while (0)
|
2017-11-23 23:46:33 +01:00
|
|
|
#define VGM_LOG_ONCE(...) \
|
|
|
|
do { static int written; if (!written) { printf(__VA_ARGS__); written = 1; } } while (0)
|
2017-02-04 11:06:35 +01:00
|
|
|
/* prints file/line/func */
|
2016-12-29 13:27:10 +01:00
|
|
|
#define VGM_LOGF() \
|
|
|
|
do { printf("%s:%i '%s'\n", __FILE__, __LINE__, __func__); } while (0)
|
2017-09-17 03:38:11 +02:00
|
|
|
/* prints to a file */
|
|
|
|
#define VGM_LOGT(txt, ...) \
|
|
|
|
do { FILE *fl = fopen(txt,"a+"); if(fl){fprintf(fl,__VA_ARGS__); fflush(fl);} fclose(fl); } while(0)
|
2017-02-04 11:06:35 +01:00
|
|
|
/* prints a buffer/array */
|
|
|
|
#define VGM_LOGB(buf, buf_size, bytes_per_line) \
|
|
|
|
do { \
|
|
|
|
int i; \
|
|
|
|
for (i=0; i < buf_size; i++) { \
|
|
|
|
printf("%02x",buf[i]); \
|
|
|
|
if (bytes_per_line && (i+1) % bytes_per_line == 0) printf("\n"); \
|
|
|
|
} \
|
|
|
|
printf("\n"); \
|
|
|
|
} while (0)
|
2017-09-17 03:38:11 +02:00
|
|
|
|
|
|
|
#else/*VGM_DEBUG_OUTPUT*/
|
2016-12-27 14:28:12 +01:00
|
|
|
|
2017-02-04 11:06:35 +01:00
|
|
|
#define VGM_ASSERT(condition, ...) /* nothing */
|
2018-07-21 20:12:40 +02:00
|
|
|
#define VGM_ASSERT_ONCE(condition, ...) /* nothing */
|
2016-12-27 14:28:12 +01:00
|
|
|
#define VGM_LOG(...) /* nothing */
|
2017-11-23 23:46:33 +01:00
|
|
|
#define VGM_LOG_ONCE(...) /* nothing */
|
2017-02-04 11:06:35 +01:00
|
|
|
#define VGM_LOGF() /* nothing */
|
2017-09-17 03:38:11 +02:00
|
|
|
#define VGM_LOGT() /* nothing */
|
2017-02-04 11:06:35 +01:00
|
|
|
#define VGM_LOGB(buf, buf_size, bytes_per_line) /* nothing */
|
2016-12-27 14:28:12 +01:00
|
|
|
|
2017-11-23 23:46:33 +01:00
|
|
|
|
2017-09-17 03:38:11 +02:00
|
|
|
#endif/*VGM_DEBUG_OUTPUT*/
|
2016-12-27 14:28:12 +01:00
|
|
|
|
2008-01-31 07:04:26 +01:00
|
|
|
#endif
|