chenqiyang
2022-09-02 6a99d9bf65aa5878cb409945ed2bdbdcb916d047
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * videoswitcher.h - Video conference filter using switching (no composition), interface definition.
 *
 *
 * Copyright (C) 2014  Belledonne Communications, Grenoble, France
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
 
#ifndef msvideoswitcher_h
#define msvideoswitcher_h
 
#include "mediastreamer2/msfilter.h"
 
/**requests the video switcher to broadcast the video from given input pin.*/
#define MS_VIDEO_SWITCHER_SET_FOCUS MS_FILTER_METHOD(MS_VIDEO_SWITCHER_ID,0,int)
 
typedef struct _MSVideoSwitcherPinControl{
    int pin;
    int enabled;
}MSVideoSwitcherPinControl;
#define MS_VIDEO_SWITCHER_SET_AS_LOCAL_MEMBER MS_FILTER_METHOD(MS_VIDEO_SWITCHER_ID,1,MSVideoSwitcherPinControl)
 
#define MS_VIDEO_SWITCHER_NOTIFY_PLI MS_FILTER_EVENT(MS_VIDEO_SWITCHER_ID,2,int)
#define MS_VIDEO_SWITCHER_NOTIFY_FIR MS_FILTER_EVENT(MS_VIDEO_SWITCHER_ID,3,int)
 
/**Events raised by the switcher when it needs to receive a key frame in order to complete the switch to new input source*/
#define MS_VIDEO_SWITCHER_SEND_FIR MS_FILTER_EVENT(MS_VIDEO_SWITCHER_ID,0,int)
#define MS_VIDEO_SWITCHER_SEND_PLI MS_FILTER_EVENT(MS_VIDEO_SWITCHER_ID,1,int)
 
#endif