blob: d30feb8d3e1f0877fb58393181e98de2e66ed7be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef RTCP_EVENT_OBSERVER_
#define RTCP_EVENT_OBSERVER_
namespace mozilla {
/**
* This provides an interface to allow for receiving notifications
* of rtcp bye packets and timeouts.
*/
class RtcpEventObserver {
public:
virtual void OnRtcpBye() = 0;
virtual void OnRtcpTimeout() = 0;
};
} // namespace mozilla
#endif
|