FONT_WIDTH         94 libavcodec/ansi.c     } else if (avctx->width % FONT_WIDTH || avctx->height % s->font_height) {
FONT_WIDTH        178 libavcodec/ansi.c     s->x += FONT_WIDTH;
FONT_WIDTH        179 libavcodec/ansi.c     if (s->x > avctx->width - FONT_WIDTH) {
FONT_WIDTH        204 libavcodec/ansi.c         s->x = FFMIN(s->x + (s->nb_args > 0 ? s->args[0]*FONT_WIDTH : FONT_WIDTH), avctx->width  - FONT_WIDTH);
FONT_WIDTH        207 libavcodec/ansi.c         s->x = FFMAX(s->x - (s->nb_args > 0 ? s->args[0]*FONT_WIDTH : FONT_WIDTH), 0);
FONT_WIDTH        212 libavcodec/ansi.c         s->x = s->nb_args > 1 ? av_clip((s->args[1] - 1)*FONT_WIDTH,     0, avctx->width  - FONT_WIDTH) : 0;
FONT_WIDTH        254 libavcodec/ansi.c         s->x = av_clip(s->x, 0, width  - FONT_WIDTH);
FONT_WIDTH        344 libavcodec/ansi.c         s->x = av_clip(s->sx, 0, avctx->width  - FONT_WIDTH);
FONT_WIDTH        351 libavcodec/ansi.c     s->x = av_clip(s->x, 0, avctx->width  - FONT_WIDTH);
FONT_WIDTH        395 libavcodec/ansi.c                 i = s->x / FONT_WIDTH;
FONT_WIDTH        100 libavcodec/bintext.c     if (avctx->width < FONT_WIDTH || avctx->height < s->font_height) {
FONT_WIDTH        133 libavcodec/bintext.c     s->x += FONT_WIDTH;
FONT_WIDTH        134 libavcodec/bintext.c     if (s->x > avctx->width - FONT_WIDTH) {
FONT_WIDTH        150 libavcodec/bintext.c     if ((avctx->width / FONT_WIDTH) * (avctx->height / s->font_height) / 256 > buf_size)