From 2589fd8a0ab079b2aad4b6da6ea39afd3566ce28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85sa=20Persson?= Date: Fri, 31 Aug 2018 16:46:54 +0200 Subject: [PATCH] Remove unimplemented function declarations VCMGenericDecoder::External and VCMTimestampMap::Reset. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: none Change-Id: I6dfaad8f6b770c0d141879b3686e229a01ac5975 Reviewed-on: https://webrtc-review.googlesource.com/97120 Reviewed-by: Rasmus Brandt Commit-Queue: Åsa Persson Cr-Commit-Position: refs/heads/master@{#24599} --- modules/video_coding/generic_decoder.h | 1 - modules/video_coding/timestamp_map.cc | 1 - modules/video_coding/timestamp_map.h | 3 --- 3 files changed, 5 deletions(-) diff --git a/modules/video_coding/generic_decoder.h b/modules/video_coding/generic_decoder.h index 17d2897d63..b0dccc47ef 100644 --- a/modules/video_coding/generic_decoder.h +++ b/modules/video_coding/generic_decoder.h @@ -97,7 +97,6 @@ class VCMGenericDecoder { */ int32_t RegisterDecodeCompleteCallback(VCMDecodedFrameCallback* callback); - bool External() const; bool PrefersLateDecoding() const; bool IsSameDecoder(VideoDecoder* decoder) const { return decoder_.get() == decoder; diff --git a/modules/video_coding/timestamp_map.cc b/modules/video_coding/timestamp_map.cc index 4124d48cab..6d946fecbf 100644 --- a/modules/video_coding/timestamp_map.cc +++ b/modules/video_coding/timestamp_map.cc @@ -8,7 +8,6 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include #include #include "modules/include/module_common_types.h" diff --git a/modules/video_coding/timestamp_map.h b/modules/video_coding/timestamp_map.h index 6657787ac2..c85666c9aa 100644 --- a/modules/video_coding/timestamp_map.h +++ b/modules/video_coding/timestamp_map.h @@ -22,9 +22,6 @@ class VCMTimestampMap { explicit VCMTimestampMap(size_t capacity); ~VCMTimestampMap(); - // Empty the map. - void Reset(); - void Add(uint32_t timestamp, VCMFrameInformation* data); VCMFrameInformation* Pop(uint32_t timestamp);