From ed55ffd7e4a07c4d7fdb1f168e0f0b6a7961ce05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Fri, 20 Apr 2018 11:37:23 +0200 Subject: [PATCH] Delete unused class VideoCodecInformation. Bug: None Change-Id: Ibda192b4525d791fba029f52299b8cc6d54dcaa1 Reviewed-on: https://webrtc-review.googlesource.com/71400 Reviewed-by: Danil Chapovalov Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#22955} --- modules/rtp_rtcp/BUILD.gn | 1 - modules/rtp_rtcp/source/rtp_sender_video.h | 1 - .../rtp_rtcp/source/video_codec_information.h | 27 ------------------- 3 files changed, 29 deletions(-) delete mode 100644 modules/rtp_rtcp/source/video_codec_information.h diff --git a/modules/rtp_rtcp/BUILD.gn b/modules/rtp_rtcp/BUILD.gn index 5ef9e14ade..24cb05e281 100644 --- a/modules/rtp_rtcp/BUILD.gn +++ b/modules/rtp_rtcp/BUILD.gn @@ -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) { diff --git a/modules/rtp_rtcp/source/rtp_sender_video.h b/modules/rtp_rtcp/source/rtp_sender_video.h index 33bccb7407..48dcc6e9a1 100644 --- a/modules/rtp_rtcp/source/rtp_sender_video.h +++ b/modules/rtp_rtcp/source/rtp_sender_video.h @@ -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" diff --git a/modules/rtp_rtcp/source/video_codec_information.h b/modules/rtp_rtcp/source/video_codec_information.h deleted file mode 100644 index 593d87d01c..0000000000 --- a/modules/rtp_rtcp/source/video_codec_information.h +++ /dev/null @@ -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_