Mercurial > mplayer.hg
comparison libass/ass_render.c @ 19378:d9d58ba1b833
Replace %lld with PRId64, part 2.
author | eugeni |
---|---|
date | Sun, 13 Aug 2006 10:54:29 +0000 |
parents | cd9ece839751 |
children | bb5164e0f70f |
comparison
equal
deleted
inserted
replaced
19377:f3df92d9f549 | 19378:d9d58ba1b833 |
---|---|
1 #include "config.h" | 1 #include "config.h" |
2 | 2 |
3 #include <assert.h> | 3 #include <assert.h> |
4 #include <math.h> | 4 #include <math.h> |
5 #include <stdint.h> | 5 #include <stdint.h> |
6 #include <inttypes.h> | |
6 #include <ft2build.h> | 7 #include <ft2build.h> |
7 #include FT_FREETYPE_H | 8 #include FT_FREETYPE_H |
8 #include FT_STROKER_H | 9 #include FT_STROKER_H |
9 #include FT_GLYPH_H | 10 #include FT_GLYPH_H |
10 #include FT_SYNTHESIS_H | 11 #include FT_SYNTHESIS_H |
667 if (*p == ',') { | 668 if (*p == ',') { |
668 skip(','); | 669 skip(','); |
669 t1 = strtoll(p, &p, 10); | 670 t1 = strtoll(p, &p, 10); |
670 skip(','); | 671 skip(','); |
671 t2 = strtoll(p, &p, 10); | 672 t2 = strtoll(p, &p, 10); |
672 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%lld .. %lld)\n", x1, y1, x2, y2, t1, t2); | 673 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%" PRId64 " .. %" PRId64 ")\n", |
674 x1, y1, x2, y2, (int64_t)t1, (int64_t)t2); | |
673 } else { | 675 } else { |
674 t1 = 0; | 676 t1 = 0; |
675 t2 = render_context.event->Duration; | 677 t2 = render_context.event->Duration; |
676 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement: (%d, %d) -> (%d, %d)\n", x1, y1, x2, y2); | 678 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement: (%d, %d) -> (%d, %d)\n", x1, y1, x2, y2); |
677 } | 679 } |