Home | History | Annotate | Download | only in test

Lines Matching refs:action

33   enum Action {
42 virtual Action OnSendRtp(const uint8_t* packet, size_t length) {
46 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) {
50 virtual Action OnReceiveRtp(const uint8_t* packet, size_t length) {
54 virtual Action OnReceiveRtcp(const uint8_t* packet, size_t length) {
95 RtpRtcpObserver::Action action;
98 action = observer_->OnSendRtp(packet, length);
100 action = observer_->OnReceiveRtp(packet, length);
103 switch (action) {
115 RtpRtcpObserver::Action action;
118 action = observer_->OnSendRtcp(packet, length);
120 action = observer_->OnReceiveRtcp(packet, length);
123 switch (action) {