Mercurial > mplayer.hg
changeset 26036:8d8c52a169ad
Comment out dump_glyph(): it is unused and, as it is now, breaks compilation.
author | eugeni |
---|---|
date | Fri, 22 Feb 2008 21:24:35 +0000 |
parents | 501ea0b13962 |
children | bee99864f397 |
files | libass/ass_utils.c libass/ass_utils.h |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libass/ass_utils.c Fri Feb 22 19:31:53 2008 +0000 +++ b/libass/ass_utils.c Fri Feb 22 21:24:35 2008 +0000 @@ -81,6 +81,7 @@ return result; } +#if 0 static void sprint_tag(uint32_t tag, char* dst) { dst[0] = (tag >> 24) & 0xFF; @@ -105,3 +106,4 @@ printf(" point %f, %f \n", d6_to_double(o->points[i].x), d6_to_double(o->points[i].y)); } } +#endif
--- a/libass/ass_utils.h Fri Feb 22 19:31:53 2008 +0000 +++ b/libass/ass_utils.h Fri Feb 22 21:24:35 2008 +0000 @@ -25,7 +25,6 @@ int mystrtou32(char** p, int base, uint32_t* res); int mystrtod(char** p, double* res); int strtocolor(char** q, uint32_t* res); -void dump_glyph(FT_Glyph g); static inline int d6_to_int(int x) { return (x + 32) >> 6;