Delete unused class VideoCodecInformation.

Bug: None
Change-Id: Ibda192b4525d791fba029f52299b8cc6d54dcaa1
Reviewed-on: https://webrtc-review.googlesource.com/71400
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22955}
This commit is contained in:
Niels Möller 2018-04-20 11:37:23 +02:00 committed by Commit Bot
parent 551d11546e
commit ed55ffd7e4
3 changed files with 0 additions and 29 deletions

View File

@ -179,7 +179,6 @@ rtc_static_library("rtp_rtcp") {
"source/ulpfec_header_reader_writer.h",
"source/ulpfec_receiver_impl.cc",
"source/ulpfec_receiver_impl.h",
"source/video_codec_information.h",
]
if (rtc_enable_bwe_test_logging) {

View File

@ -22,7 +22,6 @@
#include "modules/rtp_rtcp/source/rtp_sender.h"
#include "modules/rtp_rtcp/source/rtp_utility.h"
#include "modules/rtp_rtcp/source/ulpfec_generator.h"
#include "modules/rtp_rtcp/source/video_codec_information.h"
#include "rtc_base/criticalsection.h"
#include "rtc_base/onetimeevent.h"
#include "rtc_base/rate_statistics.h"

View File

@ -1,27 +0,0 @@
/*
* Copyright (c) 2011 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.
*/
#ifndef MODULES_RTP_RTCP_SOURCE_VIDEO_CODEC_INFORMATION_H_
#define MODULES_RTP_RTCP_SOURCE_VIDEO_CODEC_INFORMATION_H_
#include "modules/rtp_rtcp/source/rtp_rtcp_config.h"
#include "modules/rtp_rtcp/source/rtp_utility.h"
namespace webrtc {
class VideoCodecInformation {
public:
virtual void Reset() = 0;
virtual RtpVideoCodecTypes Type() = 0;
virtual ~VideoCodecInformation() {}
};
} // namespace webrtc
#endif // MODULES_RTP_RTCP_SOURCE_VIDEO_CODEC_INFORMATION_H_