comparison libswscale/swscale_template.c @ 26150:1df4a811aa9c

remove redundant SwScaler text since av_log uses AVClass context
author bcoudurier
date Thu, 06 Mar 2008 09:51:25 +0000
parents 94cc4bac8cd0
children f2d670be6bc8
comparison
equal deleted inserted replaced
26149:484bf3498911 26150:1df4a811aa9c
3000 if (dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0) 3000 if (dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0)
3001 { 3001 {
3002 static int firstTime=1; //FIXME move this into the context perhaps 3002 static int firstTime=1; //FIXME move this into the context perhaps
3003 if (flags & SWS_PRINT_INFO && firstTime) 3003 if (flags & SWS_PRINT_INFO && firstTime)
3004 { 3004 {
3005 av_log(c, AV_LOG_WARNING, "SwScaler: Warning: dstStride is not aligned!\n" 3005 av_log(c, AV_LOG_WARNING, "Warning: dstStride is not aligned!\n"
3006 "SwScaler: ->cannot do aligned memory acesses anymore\n"); 3006 " ->cannot do aligned memory acesses anymore\n");
3007 firstTime=0; 3007 firstTime=0;
3008 } 3008 }
3009 } 3009 }
3010 3010
3011 /* Note the user might start scaling the picture in the middle so this will not get executed 3011 /* Note the user might start scaling the picture in the middle so this will not get executed