|
|
Can you run mplayer from the console when your application is running and at the point that it would make the system call? |
One thing to note is that the system command effectively does a fork()/exec(). You may not have the resources to fork() your application, but can fork() the shell. You could implement your own system() call and see where it fails. |
What OS is this embedded device running? |