vo_xv: Reformat code
[mplayer.git] / libass / ass_utils.c
blobd48685c631bf59b6262052d949a11504e28cb0d8
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
2 // vim:ts=8:sw=8:noet:ai:
3 /*
4 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
6 * This file is part of libass.
8 * libass is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * libass is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with libass; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "config.h"
25 #include <stdlib.h>
26 #include <inttypes.h>
27 #include <ft2build.h>
28 #include FT_GLYPH_H
30 #include "mputils.h"
31 #include "ass_utils.h"
33 int mystrtoi(char** p, int base, int* res)
35 char* start = *p;
36 *res = strtol(*p, p, base);
37 if (*p != start) return 1;
38 else return 0;
41 int mystrtou32(char** p, int base, uint32_t* res)
43 char* start = *p;
44 *res = strtoll(*p, p, base);
45 if (*p != start) return 1;
46 else return 0;
49 int mystrtod(char** p, double* res)
51 char* start = *p;
52 *res = strtod(*p, p);
53 if (*p != start) return 1;
54 else return 0;
57 int strtocolor(char** q, uint32_t* res)
59 uint32_t color = 0;
60 int result;
61 char* p = *q;
63 if (*p == '&') ++p;
64 else mp_msg(MSGT_ASS, MSGL_DBG2, "suspicious color format: \"%s\"\n", p);
66 if (*p == 'H' || *p == 'h') {
67 ++p;
68 result = mystrtou32(&p, 16, &color);
69 } else {
70 result = mystrtou32(&p, 0, &color);
74 unsigned char* tmp = (unsigned char*)(&color);
75 unsigned char b;
76 b = tmp[0]; tmp[0] = tmp[3]; tmp[3] = b;
77 b = tmp[1]; tmp[1] = tmp[2]; tmp[2] = b;
79 if (*p == '&') ++p;
80 *q = p;
82 *res = color;
83 return result;
86 #if 0
87 static void sprint_tag(uint32_t tag, char* dst)
89 dst[0] = (tag >> 24) & 0xFF;
90 dst[1] = (tag >> 16) & 0xFF;
91 dst[2] = (tag >> 8) & 0xFF;
92 dst[3] = tag & 0xFF;
93 dst[4] = 0;
96 void dump_glyph(FT_Glyph g)
98 char tag[5];
99 int i;
100 FT_OutlineGlyph og = (FT_OutlineGlyph)g;
101 FT_Outline* o = &(og->outline);
102 sprint_tag(g->format, tag);
103 printf("glyph: %p \n", g);
104 printf("format: %s \n", tag);
105 printf("outline: %p \n", o);
106 printf("contours: %d, points: %d, points ptr: %p \n", o->n_contours, o->n_points, o->points);
107 for (i = 0; i < o->n_points; ++i) {
108 printf(" point %f, %f \n", d6_to_double(o->points[i].x), d6_to_double(o->points[i].y));
111 #endif