I use this command below for converting file
./avconv -i inputFile -vcodec libx264 -trellis 2 -crf 23 -tune psnr -vf crop='trunc(iw/2)*2:trunc(ih/2)*2' -y outputFile
But, I don't want to use this command, I want to make a function like
convert(char *inputFile, char *outputFile). (The option of my function like option in command line)
And then I will call it from my main function for example
int main(){ 
    convert(in01, out01); 
    convert(in02, out02); 
    convert(in03, out03); 
    return 0; 
} 
I also read this post. But it is not clear to me.
Could anyone tell me how to solve this problem? I have googled many times but did not find the solution. 
 
     
    