summaryrefslogtreecommitdiff
path: root/libavcodec/tmv.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-09-22 09:56:33 +0200
committerClément Bœsch <ubitux@gmail.com>2012-10-01 22:24:17 +0200
commit81bbce9cf304c93f325b0672b51d65a282c6581f (patch)
treeb02cef181739806e4eeb15e872ad85cc1e3f36e7 /libavcodec/tmv.c
parentc39916bc2f43eed86f9822b7d6802b8a4f2a86c8 (diff)
Move xGA font data from lavc to lavu.
This needs to be accessible for libavfilter in the next commit.
Diffstat (limited to 'libavcodec/tmv.c')
-rw-r--r--libavcodec/tmv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/tmv.c b/libavcodec/tmv.c
index e2397ce379..fae37e6ed6 100644
--- a/libavcodec/tmv.c
+++ b/libavcodec/tmv.c
@@ -30,6 +30,7 @@
#include "avcodec.h"
#include "libavutil/internal.h"
+#include "libavutil/xga_font_data.h"
#include "cga_data.h"
@@ -75,7 +76,7 @@ static int tmv_decode_frame(AVCodecContext *avctx, void *data,
bg = *src >> 4;
fg = *src++ & 0xF;
ff_draw_pc_font(dst + x * 8, tmv->pic.linesize[0],
- ff_cga_font, 8, c, fg, bg);
+ avpriv_cga_font, 8, c, fg, bg);
}
dst += tmv->pic.linesize[0] * 8;
}