2012-12-18 15:40:53 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/rtp_rtcp/source/rtp_receiver_strategy.h"
|
2012-12-18 15:40:53 +00:00
|
|
|
|
2013-08-05 16:22:53 +00:00
|
|
|
#include <stdlib.h>
|
2012-12-18 15:40:53 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2013-01-14 10:01:55 +00:00
|
|
|
RTPReceiverStrategy::RTPReceiverStrategy(RtpData* data_callback)
|
2017-09-28 19:54:38 +02:00
|
|
|
: data_callback_(data_callback) {}
|
2012-12-18 15:40:53 +00:00
|
|
|
|
2018-02-07 09:38:31 +01:00
|
|
|
RTPReceiverStrategy::~RTPReceiverStrategy() = default;
|
|
|
|
|
|
2012-12-18 15:40:53 +00:00
|
|
|
} // namespace webrtc
|