blob: 647eceaf2270ce85677787276523889259fed3a9 [file] [log] [blame]
phoglund@webrtc.org07bf43c2012-12-18 15:40:53 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "modules/rtp_rtcp/source/rtp_receiver_strategy.h"
phoglund@webrtc.org07bf43c2012-12-18 15:40:53 +000012
pbos@webrtc.org12dc1a32013-08-05 16:22:53 +000013#include <stdlib.h>
phoglund@webrtc.org07bf43c2012-12-18 15:40:53 +000014
15namespace webrtc {
16
phoglund@webrtc.orga22a9bd2013-01-14 10:01:55 +000017RTPReceiverStrategy::RTPReceiverStrategy(RtpData* data_callback)
Karl Wiberg83d3ec12017-09-28 19:54:38 +020018 : data_callback_(data_callback) {}
phoglund@webrtc.org07bf43c2012-12-18 15:40:53 +000019
Danil Chapovalov2a5ce2b2018-02-07 09:38:31 +010020RTPReceiverStrategy::~RTPReceiverStrategy() = default;
21
phoglund@webrtc.org07bf43c2012-12-18 15:40:53 +000022} // namespace webrtc