mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-25 15:18:11 +00:00
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:
parent
252be8cc26
commit
8236b56d27
1 changed files with 8 additions and 0 deletions
|
|
@ -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){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue