2006-07-07 18:26:51 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2006-08-15 22:46:56 +00:00
|
|
|
#include <inttypes.h>
|
2006-07-07 18:26:51 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "mp_msg.h"
|
|
|
|
#include "ass_utils.h"
|
|
|
|
|
|
|
|
int mystrtoi(char** p, int base, int* res)
|
|
|
|
{
|
|
|
|
char* start = *p;
|
|
|
|
*res = strtol(*p, p, base);
|
|
|
|
if (*p != start) return 1;
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mystrtou32(char** p, int base, uint32_t* res)
|
|
|
|
{
|
|
|
|
char* start = *p;
|
|
|
|
*res = strtoll(*p, p, base);
|
|
|
|
if (*p != start) return 1;
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mystrtod(char** p, double* res)
|
|
|
|
{
|
|
|
|
char* start = *p;
|
|
|
|
*res = strtod(*p, p);
|
|
|
|
if (*p != start) return 1;
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int strtocolor(char** q, uint32_t* res)
|
|
|
|
{
|
|
|
|
uint32_t color = 0;
|
|
|
|
int result;
|
|
|
|
char* p = *q;
|
|
|
|
|
|
|
|
if (*p == '&') ++p;
|
2006-07-10 23:58:24 +00:00
|
|
|
else mp_msg(MSGT_GLOBAL, MSGL_DBG2, "suspicious color format: \"%s\"\n", p);
|
2006-07-07 18:26:51 +00:00
|
|
|
|
2006-07-10 23:58:24 +00:00
|
|
|
if (*p == 'H' || *p == 'h') {
|
2006-07-07 18:26:51 +00:00
|
|
|
++p;
|
|
|
|
result = mystrtou32(&p, 16, &color);
|
|
|
|
} else {
|
2006-07-10 23:58:24 +00:00
|
|
|
result = mystrtou32(&p, 0, &color);
|
2006-07-07 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
unsigned char* tmp = (unsigned char*)(&color);
|
|
|
|
unsigned char b;
|
|
|
|
b = tmp[0]; tmp[0] = tmp[3]; tmp[3] = b;
|
|
|
|
b = tmp[1]; tmp[1] = tmp[2]; tmp[2] = b;
|
|
|
|
}
|
|
|
|
if (*p == '&') ++p;
|
|
|
|
*q = p;
|
|
|
|
|
|
|
|
*res = color;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|