fix when _START and _STOP are used

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@36 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
aymeric 2008-09-23 14:41:33 +00:00
parent 252be8cc26
commit 8236b56d27

View file

@ -926,6 +926,10 @@ static void v4l_preprocess(MSFilter *f){
v4l_start(f,NULL);
v4l_start_capture(s);
}
else
{
v4l_start_capture(s);
}
}
static void v4l_postprocess(MSFilter *f){
@ -934,6 +938,10 @@ static void v4l_postprocess(MSFilter *f){
v4l_stop_capture(s);
v4l_stop(f,NULL);
}
else
{
v4l_stop_capture(s);
}
}
static int v4l_set_fps(MSFilter *f, void *arg){