diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-09-22 09:56:33 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-10-01 22:24:17 +0200 |
commit | 81bbce9cf304c93f325b0672b51d65a282c6581f (patch) | |
tree | b02cef181739806e4eeb15e872ad85cc1e3f36e7 /libavcodec/tmv.c | |
parent | c39916bc2f43eed86f9822b7d6802b8a4f2a86c8 (diff) | |
download | ffmpeg-81bbce9cf304c93f325b0672b51d65a282c6581f.tar.gz |
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.c | 3 |
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; } |