No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
/* Hi, In my process of C code optimization*/ Clip(int Val) { return (curr < 0 ? : ((curr > 255) ? 255 : curr)); } /* I want the int value to be clipped between 0 to 255. Is there any other way to optimize above code snippet? */ | |
/*Hi, I was trying to optimize my application in C. In that process to reduce the complexity at condition checks which of the below is efficient,*/ if(bFlag1 && !(Var == 1) && bFlag2) //or if(bFlag1 & !(Var == 1) & bFlag2) | |
Hi friends, Please suggest me how to display the line number in C program. without using predefined macros, or windows library files. | |
Hi, when ever i login to my system it prompt me to activate my XP sp3 pack. But my administrator is already activated it. when ever i login into administrator account it ask weather to activate it or not(yes or no) when i press yes it is not responding. so … | |
Can any 1 suggest me the C code logic on 420 to 422 subsampling convertion on YUV video......(on [B]Macro block basis[/B] NOT on frame basis). |
The End.