Remove unimplemented function declarations VCMGenericDecoder::External and VCMTimestampMap::Reset.

Bug: none
Change-Id: I6dfaad8f6b770c0d141879b3686e229a01ac5975
Reviewed-on: https://webrtc-review.googlesource.com/97120
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Commit-Queue: Åsa Persson <asapersson@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24599}
This commit is contained in:
Åsa Persson
2018-08-31 16:46:54 +02:00
committed by Commit Bot
parent af8c03673b
commit 2589fd8a0a
3 changed files with 0 additions and 5 deletions

View File

@ -97,7 +97,6 @@ class VCMGenericDecoder {
*/ */
int32_t RegisterDecodeCompleteCallback(VCMDecodedFrameCallback* callback); int32_t RegisterDecodeCompleteCallback(VCMDecodedFrameCallback* callback);
bool External() const;
bool PrefersLateDecoding() const; bool PrefersLateDecoding() const;
bool IsSameDecoder(VideoDecoder* decoder) const { bool IsSameDecoder(VideoDecoder* decoder) const {
return decoder_.get() == decoder; return decoder_.get() == decoder;

View File

@ -8,7 +8,6 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include <assert.h>
#include <stdlib.h> #include <stdlib.h>
#include "modules/include/module_common_types.h" #include "modules/include/module_common_types.h"

View File

@ -22,9 +22,6 @@ class VCMTimestampMap {
explicit VCMTimestampMap(size_t capacity); explicit VCMTimestampMap(size_t capacity);
~VCMTimestampMap(); ~VCMTimestampMap();
// Empty the map.
void Reset();
void Add(uint32_t timestamp, VCMFrameInformation* data); void Add(uint32_t timestamp, VCMFrameInformation* data);
VCMFrameInformation* Pop(uint32_t timestamp); VCMFrameInformation* Pop(uint32_t timestamp);