diff options
author | Alban Bedel <albeu@free.fr> | 2002-05-02 11:00:16 +0000 |
---|---|---|
committer | Alban Bedel <albeu@free.fr> | 2002-05-02 11:00:16 +0000 |
commit | 4a53a912af662bcf498adb225fab128471854d83 (patch) | |
tree | a85aa7a5399c2028139baca79480a2e4dd584d66 /postproc/swscale_template.c | |
parent | ef5b1b5a7ee2d4bce47382e74fe4c88d207c641a (diff) | |
download | ffmpeg-4a53a912af662bcf498adb225fab128471854d83.tar.gz |
printf to mp_msg
Originally committed as revision 5938 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_template.c')
-rw-r--r-- | postproc/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index e76020eab7..89ca6111c3 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -2667,7 +2667,7 @@ static void RENAME(swScale)(SwsContext *c, uint8_t* srcParam[], int srcStridePar static int firstTime=1; //FIXME move this into the context perhaps if(flags & SWS_PRINT_INFO && firstTime) { - fprintf(stderr, "SwScaler: Warning: dstStride is not aligned!\n" + mp_msg(MSGT_SWS,MSGL_WARN,"SwScaler: Warning: dstStride is not aligned!\n" "SwScaler: ->cannot do aligned memory acesses anymore\n"); firstTime=0; } |