From e366045375fba83ab36fd0765e21d8ee6117351b Mon Sep 17 00:00:00 2001 From: Jerome Jiang Date: Wed, 10 Jun 2020 16:30:30 -0700 Subject: [PATCH] Add implementation name for libaom decoder Change-Id: I96d07727ef41c7f2ab0e35d89415c5a8ec4393b4 Bug: None Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176940 Reviewed-by: Marco Paniconi Commit-Queue: Jerome Jiang Cr-Commit-Position: refs/heads/master@{#31495} --- modules/video_coding/codecs/av1/libaom_av1_decoder.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/video_coding/codecs/av1/libaom_av1_decoder.cc b/modules/video_coding/codecs/av1/libaom_av1_decoder.cc index 2dce592489..1a8a0c4775 100644 --- a/modules/video_coding/codecs/av1/libaom_av1_decoder.cc +++ b/modules/video_coding/codecs/av1/libaom_av1_decoder.cc @@ -53,6 +53,8 @@ class LibaomAv1Decoder final : public VideoDecoder { int32_t Release() override; + const char* ImplementationName() const override; + private: aom_codec_ctx_t context_; bool inited_; @@ -180,6 +182,10 @@ int32_t LibaomAv1Decoder::Release() { return WEBRTC_VIDEO_CODEC_OK; } +const char* LibaomAv1Decoder::ImplementationName() const { + return "libaom"; +} + } // namespace const bool kIsLibaomAv1DecoderSupported = true;