comparison postproc/swscale_template.c @ 9970:9deb7e948fa6

killed an mp_msg occurance
author alex
date Mon, 21 Apr 2003 23:14:21 +0000
parents 61057de81510
children 6e35326c742f
comparison
equal deleted inserted replaced
9969:523a41c963e8 9970:9deb7e948fa6
2580 if(dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0) 2580 if(dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0)
2581 { 2581 {
2582 static int firstTime=1; //FIXME move this into the context perhaps 2582 static int firstTime=1; //FIXME move this into the context perhaps
2583 if(flags & SWS_PRINT_INFO && firstTime) 2583 if(flags & SWS_PRINT_INFO && firstTime)
2584 { 2584 {
2585 mp_msg(MSGT_SWS,MSGL_WARN,"SwScaler: Warning: dstStride is not aligned!\n" 2585 MSG_WARN("SwScaler: Warning: dstStride is not aligned!\n"
2586 "SwScaler: ->cannot do aligned memory acesses anymore\n"); 2586 "SwScaler: ->cannot do aligned memory acesses anymore\n");
2587 firstTime=0; 2587 firstTime=0;
2588 } 2588 }
2589 } 2589 }
2590 2590